Skip to content

Commit 3cf4aa6

Browse files
[CONNECTOR-1242] Upgrade connector dependencies (#68)
* Reverted compileOnly dependencies to api * Corrected tag-name for GitHub release and using the latest snapshot for examples * Forcing example project to refresh Maven dependencies
1 parent aac6029 commit 3cf4aa6

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pipeline {
2424
steps {
2525
echo "Building.."
2626
sh "./gradlew --no-daemon clean build"
27-
sh "mvn -f examples/jms clean install"
27+
sh "mvn -f examples/jms -U clean install"
2828
sh "mvn -f examples/kafka clean install"
2929
sh "mvn -f examples/pulsar clean install"
3030
}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Add a dependency to com.aerospike:aerospike-connect-inbound-sdk.
1313
<dependency>
1414
<groupId>com.aerospike</groupId>
1515
<artifactId>aerospike-connect-inbound-sdk</artifactId>
16-
<version>1.2.0</version>
16+
<version>1.3.1</version>
1717
</dependency>
1818
```
1919

@@ -25,14 +25,14 @@ See this example [pom.xml](examples/kafka/pom.xml).
2525

2626
```kotlin
2727
dependencies {
28-
api("com.aerospike:aerospike-connect-inbound-sdk:1.2.0")
28+
api("com.aerospike:aerospike-connect-inbound-sdk:1.3.1")
2929
}
3030
```
3131

3232
#### Groovy
3333

3434
```groovy
3535
dependencies {
36-
api "com.aerospike:aerospike-connect-inbound-sdk:1.2.0"
36+
api "com.aerospike:aerospike-connect-inbound-sdk:1.3.1"
3737
}
3838
```

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ allprojects {
7777
annotationProcessor("org.projectlombok:lombok:$lombokVersion")
7878

7979
// JSR 305 for annotations
80-
compileOnly("com.google.code.findbugs:jsr305:3.0.2")
80+
"api"("com.google.code.findbugs:jsr305:3.0.2")
8181

8282
// Aerospike Java Client
83-
compileOnly("com.aerospike:aerospike-client-jdk8:${project.extra["aerospikeClientVersion"]}")
83+
"api"("com.aerospike:aerospike-client-jdk8:${project.extra["aerospikeClientVersion"]}")
8484

8585
// Jackson annotation
86-
compileOnly("com.fasterxml.jackson.core:jackson-annotations:${project.extra["jacksonVersion"]}")
86+
"api"("com.fasterxml.jackson.core:jackson-annotations:${project.extra["jacksonVersion"]}")
8787

8888
// Test dependencies
8989
testImplementation("com.aerospike:aerospike-client-jdk8:${project.extra["aerospikeClientVersion"]}")

buildSrc/src/main/kotlin/com/aerospike/connect/GithubReleaseExtensions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ fun Project.createGithubPublishTasks() {
6060
GithubReleaseConfiguration.toFile(
6161
githubReleaseConfigurationFile,
6262
GithubReleaseConfiguration(
63-
tagName = "${project.name}-$releaseVersion",
63+
tagName = "$releaseVersion",
6464
releaseName = releaseName,
6565
body = body
6666
)

examples/jms/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<dependency>
5353
<groupId>com.aerospike</groupId>
5454
<artifactId>aerospike-connect-inbound-sdk</artifactId>
55-
<version>1.3.0</version>
55+
<version>1.3.2-SNAPSHOT</version>
5656
</dependency>
5757
<dependency>
5858
<groupId>org.apache.logging.log4j</groupId>

examples/kafka/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<dependency>
5353
<groupId>com.aerospike</groupId>
5454
<artifactId>aerospike-connect-inbound-sdk</artifactId>
55-
<version>1.3.0</version>
55+
<version>1.3.2-SNAPSHOT</version>
5656
</dependency>
5757
<dependency>
5858
<groupId>org.apache.logging.log4j</groupId>

examples/pulsar/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<dependency>
5353
<groupId>com.aerospike</groupId>
5454
<artifactId>aerospike-connect-inbound-sdk</artifactId>
55-
<version>1.3.0</version>
55+
<version>1.3.2-SNAPSHOT</version>
5656
</dependency>
5757
<dependency>
5858
<groupId>org.apache.logging.log4j</groupId>

0 commit comments

Comments
 (0)