Skip to content

Commit

Permalink
Merge branch 'release/1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
vegegoku committed Jul 17, 2023
2 parents 850c3ce + 3e0c978 commit 28dbf45
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:

jobs:
verify:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 8, 11 ]
Expand All @@ -37,7 +37,7 @@ jobs:

release:
needs: verify
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion domino-rest-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>domino-rest</artifactId>
<groupId>org.dominokit</groupId>
<version>1.0.0-RC8</version>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion domino-rest-jaxrs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.dominokit</groupId>
<artifactId>domino-rest</artifactId>
<version>1.0.0-RC8</version>
<version>1.0.0</version>
</parent>

<artifactId>domino-rest-jaxrs</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion domino-rest-jvm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>domino-rest</artifactId>
<groupId>org.dominokit</groupId>
<version>1.0.0-RC8</version>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
3 changes: 2 additions & 1 deletion domino-rest-processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>domino-rest</artifactId>
<groupId>org.dominokit</groupId>
<version>1.0.0-RC8</version>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -22,6 +22,7 @@
<groupId>org.dominokit</groupId>
<artifactId>domino-rest-jaxrs</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.dominokit</groupId>
Expand Down
3 changes: 2 additions & 1 deletion domino-rest-shared/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>domino-rest</artifactId>
<groupId>org.dominokit</groupId>
<version>1.0.0-RC8</version>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -30,6 +30,7 @@
<groupId>org.dominokit</groupId>
<artifactId>domino-rest-jaxrs</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.dominokit</groupId>
Expand Down
8 changes: 7 additions & 1 deletion domino-rest-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>domino-rest</artifactId>
<groupId>org.dominokit</groupId>
<version>1.0.0-RC8</version>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -65,6 +65,12 @@
<version>3.8.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.dominokit</groupId>
<artifactId>domino-rest-jaxrs</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.dominokit</groupId>
<artifactId>domino-rest</artifactId>
<version>1.0.0-RC8</version>
<version>1.0.0</version>
<packaging>pom</packaging>

<name>domino-rest</name>
Expand Down Expand Up @@ -70,7 +70,7 @@

<properties>
<snapshot.version>HEAD-SNAPSHOT</snapshot.version>
<next.release.version>1.0.0-RC8</next.release.version>
<next.release.version>1.0.0</next.release.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -89,8 +89,8 @@
<maven.gwt.plugin>1.0.0</maven.gwt.plugin>
<gwt.version>2.9.0</gwt.version>
<domino.logger.version>1.0.2</domino.logger.version>
<domino.jackson.version>1.0.0-RC4</domino.jackson.version>
<domino.history.version>1.0.0-RC5</domino.history.version>
<domino.jackson.version>1.0.0</domino.jackson.version>
<domino.history.version>1.0.0</domino.history.version>
<domino.aggregator.version>1.0.2</domino.aggregator.version>
</properties>

Expand Down

0 comments on commit 28dbf45

Please sign in to comment.