Skip to content

Commit 4ce8c4b

Browse files
authored
FFM-5298 - Java SDK release 1.1.6 prep (#118)
* FFM-5298 - Java SDK release 1.1.6 prep What - Update version numbers on pom.xml files for 1.1.6 - Bump minor versions of dependencies to get latest bug fixes and security updates Why To allow published artifacts to have the correct version number. Testing Tested manually with ff-java-server-sample against app.harness.io, ensured flags are retrieved ok and metrics are being sent back. * skip tests on maven publish * minor fix
1 parent b219e0e commit 4ce8c4b

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/pr_maven.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
mvn \
4343
--no-transfer-progress \
4444
--batch-mode \
45-
clean deploy
45+
clean deploy -DskipTests
4646
env:
4747
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
4848
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The first step is to install the FF SDK as a dependency in your application usin
6969

7070
Refer to the [Harness Feature Flag Java Server SDK](https://mvnrepository.com/artifact/io.harness/ff-java-server-sdk) to identify the latest version for your build automation tool.
7171

72-
This section lists dependencies for Maven and Gradle and uses the 1.1.5.3 version as an example:
72+
This section lists dependencies for Maven and Gradle and uses the 1.1.6 version as an example:
7373

7474
#### Maven
7575

@@ -78,14 +78,14 @@ Add the following Maven dependency in your project's pom.xml file:
7878
<dependency>
7979
<groupId>io.harness</groupId>
8080
<artifactId>ff-java-server-sdk</artifactId>
81-
<version>1.1.5.3</version>
81+
<version>1.1.6</version>
8282
</dependency>
8383
```
8484

8585
#### Gradle
8686

8787
```
88-
implementation group: 'io.harness', name: 'ff-java-server-sdk', version: '1.1.5.3'
88+
implementation group: 'io.harness', name: 'ff-java-server-sdk', version: '1.1.6'
8989
```
9090

9191
### Code Sample

examples/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.harness.featureflags</groupId>
88
<artifactId>examples</artifactId>
9-
<version>1.0-SNAPSHOT</version>
9+
<version>1.1.6</version>
1010

1111
<properties>
1212
<maven.compiler.source>8</maven.compiler.source>
@@ -33,13 +33,13 @@
3333
<dependency>
3434
<groupId>io.harness</groupId>
3535
<artifactId>ff-java-server-sdk</artifactId>
36-
<version>1.1.5.3</version>
36+
<version>1.1.6</version>
3737
</dependency>
3838

3939
<dependency>
4040
<groupId>org.projectlombok</groupId>
4141
<artifactId>lombok</artifactId>
42-
<version>1.18.20</version>
42+
<version>1.18.24</version>
4343
<scope>provided</scope>
4444
</dependency>
4545

@@ -52,17 +52,17 @@
5252
<dependency>
5353
<groupId>org.apache.logging.log4j</groupId>
5454
<artifactId>log4j-api</artifactId>
55-
<version>2.17.1</version>
55+
<version>2.19.0</version>
5656
</dependency>
5757
<dependency>
5858
<groupId>org.apache.logging.log4j</groupId>
5959
<artifactId>log4j-core</artifactId>
60-
<version>2.17.1</version>
60+
<version>2.19.0</version>
6161
</dependency>
6262
<dependency>
6363
<groupId>org.apache.logging.log4j</groupId>
6464
<artifactId>log4j-slf4j-impl</artifactId>
65-
<version>2.7</version>
65+
<version>2.19.0</version>
6666
</dependency>
6767

6868
</dependencies>

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,12 @@
8181
<dependency>
8282
<groupId>com.squareup.okhttp3</groupId>
8383
<artifactId>okhttp</artifactId>
84-
<version>4.9.0</version>
84+
<version>4.9.3</version>
8585
</dependency>
8686
<dependency>
8787
<groupId>com.squareup.okhttp3</groupId>
8888
<artifactId>logging-interceptor</artifactId>
89-
<version>4.9.0</version>
89+
<version>4.9.3</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>org.apache.maven</groupId>
@@ -161,14 +161,14 @@
161161
<dependency>
162162
<groupId>org.slf4j</groupId>
163163
<artifactId>slf4j-api</artifactId>
164-
<version>1.7.30</version>
164+
<version>1.7.36</version>
165165
</dependency>
166166

167167
<!-- test scope dependencies -->
168168
<dependency>
169169
<groupId>ch.qos.logback</groupId>
170170
<artifactId>logback-classic</artifactId>
171-
<version>1.2.10</version>
171+
<version>1.2.11</version>
172172
<scope>test</scope>
173173
</dependency>
174174

0 commit comments

Comments
 (0)