Skip to content

Commit 2c74166

Browse files
committed
address #14 by using jdk18on - plus additional ib updates
1 parent e80d31a commit 2c74166

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ group = "website.magyar"
1414
archivesBaseName = "mitm-java-proxy"
1515
ext.componentDescription = "MITM Java Proxy"
1616

17-
ext.wilmaVersion=2.0
17+
ext.wilmaVersion=2.1
1818
ext.myBuildNumber='SNAPSHOT'
1919
if ( hasProperty('buildNumber') ) {
2020
myBuildNumber = "${project.ext.buildNumber}"
2121
}
22-
version = "$wilmaVersion" + ".23." + "${project.ext.myBuildNumber}"
22+
version = "$wilmaVersion" + ".24." + "${project.ext.myBuildNumber}"
2323

2424
def isSnapshot = project.version.contains('SNAPSHOT')
2525

@@ -30,8 +30,8 @@ repositories {
3030
}
3131

3232
// Source and target info
33-
sourceCompatibility = JavaVersion.VERSION_11
34-
targetCompatibility = JavaVersion.VERSION_11
33+
sourceCompatibility = JavaVersion.VERSION_15
34+
targetCompatibility = JavaVersion.VERSION_15
3535

3636
compileJava {
3737
options.encoding = "UTF-8"
@@ -93,17 +93,17 @@ test {
9393
test.finalizedBy jacocoTestReport
9494

9595
dependencies {
96-
implementation group: 'ch.qos.logback', name: 'logback-classic', version:'1.2.10'
97-
implementation group: 'org.slf4j', name: 'jcl-over-slf4j', version:'1.7.35'
98-
implementation group: 'org.slf4j', name: 'jul-to-slf4j', version:'1.7.35'
96+
implementation group: 'ch.qos.logback', name: 'logback-classic', version:'1.2.11'
97+
implementation group: 'org.slf4j', name: 'jcl-over-slf4j', version:'1.7.36'
98+
implementation group: 'org.slf4j', name: 'jul-to-slf4j', version:'1.7.36'
9999
api group: 'org.apache.httpcomponents', name: 'httpmime', version:'4.5.13' //this includes httpclient too
100100
implementation group: 'commons-io', name: 'commons-io', version: '2.11.0'
101101
implementation group: 'org.brotli', name: 'dec', version: '0.1.2'
102102
implementation group: 'org.apache.ant', name: 'ant', version:'1.10.12'
103-
implementation group: 'org.bouncycastle', name: 'bcpkix-jdk15on', version:'1.70' //this includes bcprov-jdk15on too
104-
implementation group: 'org.eclipse.jetty', name: 'jetty-io', version: '9.4.44.v20210927'
103+
implementation group: 'org.bouncycastle', name: 'bcpkix-jdk18on', version:'1.71' //this includes bcprov-jdk18on too
104+
implementation group: 'org.eclipse.jetty', name: 'jetty-io', version: '9.4.46.v20220331'
105105
implementation group: 'javax.servlet', name: 'servlet-api', version: '2.5'
106-
implementation group: 'dnsjava', name: 'dnsjava', version: '3.4.3'
106+
implementation group: 'dnsjava', name: 'dnsjava', version: '3.5.0'
107107
testImplementation group: 'junit', name: 'junit', version:'4.13.2'
108108
testImplementation group: 'com.google.guava', name: 'guava', version: '31.0.1-jre'
109109
testImplementation group: 'org.mockito', name: 'mockito-all', version:'1.10.19'

0 commit comments

Comments
 (0)