update to version catalog, netty 4.1.77

main 4.1.77.0
Jörg Prante 2 years ago
parent 7db113b9c8
commit f0b4b251e4

@ -1,10 +1,10 @@
plugins {
id "de.marcphilipp.nexus-publish" version "0.4.0"
id "io.codearte.nexus-staging" version "0.21.1"
id 'de.marcphilipp.nexus-publish'
id 'io.codearte.nexus-staging'
}
wrapper {
gradleVersion = "${rootProject.property('gradle.wrapper.version')}"
gradleVersion = libs.versions.gradle.get()
distributionType = Wrapper.DistributionType.ALL
}

@ -1,16 +1,5 @@
group = org.xbib
name = netty-http
version = 4.1.76.1
version = 4.1.77.0
org.gradle.warning.mode = ALL
gradle.wrapper.version = 7.3.2
netty.version = 4.1.76.Final
tcnative.version = 2.0.51.Final
bouncycastle.version = 1.70
conscrypt.version = 2.5.2
javassist.version = 3.28.0-GA
jackson.version = 2.12.6
mockito.version = 3.12.4
xbib.net.version = 2.1.1
xbib-guice.version = 4.4.2
junit.version = 5.8.2

@ -23,22 +23,6 @@ jar {
}
}
task sourcesJar(type: Jar) {
dependsOn classes
classifier 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar) {
dependsOn javadoc
classifier 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives sourcesJar, javadocJar
}
tasks.withType(JavaCompile) {
options.compilerArgs << '-Xlint:all,-exports'
}

@ -6,8 +6,6 @@ publishing {
publications {
mavenJava(MavenPublication) {
from components.java
artifact sourcesJar
artifact javadocJar
pom {
name = project.name
description = rootProject.ext.description

@ -1,12 +1,8 @@
def junitVersion = project.hasProperty('junit.version')?project.property('junit.version'):'5.8.2'
def hamcrestVersion = project.hasProperty('hamcrest.version')?project.property('hamcrest.version'):'2.2'
dependencies {
testImplementation "org.junit.jupiter:junit-jupiter-api:${junitVersion}"
testImplementation "org.junit.jupiter:junit-jupiter-params:${junitVersion}"
testImplementation "org.hamcrest:hamcrest-library:${hamcrestVersion}"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junitVersion}"
testImplementation libs.junit.jupiter.api
testImplementation libs.junit.jupiter.params
testImplementation libs.hamcrest
testRuntimeOnly libs.junit.jupiter.engine
}
test {

Binary file not shown.

@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

@ -1,4 +1,4 @@
dependencies {
api project(":netty-http-server-api")
api "org.bouncycastle:bcpkix-jdk15on:${project.property('bouncycastle.version')}"
api libs.bouncycastle
}

@ -1,15 +1,14 @@
dependencies {
api project(":netty-http-client-api")
api project(":netty-http-common")
api "io.netty:netty-handler-proxy:${project.property('netty.version')}"
testImplementation "com.fasterxml.jackson.core:jackson-databind:${project.property('jackson.version')}"
testImplementation "org.conscrypt:conscrypt-openjdk-uber:${project.property('conscrypt.version')}"
testRuntimeOnly "org.bouncycastle:bcpkix-jdk15on:${project.property('bouncycastle.version')}"
api libs.netty.handler.proxy
testImplementation libs.jackson
testImplementation libs.conscrypt
testRuntimeOnly libs.bouncycastle
if (System.properties.get('os.name').toLowerCase().contains('linux') &&
System.properties.get('os.arch').toLowerCase().contains('amd64')) {
testRuntimeOnly "io.netty:netty-tcnative-boringssl-static:${project.property('tcnative.version')}:linux-x86_64"
testRuntimeOnly(variantOf(libs.netty.boringssl) { classifier('linux-x86_64') })
} else {
testRuntimeOnly "io.netty:netty-tcnative-boringssl-static:${project.property('tcnative.version')}"
testRuntimeOnly libs.netty.boringssl
}
}

@ -1,4 +1,4 @@
dependencies {
api "org.xbib:net-url:${project.property('xbib.net.version')}"
api "io.netty:netty-codec-http2:${project.property('netty.version')}"
api libs.net.url
api libs.netty.http2
}

@ -1,4 +1,4 @@
dependencies {
api project(":netty-http-common")
implementation "io.netty:netty-transport-native-epoll:${project.property('netty.version')}:linux-x86_64"
api(variantOf(libs.netty.epoll) { classifier('linux-x86_64') })
}

@ -2,7 +2,7 @@ module org.xbib.netty.http.epoll {
exports org.xbib.netty.http.epoll;
requires org.xbib.netty.http.common;
requires io.netty.transport;
requires io.netty.transport.epoll;
requires io.netty.transport.classes.epoll;
provides org.xbib.netty.http.common.TransportProvider with
org.xbib.netty.http.epoll.EpollTransportProvider;
}

@ -1,4 +1,4 @@
dependencies {
api project(":netty-http-common")
api "io.netty:netty-transport-native-kqueue:${project.property('netty.version')}:osx-x86_64"
api(variantOf(libs.netty.kqueue) { classifier('osx-x86_64') })
}

@ -2,7 +2,7 @@ module org.xbib.netty.http.kqueue {
exports org.xbib.netty.http.kqueue;
requires org.xbib.netty.http.common;
requires io.netty.transport;
requires io.netty.transport.kqueue;
requires io.netty.transport.classes.kqueue;
provides org.xbib.netty.http.common.TransportProvider with
org.xbib.netty.http.kqueue.KqueueTransportProvider;
}

@ -1,4 +1,4 @@
dependencies {
api project(":netty-http-server")
implementation "org.xbib:guice:${project.property('xbib-guice.version')}"
implementation libs.guice
}

@ -4,13 +4,13 @@ dependencies {
api project(":netty-http-common")
testImplementation project(":netty-http-client")
testImplementation project(":netty-http-bouncycastle")
testRuntimeOnly "org.javassist:javassist:${project.property('javassist.version')}"
testRuntimeOnly "org.bouncycastle:bcpkix-jdk15on:${project.property('bouncycastle.version')}"
testRuntimeOnly libs.javassist
testRuntimeOnly libs.bouncycastle
if (System.properties.get('os.name').toLowerCase().contains('linux') &&
System.properties.get('os.arch').toLowerCase().contains('amd64')) {
testRuntimeOnly "io.netty:netty-tcnative-boringssl-static:${project.property('tcnative.version')}:linux-x86_64"
testRuntimeOnly(variantOf(libs.netty.boringssl) { classifier('linux-x86_64') })
} else {
testRuntimeOnly "io.netty:netty-tcnative-boringssl-static:${project.property('tcnative.version')}"
testRuntimeOnly libs.netty.boringssl
}
testRuntimeOnly project(":netty-http-epoll")
testRuntimeOnly project(":netty-http-kqueue")

@ -2,6 +2,7 @@ package org.xbib.netty.http.server.protocol.ws2;
import io.netty.handler.codec.http.websocketx.WebSocketHandshakeException;
@SuppressWarnings("serial")
public final class Http2WebSocketPathNotFoundException extends WebSocketHandshakeException {
public Http2WebSocketPathNotFoundException(String message) {

@ -1,3 +1,42 @@
pluginManagement {
plugins {
id('com.gradle.plugin-publish') version('0.18.0')
id('de.marcphilipp.nexus-publish') version('0.4.0')
id('io.codearte.nexus-staging') version('0.21.1')
}
}
dependencyResolutionManagement {
versionCatalogs {
libs {
version('gradle', '7.4.2')
version('groovy', '3.0.9')
version('spock', '2.0-groovy-3.0')
version('junit', '5.8.2')
version('netty', '4.1.77.Final')
version('netty-tcnative', '2.0.51.Final')
library('groovy-core', 'org.codehaus.groovy', 'groovy').versionRef('groovy')
library('spock-core', 'org.spockframework', 'spock-core').versionRef('spock')
library('spock-junit4', 'org.spockframework', 'spock-junit4').versionRef('spock')
library('junit-jupiter-api', 'org.junit.jupiter', 'junit-jupiter-api').versionRef('junit')
library('junit-jupiter-params', 'org.junit.jupiter', 'junit-jupiter-params').versionRef('junit')
library('junit-jupiter-engine', 'org.junit.jupiter', 'junit-jupiter-engine').versionRef('junit')
library('hamcrest', 'org.hamcrest:hamcrest-library:2.2')
library('netty-http2', 'io.netty', 'netty-codec-http2').versionRef('netty')
library('netty-handler-proxy', 'io.netty', 'netty-handler-proxy').versionRef('netty')
library('netty-epoll', 'io.netty', 'netty-transport-native-epoll').versionRef('netty')
library('netty-kqueue', 'io.netty', 'netty-transport-native-kqueue').versionRef('netty')
library('netty-boringssl', 'io.netty', 'netty-tcnative-boringssl-static').versionRef('netty-tcnative')
library('net-url', 'org.xbib', 'net-url').version('2.1.1')
library('bouncycastle', 'org.bouncycastle', 'bcpkix-jdk18on').version('1.71')
library('conscrypt', 'org.conscrypt', 'conscrypt-openjdk-uber').version('2.5.2')
library('jackson', 'com.fasterxml.jackson.core', 'jackson-databind').version('2.12.6')
library('guice', 'org.xbib', 'guice').version('4.4.2')
library('javassist', 'org.javassist', 'javassist').version('3.28.0-GA')
}
}
}
include 'netty-http-common'
include 'netty-http-epoll'
include 'netty-http-kqueue'

Loading…
Cancel
Save