Skip to content

Commit 50a1634

Browse files
updating version
1 parent be47517 commit 50a1634

File tree

3 files changed

+18
-24
lines changed

3 files changed

+18
-24
lines changed

examples/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ repositories {
1313
}
1414

1515
dependencies {
16-
testCompile group: 'junit', name: 'junit', version: '4.12'
17-
compile 'com.fasterxml.jackson.core:jackson-core:2.11.0'
18-
compile 'com.fasterxml.jackson.core:jackson-databind:2.11.0'
19-
compile group: 'com.socketlabs', name: 'injectionApi', version: '1.2.1'
16+
testCompile group: 'junit', name: 'junit', version: '4.9.2'
17+
compile 'com.fasterxml.jackson.core:jackson-core:2.14.0'
18+
compile 'com.fasterxml.jackson.core:jackson-databind:2.14.0'
19+
compile group: 'com.socketlabs', name: 'injectionApi', version: '1.4.0-SNAPSHOT'
2020
}

injectionApi/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def baseGroupId = "com.socketlabs"
88
def baseArtifactId = 'injectionApi'
99
def computeVersion() {
1010
def baseVersion = "1.4.0"
11-
def release = false
11+
def release = true
1212
if (release)
1313
return "${baseVersion}"
1414
else
@@ -19,17 +19,17 @@ version = computeVersion()
1919
sourceCompatibility = 1.8
2020
repositories {
2121
mavenCentral()
22+
mavenLocal()
2223
}
2324
compileJava {
2425
sourceCompatibility = '1.8'
2526
targetCompatibility = '1.8'
2627
}
2728
dependencies {
28-
testCompile group: 'junit', name: 'junit', version: '5.6.2'
29-
compile 'com.fasterxml.jackson.core:jackson-core:2.11.0'
30-
compile 'com.fasterxml.jackson.core:jackson-databind:2.11.0'
31-
compile group: 'com.google.guava', name: 'guava', version: '29.0-jre'
32-
compile 'com.squareup.okhttp3:okhttp:4.7.2'
29+
compile 'com.fasterxml.jackson.core:jackson-core:2.14.0'
30+
compile 'com.fasterxml.jackson.core:jackson-databind:2.14.0'
31+
compile group: 'com.google.guava', name: 'guava', version: '31.1-jre'
32+
compile 'com.squareup.okhttp3:okhttp:4.10.0'
3333
}
3434
jar {
3535
manifest {

injectionApi/pom.xml

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.socketlabs</groupId>
66
<artifactId>injectionApi</artifactId>
7-
<version>1.2.1</version>
7+
<version>1.4.0</version>
88
<name>socketlabs-java</name>
99
<description>SocketLabs Email Delivery Java library</description>
1010
<url>https://github.com/socketlabs/socketlabs-java/</url>
@@ -23,15 +23,15 @@
2323
<id>david-schrenker</id>
2424
<name>David Schrenker</name>
2525
<email>david.schrenker@socketlabs.com</email>
26-
<organization>org.apache.maven.model.Organization@4d9a0b1c</organization>
26+
<organization>org.apache.maven.model.Organization@5245fb42</organization>
2727
<roles>
2828
<role>Developer</role>
2929
</roles>
3030
</developer>
3131
<developer>
3232
<id>rbrazuk</id>
3333
<name>Ross Brazuk</name>
34-
<organization>org.apache.maven.model.Organization@201c6b36</organization>
34+
<organization>org.apache.maven.model.Organization@560210f5</organization>
3535
<roles>
3636
<role>Developer</role>
3737
</roles>
@@ -40,7 +40,7 @@
4040
<contributors>
4141
<contributor>
4242
<name>Ryan Lydzinski</name>
43-
<organization>org.apache.maven.model.Organization@6c83948b</organization>
43+
<organization>org.apache.maven.model.Organization@166a59d1</organization>
4444
<roles>
4545
<role>Intern</role>
4646
</roles>
@@ -59,32 +59,26 @@
5959
<dependency>
6060
<groupId>com.fasterxml.jackson.core</groupId>
6161
<artifactId>jackson-core</artifactId>
62-
<version>2.11.0</version>
62+
<version>2.14.0</version>
6363
<scope>compile</scope>
6464
</dependency>
6565
<dependency>
6666
<groupId>com.fasterxml.jackson.core</groupId>
6767
<artifactId>jackson-databind</artifactId>
68-
<version>2.11.0</version>
68+
<version>2.14.0</version>
6969
<scope>compile</scope>
7070
</dependency>
7171
<dependency>
7272
<groupId>com.google.guava</groupId>
7373
<artifactId>guava</artifactId>
74-
<version>29.0-jre</version>
74+
<version>31.1-jre</version>
7575
<scope>compile</scope>
7676
</dependency>
7777
<dependency>
7878
<groupId>com.squareup.okhttp3</groupId>
7979
<artifactId>okhttp</artifactId>
80-
<version>4.7.2</version>
80+
<version>4.10.0</version>
8181
<scope>compile</scope>
8282
</dependency>
83-
<dependency>
84-
<groupId>junit</groupId>
85-
<artifactId>junit</artifactId>
86-
<version>5.6.2</version>
87-
<scope>test</scope>
88-
</dependency>
8983
</dependencies>
9084
</project>

0 commit comments

Comments
 (0)