Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/java.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Java CI

on: [push]
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- main

# for release use https://github.com/gh-a-sample/github-actions-maven-release-sample

Expand Down
2 changes: 1 addition & 1 deletion core/client-java-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<dependency>
<groupId>io.featurehub.sdk.common</groupId>
<artifactId>common-jackson</artifactId>
<version>[1.1, 2]</version>
<version>[2, 3]</version>
</dependency>

<dependency>
Expand Down
1 change: 1 addition & 0 deletions java11_changed.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
core/client-java-core,support/common-jackson,support/common-jacksonv2
2 changes: 1 addition & 1 deletion support/common-jackson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>io.featurehub.sdk.common</groupId>
<artifactId>common-jackson</artifactId>
<version>1.2-SNAPSHOT</version>
<version>2.1-SNAPSHOT</version>
<name>common-jackson</name>

<description>
Expand Down
2 changes: 1 addition & 1 deletion support/common-jacksonv2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<dependency>
<groupId>io.featurehub.sdk.common</groupId>
<artifactId>common-jackson</artifactId>
<version>[1.1-SNAPSHOT, 2]</version>
<version>[2, 3]</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
Expand Down
2 changes: 1 addition & 1 deletion v17-and-above/examples/todo-java-springboot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<dependency>
<groupId>io.featurehub.sdk.common</groupId>
<artifactId>common-jacksonv3</artifactId>
<version>[1,2)</version>
<version>[2,3)</version>
</dependency>

<dependency>
Expand Down
1 change: 1 addition & 0 deletions v17-and-above/java17_changed.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
examples/todo-java-springboot,support/common-jacksonv3
6 changes: 3 additions & 3 deletions v17-and-above/support/common-jacksonv3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>io.featurehub.sdk.common</groupId>
<artifactId>common-jacksonv3</artifactId>
<version>1.2-SNAPSHOT</version>
<version>2.1-SNAPSHOT</version>
<name>common-jacksonv3</name>

<description>
Expand Down Expand Up @@ -45,15 +45,15 @@

<properties>
<jackson.version>3.0.3</jackson.version>
<jackson.databind.version>3.0.3</jackson.databind.version>
<jackson.databind.version>3.0.4</jackson.databind.version>
<java.version>17</java.version>
</properties>

<dependencies>
<dependency>
<groupId>io.featurehub.sdk.common</groupId>
<artifactId>common-jackson</artifactId>
<version>[1.1, 2]</version>
<version>[2, 3]</version>
</dependency>

<dependency>
Expand Down
Loading