Skip to content

Commit 07c01ca

Browse files
authored
Merge branch 'master' into RCB-613-release-java-binding
2 parents 615f4a6 + 7681a2b commit 07c01ca

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ node ("docker-light") {
1111
echo "${env.ALT_URL}"
1212
def useUrl = ("${env.ALT_URL}" == "null") ? "${env.BINDING_TEST_URL}" : "${env.ALT_URL}"
1313
withEnv(["API_KEY=${env.ROSETTE_API_KEY}", "ALT_URL=${useUrl}"]) {
14-
sh "docker run --rm -e API_KEY=${API_KEY} -e ALT_URL=${ALT_URL} -v ${SOURCEDIR}:/source rosetteapi/docker-java"
14+
sh "docker run --rm -e API_KEY=${API_KEY} -e ALT_URL=${ALT_URL} -v ${SOURCEDIR}:/source rosette/docker-java"
1515
}
1616
}
1717
slack(true)

annotations/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>com.basistech.rosette</groupId>
2121
<artifactId>rosette-api-java-binding</artifactId>
22-
<version>1.24.101-SNAPSHOT</version>
22+
<version>1.24.2-SNAPSHOT</version>
2323
</parent>
2424
<artifactId>rosette-api-annotations</artifactId>
2525
<name>rosette-api-annotations</name>

api/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>com.basistech.rosette</groupId>
2121
<artifactId>rosette-api-java-binding</artifactId>
22-
<version>1.24.101-SNAPSHOT</version>
22+
<version>1.24.2-SNAPSHOT</version>
2323
</parent>
2424
<artifactId>rosette-api</artifactId>
2525
<name>rosette-api</name>
@@ -69,9 +69,9 @@
6969
</exclusions>
7070
</dependency>
7171
<dependency>
72-
<groupId>org.apache.httpcomponents</groupId>
72+
<groupId>com.basistech.org.apache.httpcomponents</groupId>
7373
<artifactId>httpclient-osgi</artifactId>
74-
<version>${http-components.version}</version>
74+
<version>${bt-custom-httpclient-osgi-version}</version>
7575
<exclusions>
7676
<exclusion>
7777
<groupId>org.apache.httpcomponents</groupId>

common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>com.basistech.rosette</groupId>
2121
<artifactId>rosette-api-java-binding</artifactId>
22-
<version>1.24.101-SNAPSHOT</version>
22+
<version>1.24.2-SNAPSHOT</version>
2323
</parent>
2424
<artifactId>rosette-api-common</artifactId>
2525
<name>rosette-api-common</name>

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>com.basistech.rosette</groupId>
2222
<artifactId>rosette-api-java-binding</artifactId>
23-
<version>1.24.101-SNAPSHOT</version>
23+
<version>1.24.2-SNAPSHOT</version>
2424
</parent>
2525
<groupId>com.basistech.rosette</groupId>
2626
<artifactId>rosette-api-examples</artifactId>

json/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>com.basistech.rosette</groupId>
2222
<artifactId>rosette-api-java-binding</artifactId>
23-
<version>1.24.101-SNAPSHOT</version>
23+
<version>1.24.2-SNAPSHOT</version>
2424
</parent>
2525
<artifactId>rosette-api-json</artifactId>
2626
<name>rosette-api-json</name>

model/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>com.basistech.rosette</groupId>
2121
<artifactId>rosette-api-java-binding</artifactId>
22-
<version>1.24.101-SNAPSHOT</version>
22+
<version>1.24.2-SNAPSHOT</version>
2323
</parent>
2424
<artifactId>rosette-api-model</artifactId>
2525
<name>rosette-api-model</name>

osgi-itests/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.basistech.rosette</groupId>
77
<artifactId>rosette-api-java-binding</artifactId>
8-
<version>1.24.101-SNAPSHOT</version>
8+
<version>1.24.2-SNAPSHOT</version>
99
</parent>
1010
<properties>
1111
<bundle-repo>target/test-bundles</bundle-repo>
@@ -14,7 +14,7 @@
1414
<dependency>
1515
<groupId>com.basistech.rosette</groupId>
1616
<artifactId>rosette-api</artifactId>
17-
<version>1.24.101-SNAPSHOT</version>
17+
<version>1.24.2-SNAPSHOT</version>
1818
</dependency>
1919

2020
<!-- The goal of this test is to make sure rosette-api resolves successfully in OSGi with given dependencies. -->

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
<modelVersion>4.0.0</modelVersion>
1919
<groupId>com.basistech.rosette</groupId>
2020
<artifactId>rosette-api-java-binding</artifactId>
21-
<version>1.24.101-SNAPSHOT</version>
21+
<version>1.24.2-SNAPSHOT</version>
2222
<parent>
2323
<artifactId>open-source-parent</artifactId>
2424
<groupId>com.basistech</groupId>
25-
<version>12.0.0</version>
25+
<version>14.0.0</version>
2626
<relativePath />
2727
</parent>
2828
<packaging>pom</packaging>

release/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>com.basistech.rosette</groupId>
2121
<artifactId>rosette-api-java-binding</artifactId>
22-
<version>1.24.101-SNAPSHOT</version>
22+
<version>1.24.2-SNAPSHOT</version>
2323
</parent>
2424
<groupId>com.basistech.rosette</groupId>
2525
<artifactId>rosette-api-release</artifactId>

0 commit comments

Comments
 (0)