Skip to content

Commit 26c2c00

Browse files
committed
Fix sync of jooby-bom
1 parent 9d85d67 commit 26c2c00

2 files changed

Lines changed: 25 additions & 26 deletions

File tree

modules/jooby-bom/pom.template.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns='http://maven.apache.org/POM/4.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
33
xsi:schemaLocation='http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd'>
4+
<parent>
5+
<groupId>io.jooby</groupId>
6+
<artifactId>modules</artifactId>
7+
<version>2.0.0.RC3-SNAPSHOT</version>
8+
</parent>
9+
410
<modelVersion>4.0.0</modelVersion>
5-
<groupId>io.jooby</groupId>
611
<artifactId>jooby-bom</artifactId>
7-
<version>@version</version>
812
<packaging>pom</packaging>
9-
<name>jooby-bom</name>
1013
<description>Jooby (Bill of Materials)</description>
1114
<url>https://github.com/jooby-project/jooby</url>
1215

modules/jooby-bom/pom.xml

Lines changed: 19 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns='http://maven.apache.org/POM/4.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
33
xsi:schemaLocation='http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd'>
4+
<parent>
5+
<groupId>io.jooby</groupId>
6+
<artifactId>modules</artifactId>
7+
<version>2.0.0.RC3-SNAPSHOT</version>
8+
</parent>
9+
410
<modelVersion>4.0.0</modelVersion>
5-
<groupId>io.jooby</groupId>
611
<artifactId>jooby-bom</artifactId>
7-
<version>2.0.0.RC2</version>
812
<packaging>pom</packaging>
9-
<name>jooby-bom</name>
1013
<description>Jooby (Bill of Materials)</description>
1114
<url>https://github.com/jooby-project/jooby</url>
1215

1316
<!-- THIS FILE IS AUTO GENERATED. DON'T EDIT -->
1417

1518
<properties>
16-
<jooby.version>2.0.0.RC2</jooby.version>
19+
<jooby.version>2.0.0.RC3-SNAPSHOT</jooby.version>
1720
<HikariCP.version>3.3.1</HikariCP.version>
1821
<apt-maven-plugin.version>1.1.3</apt-maven-plugin.version>
1922
<archetype-packaging.version>2.2</archetype-packaging.version>
@@ -43,12 +46,12 @@
4346
<jacoco-maven-plugin.version>0.8.3</jacoco-maven-plugin.version>
4447
<jacoco.version>0.8.3</jacoco.version>
4548
<jakarta.ws.rs-api.version>2.1.5</jakarta.ws.rs-api.version>
46-
<javassist.version>3.22.0-GA</javassist.version>
49+
<javassist.version>3.25.0-GA</javassist.version>
4750
<javax.inject.version>1</javax.inject.version>
4851
<jboss-modules.version>1.9.1.Final</jboss-modules.version>
4952
<jetty.version>9.4.17.v20190418</jetty.version>
50-
<jooby-maven-plugin.version>2.0.0.RC2</jooby-maven-plugin.version>
51-
<jooby.version>2.0.0.RC2</jooby.version>
53+
<jooby-maven-plugin.version>2.0.0.RC3-SNAPSHOT</jooby-maven-plugin.version>
54+
<jooby.version>2.0.0.RC3-SNAPSHOT</jooby.version>
5255
<jsr305.version>3.0.2</jsr305.version>
5356
<junit.version>5.4.2</junit.version>
5457
<kotlin.version>1.3.30</kotlin.version>
@@ -513,7 +516,7 @@
513516
<profiles>
514517
<!-- Sonatype OSS release -->
515518
<profile>
516-
<id>sonatype-oss-release</id>
519+
<id>central</id>
517520
<build>
518521
<plugins>
519522
<!-- Source -->
@@ -536,6 +539,10 @@
536539
<groupId>org.apache.maven.plugins</groupId>
537540
<artifactId>maven-javadoc-plugin</artifactId>
538541
<version>${maven-javadoc-plugin.version}</version>
542+
<configuration>
543+
<aggregate>true</aggregate>
544+
<show>public</show>
545+
</configuration>
539546
<executions>
540547
<execution>
541548
<id>attach-javadocs</id>
@@ -558,26 +565,15 @@
558565
<goals>
559566
<goal>sign</goal>
560567
</goals>
568+
<configuration>
569+
<keyname>${gpg.keyname}</keyname>
570+
<passphraseServerId>${gpg.keyname}</passphraseServerId>
571+
</configuration>
561572
</execution>
562573
</executions>
563574
</plugin>
564575

565576
<!-- Release plugin -->
566-
<plugin>
567-
<groupId>org.apache.maven.plugins</groupId>
568-
<artifactId>maven-release-plugin</artifactId>
569-
<version>${maven-release-plugin.version}</version>
570-
<configuration>
571-
<mavenExecutorId>forked-path</mavenExecutorId>
572-
<useReleaseProfile>false</useReleaseProfile>
573-
<arguments>-Psonatype-oss-release</arguments>
574-
<autoVersionSubmodules>true</autoVersionSubmodules>
575-
<tagNameFormat>v@{project.version}</tagNameFormat>
576-
<scmCommentPrefix>release</scmCommentPrefix>
577-
<goals>deploy</goals>
578-
</configuration>
579-
</plugin>
580-
581577
<plugin>
582578
<groupId>org.sonatype.plugins</groupId>
583579
<artifactId>nexus-staging-maven-plugin</artifactId>

0 commit comments

Comments
 (0)