Skip to content

Commit 28dbf45

Browse files
committed
Merge branch 'release/1.0.0'
2 parents 850c3ce + 3e0c978 commit 28dbf45

File tree

8 files changed

+20
-12
lines changed

8 files changed

+20
-12
lines changed

.github/workflows/deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222

2323
jobs:
2424
verify:
25-
runs-on: ubuntu-18.04
25+
runs-on: ubuntu-latest
2626
strategy:
2727
matrix:
2828
java-version: [ 8, 11 ]
@@ -37,7 +37,7 @@ jobs:
3737

3838
release:
3939
needs: verify
40-
runs-on: ubuntu-18.04
40+
runs-on: ubuntu-latest
4141
steps:
4242
- name: Check out Git repository
4343
uses: actions/checkout@v2

domino-rest-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>domino-rest</artifactId>
77
<groupId>org.dominokit</groupId>
8-
<version>1.0.0-RC8</version>
8+
<version>1.0.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

domino-rest-jaxrs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.dominokit</groupId>
77
<artifactId>domino-rest</artifactId>
8-
<version>1.0.0-RC8</version>
8+
<version>1.0.0</version>
99
</parent>
1010

1111
<artifactId>domino-rest-jaxrs</artifactId>

domino-rest-jvm/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>domino-rest</artifactId>
77
<groupId>org.dominokit</groupId>
8-
<version>1.0.0-RC8</version>
8+
<version>1.0.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

domino-rest-processor/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>domino-rest</artifactId>
66
<groupId>org.dominokit</groupId>
7-
<version>1.0.0-RC8</version>
7+
<version>1.0.0</version>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010

@@ -22,6 +22,7 @@
2222
<groupId>org.dominokit</groupId>
2323
<artifactId>domino-rest-jaxrs</artifactId>
2424
<version>${project.version}</version>
25+
<scope>provided</scope>
2526
</dependency>
2627
<dependency>
2728
<groupId>org.dominokit</groupId>

domino-rest-shared/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>domino-rest</artifactId>
77
<groupId>org.dominokit</groupId>
8-
<version>1.0.0-RC8</version>
8+
<version>1.0.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -30,6 +30,7 @@
3030
<groupId>org.dominokit</groupId>
3131
<artifactId>domino-rest-jaxrs</artifactId>
3232
<version>${project.version}</version>
33+
<scope>provided</scope>
3334
</dependency>
3435
<dependency>
3536
<groupId>org.dominokit</groupId>

domino-rest-test/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>domino-rest</artifactId>
77
<groupId>org.dominokit</groupId>
8-
<version>1.0.0-RC8</version>
8+
<version>1.0.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -65,6 +65,12 @@
6565
<version>3.8.0</version>
6666
<scope>test</scope>
6767
</dependency>
68+
<dependency>
69+
<groupId>org.dominokit</groupId>
70+
<artifactId>domino-rest-jaxrs</artifactId>
71+
<version>${project.version}</version>
72+
<scope>test</scope>
73+
</dependency>
6874
</dependencies>
6975

7076
<build>

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.dominokit</groupId>
77
<artifactId>domino-rest</artifactId>
8-
<version>1.0.0-RC8</version>
8+
<version>1.0.0</version>
99
<packaging>pom</packaging>
1010

1111
<name>domino-rest</name>
@@ -70,7 +70,7 @@
7070

7171
<properties>
7272
<snapshot.version>HEAD-SNAPSHOT</snapshot.version>
73-
<next.release.version>1.0.0-RC8</next.release.version>
73+
<next.release.version>1.0.0</next.release.version>
7474
<maven.compiler.source>1.8</maven.compiler.source>
7575
<maven.compiler.target>1.8</maven.compiler.target>
7676
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -89,8 +89,8 @@
8989
<maven.gwt.plugin>1.0.0</maven.gwt.plugin>
9090
<gwt.version>2.9.0</gwt.version>
9191
<domino.logger.version>1.0.2</domino.logger.version>
92-
<domino.jackson.version>1.0.0-RC4</domino.jackson.version>
93-
<domino.history.version>1.0.0-RC5</domino.history.version>
92+
<domino.jackson.version>1.0.0</domino.jackson.version>
93+
<domino.history.version>1.0.0</domino.history.version>
9494
<domino.aggregator.version>1.0.2</domino.aggregator.version>
9595
</properties>
9696

0 commit comments

Comments
 (0)