Skip to content

Commit 633c2be

Browse files
committed
v2.0.0.RC2
1 parent 02b573c commit 633c2be

File tree

24 files changed

+58
-53
lines changed

24 files changed

+58
-53
lines changed

docs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.jooby</groupId>
88
<artifactId>jooby-project</artifactId>
9-
<version>2.0.0.RC2-SNAPSHOT</version>
9+
<version>2.0.0.RC2</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.jooby</groupId>
88
<artifactId>jooby-project</artifactId>
9-
<version>2.0.0.RC2-SNAPSHOT</version>
9+
<version>2.0.0.RC2</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

jooby/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.jooby</groupId>
88
<artifactId>jooby-project</artifactId>
9-
<version>2.0.0.RC2-SNAPSHOT</version>
9+
<version>2.0.0.RC2</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

modules/jooby-bom/pom.template.xml

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<profiles>
4646
<!-- Sonatype OSS release -->
4747
<profile>
48-
<id>sonatype-oss-release</id>
48+
<id>central</id>
4949
<build>
5050
<plugins>
5151
<!-- Source -->
@@ -68,6 +68,10 @@
6868
<groupId>org.apache.maven.plugins</groupId>
6969
<artifactId>maven-javadoc-plugin</artifactId>
7070
<version>${maven-javadoc-plugin.version}</version>
71+
<configuration>
72+
<aggregate>true</aggregate>
73+
<show>public</show>
74+
</configuration>
7175
<executions>
7276
<execution>
7377
<id>attach-javadocs</id>
@@ -90,26 +94,15 @@
9094
<goals>
9195
<goal>sign</goal>
9296
</goals>
97+
<configuration>
98+
<keyname>${gpg.keyname}</keyname>
99+
<passphraseServerId>${gpg.keyname}</passphraseServerId>
100+
</configuration>
93101
</execution>
94102
</executions>
95103
</plugin>
96104

97105
<!-- Release plugin -->
98-
<plugin>
99-
<groupId>org.apache.maven.plugins</groupId>
100-
<artifactId>maven-release-plugin</artifactId>
101-
<version>${maven-release-plugin.version}</version>
102-
<configuration>
103-
<mavenExecutorId>forked-path</mavenExecutorId>
104-
<useReleaseProfile>false</useReleaseProfile>
105-
<arguments>-Psonatype-oss-release</arguments>
106-
<autoVersionSubmodules>true</autoVersionSubmodules>
107-
<tagNameFormat>v@{project.version}</tagNameFormat>
108-
<scmCommentPrefix>release</scmCommentPrefix>
109-
<goals>deploy</goals>
110-
</configuration>
111-
</plugin>
112-
113106
<plugin>
114107
<groupId>org.sonatype.plugins</groupId>
115108
<artifactId>nexus-staging-maven-plugin</artifactId>

modules/jooby-bom/pom.xml

Lines changed: 27 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.jooby</groupId>
66
<artifactId>jooby-bom</artifactId>
7-
<version>2.0.0.RC1</version>
7+
<version>2.0.0.RC2</version>
88
<packaging>pom</packaging>
99
<name>jooby-bom</name>
1010
<description>Jooby (Bill of Materials)</description>
@@ -13,7 +13,7 @@
1313
<!-- THIS FILE IS AUTO GENERATED. DON'T EDIT -->
1414

1515
<properties>
16-
<jooby.version>2.0.0.RC1</jooby.version>
16+
<jooby.version>2.0.0.RC2</jooby.version>
1717
<HikariCP.version>3.3.1</HikariCP.version>
1818
<apt-maven-plugin.version>1.1.3</apt-maven-plugin.version>
1919
<archetype-packaging.version>2.2</archetype-packaging.version>
@@ -24,7 +24,7 @@
2424
<checkstyle.version>8.19</checkstyle.version>
2525
<cobertura-maven-plugin.version>2.7</cobertura-maven-plugin.version>
2626
<commons-io.version>2.6</commons-io.version>
27-
<config.version>1.3.3</config.version>
27+
<config.version>1.3.4</config.version>
2828
<coveralls-maven-plugin.version>3.1.0</coveralls-maven-plugin.version>
2929
<depencency-check-maven.version>2.1.1</depencency-check-maven.version>
3030
<docker-maven-plugin.version>0.4.13</docker-maven-plugin.version>
@@ -35,20 +35,22 @@
3535
<gradle-core.version>2.6</gradle-core.version>
3636
<gradle-plugins.version>0.9-rc-1</gradle-plugins.version>
3737
<gradle-tooling-api.version>2.6</gradle-tooling-api.version>
38+
<guava.version>27.1-jre</guava.version>
3839
<guice.version>4.2.2</guice.version>
3940
<h2.version>1.4.197</h2.version>
4041
<handlebars.version>4.1.2</handlebars.version>
4142
<jackson.version>2.9.8</jackson.version>
42-
<jacoco-maven-plugin.version>0.8.2</jacoco-maven-plugin.version>
43-
<jacoco.version>0.8.2</jacoco.version>
43+
<jacoco-maven-plugin.version>0.8.3</jacoco-maven-plugin.version>
44+
<jacoco.version>0.8.3</jacoco.version>
4445
<jakarta.ws.rs-api.version>2.1.5</jakarta.ws.rs-api.version>
4546
<javassist.version>3.22.0-GA</javassist.version>
4647
<javax.inject.version>1</javax.inject.version>
48+
<jboss-modules.version>1.9.1.Final</jboss-modules.version>
4749
<jetty.version>9.4.17.v20190418</jetty.version>
48-
<jooby-maven-plugin.version>2.0.0.RC1</jooby-maven-plugin.version>
49-
<jooby.version>2.0.0.RC1</jooby.version>
50+
<jooby-maven-plugin.version>2.0.0.RC2</jooby-maven-plugin.version>
51+
<jooby.version>2.0.0.RC2</jooby.version>
5052
<jsr305.version>3.0.2</jsr305.version>
51-
<junit.version>5.3.2</junit.version>
53+
<junit.version>5.4.2</junit.version>
5254
<kotlin.version>1.3.30</kotlin.version>
5355
<kotlinx-coroutines-core.version>1.2.0</kotlinx-coroutines-core.version>
5456
<license-maven-plugin.version>3.0</license-maven-plugin.version>
@@ -60,31 +62,31 @@
6062
<maven-assembly-plugin.version>3.1.0</maven-assembly-plugin.version>
6163
<maven-checkstyle-plugin.version>3.0.0</maven-checkstyle-plugin.version>
6264
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
63-
<maven-core.version>3.5.4</maven-core.version>
65+
<maven-core.version>3.6.1</maven-core.version>
6466
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
6567
<maven-eclipse-plugin.version>2.9</maven-eclipse-plugin.version>
6668
<maven-enforcer-plugin.version>3.0.0-M1</maven-enforcer-plugin.version>
6769
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
6870
<maven-jar-plugin.version>2.5</maven-jar-plugin.version>
6971
<maven-java-formatter-plugin.version>0.4</maven-java-formatter-plugin.version>
7072
<maven-javadoc-plugin.version>2.10.4</maven-javadoc-plugin.version>
71-
<maven-plugin-annotations.version>3.5.2</maven-plugin-annotations.version>
72-
<maven-plugin-api.version>3.5.4</maven-plugin-api.version>
73-
<maven-plugin-plugin.version>3.5</maven-plugin-plugin.version>
73+
<maven-plugin-annotations.version>3.6.0</maven-plugin-annotations.version>
74+
<maven-plugin-api.version>3.6.1</maven-plugin-api.version>
75+
<maven-plugin-plugin.version>3.6.0</maven-plugin-plugin.version>
7476
<maven-project.version>2.2.1</maven-project.version>
7577
<maven-release-plugin.version>2.5.1</maven-release-plugin.version>
7678
<maven-resources-plugin.version>3.1.0</maven-resources-plugin.version>
7779
<maven-shade-plugin.version>3.1.1</maven-shade-plugin.version>
7880
<maven-site-plugin.version>3.4</maven-site-plugin.version>
7981
<maven-source-plugin.version>2.4</maven-source-plugin.version>
8082
<maven-surefire-plugin.version>3.0.0-M3</maven-surefire-plugin.version>
81-
<mockito.version>2.24.0</mockito.version>
83+
<mockito.version>2.27.0</mockito.version>
8284
<mojo-executor.version>2.3.0</mojo-executor.version>
83-
<mysql-connector-java.version>8.0.13</mysql-connector-java.version>
85+
<mysql-connector-java.version>8.0.15</mysql-connector-java.version>
8486
<netty.version>4.1.35.Final</netty.version>
8587
<nexus-staging-maven-plugin.version>1.6.5</nexus-staging-maven-plugin.version>
8688
<okhttp.version>3.14.1</okhttp.version>
87-
<plexus-utils.version>3.1.0</plexus-utils.version>
89+
<plexus-utils.version>3.2.0</plexus-utils.version>
8890
<reactor.version>3.2.8.RELEASE</reactor.version>
8991
<rest-assured.version>3.3.0</rest-assured.version>
9092
<rocker.version>1.2.1</rocker.version>
@@ -404,6 +406,11 @@
404406
<artifactId>rocker-compiler</artifactId>
405407
<version>${rocker.version}</version>
406408
</dependency>
409+
<dependency>
410+
<groupId>org.jboss.modules</groupId>
411+
<artifactId>jboss-modules</artifactId>
412+
<version>${jboss-modules.version}</version>
413+
</dependency>
407414
<dependency>
408415
<groupId>org.junit.jupiter</groupId>
409416
<artifactId>junit-jupiter-api</artifactId>
@@ -429,6 +436,11 @@
429436
<artifactId>mockito-junit-jupiter</artifactId>
430437
<version>${mockito.version}</version>
431438
</dependency>
439+
<dependency>
440+
<groupId>com.google.guava</groupId>
441+
<artifactId>guava</artifactId>
442+
<version>${guava.version}</version>
443+
</dependency>
432444
<dependency>
433445
<groupId>org.codehaus.mojo</groupId>
434446
<artifactId>exec-maven-plugin</artifactId>

modules/jooby-freemarker/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.jooby</groupId>
88
<artifactId>modules</artifactId>
9-
<version>2.0.0.RC2-SNAPSHOT</version>
9+
<version>2.0.0.RC2</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

modules/jooby-gradle-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.jooby</groupId>
88
<artifactId>modules</artifactId>
9-
<version>2.0.0.RC2-SNAPSHOT</version>
9+
<version>2.0.0.RC2</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

modules/jooby-guice/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.jooby</groupId>
88
<artifactId>modules</artifactId>
9-
<version>2.0.0.RC2-SNAPSHOT</version>
9+
<version>2.0.0.RC2</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

modules/jooby-handlebars/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.jooby</groupId>
88
<artifactId>modules</artifactId>
9-
<version>2.0.0.RC2-SNAPSHOT</version>
9+
<version>2.0.0.RC2</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

modules/jooby-hikari/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.jooby</groupId>
88
<artifactId>modules</artifactId>
9-
<version>2.0.0.RC2-SNAPSHOT</version>
9+
<version>2.0.0.RC2</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)