Skip to content

Commit

Permalink
updating version
Browse files Browse the repository at this point in the history
  • Loading branch information
david-schrenker committed Jan 17, 2023
1 parent be47517 commit 50a1634
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 24 deletions.
8 changes: 4 additions & 4 deletions examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ repositories {
}

dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile 'com.fasterxml.jackson.core:jackson-core:2.11.0'
compile 'com.fasterxml.jackson.core:jackson-databind:2.11.0'
compile group: 'com.socketlabs', name: 'injectionApi', version: '1.2.1'
testCompile group: 'junit', name: 'junit', version: '4.9.2'
compile 'com.fasterxml.jackson.core:jackson-core:2.14.0'
compile 'com.fasterxml.jackson.core:jackson-databind:2.14.0'
compile group: 'com.socketlabs', name: 'injectionApi', version: '1.4.0-SNAPSHOT'
}
12 changes: 6 additions & 6 deletions injectionApi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def baseGroupId = "com.socketlabs"
def baseArtifactId = 'injectionApi'
def computeVersion() {
def baseVersion = "1.4.0"
def release = false
def release = true
if (release)
return "${baseVersion}"
else
Expand All @@ -19,17 +19,17 @@ version = computeVersion()
sourceCompatibility = 1.8
repositories {
mavenCentral()
mavenLocal()
}
compileJava {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '5.6.2'
compile 'com.fasterxml.jackson.core:jackson-core:2.11.0'
compile 'com.fasterxml.jackson.core:jackson-databind:2.11.0'
compile group: 'com.google.guava', name: 'guava', version: '29.0-jre'
compile 'com.squareup.okhttp3:okhttp:4.7.2'
compile 'com.fasterxml.jackson.core:jackson-core:2.14.0'
compile 'com.fasterxml.jackson.core:jackson-databind:2.14.0'
compile group: 'com.google.guava', name: 'guava', version: '31.1-jre'
compile 'com.squareup.okhttp3:okhttp:4.10.0'
}
jar {
manifest {
Expand Down
22 changes: 8 additions & 14 deletions injectionApi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.socketlabs</groupId>
<artifactId>injectionApi</artifactId>
<version>1.2.1</version>
<version>1.4.0</version>
<name>socketlabs-java</name>
<description>SocketLabs Email Delivery Java library</description>
<url>https://github.com/socketlabs/socketlabs-java/</url>
Expand All @@ -23,15 +23,15 @@
<id>david-schrenker</id>
<name>David Schrenker</name>
<email>david.schrenker@socketlabs.com</email>
<organization>org.apache.maven.model.Organization@4d9a0b1c</organization>
<organization>org.apache.maven.model.Organization@5245fb42</organization>
<roles>
<role>Developer</role>
</roles>
</developer>
<developer>
<id>rbrazuk</id>
<name>Ross Brazuk</name>
<organization>org.apache.maven.model.Organization@201c6b36</organization>
<organization>org.apache.maven.model.Organization@560210f5</organization>
<roles>
<role>Developer</role>
</roles>
Expand All @@ -40,7 +40,7 @@
<contributors>
<contributor>
<name>Ryan Lydzinski</name>
<organization>org.apache.maven.model.Organization@6c83948b</organization>
<organization>org.apache.maven.model.Organization@166a59d1</organization>
<roles>
<role>Intern</role>
</roles>
Expand All @@ -59,32 +59,26 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.11.0</version>
<version>2.14.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.11.0</version>
<version>2.14.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>29.0-jre</version>
<version>31.1-jre</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.7.2</version>
<version>4.10.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>5.6.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

0 comments on commit 50a1634

Please sign in to comment.