|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <project xmlns='http://maven.apache.org/POM/4.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' |
3 | 3 | 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 | + |
4 | 10 | <modelVersion>4.0.0</modelVersion> |
5 | | - <groupId>io.jooby</groupId> |
6 | 11 | <artifactId>jooby-bom</artifactId> |
7 | | - <version>2.0.0.RC2</version> |
8 | 12 | <packaging>pom</packaging> |
9 | | - <name>jooby-bom</name> |
10 | 13 | <description>Jooby (Bill of Materials)</description> |
11 | 14 | <url>https://github.com/jooby-project/jooby</url> |
12 | 15 |
|
13 | 16 | <!-- THIS FILE IS AUTO GENERATED. DON'T EDIT --> |
14 | 17 |
|
15 | 18 | <properties> |
16 | | - <jooby.version>2.0.0.RC2</jooby.version> |
| 19 | + <jooby.version>2.0.0.RC3-SNAPSHOT</jooby.version> |
17 | 20 | <HikariCP.version>3.3.1</HikariCP.version> |
18 | 21 | <apt-maven-plugin.version>1.1.3</apt-maven-plugin.version> |
19 | 22 | <archetype-packaging.version>2.2</archetype-packaging.version> |
|
43 | 46 | <jacoco-maven-plugin.version>0.8.3</jacoco-maven-plugin.version> |
44 | 47 | <jacoco.version>0.8.3</jacoco.version> |
45 | 48 | <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> |
47 | 50 | <javax.inject.version>1</javax.inject.version> |
48 | 51 | <jboss-modules.version>1.9.1.Final</jboss-modules.version> |
49 | 52 | <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> |
52 | 55 | <jsr305.version>3.0.2</jsr305.version> |
53 | 56 | <junit.version>5.4.2</junit.version> |
54 | 57 | <kotlin.version>1.3.30</kotlin.version> |
|
513 | 516 | <profiles> |
514 | 517 | <!-- Sonatype OSS release --> |
515 | 518 | <profile> |
516 | | - <id>sonatype-oss-release</id> |
| 519 | + <id>central</id> |
517 | 520 | <build> |
518 | 521 | <plugins> |
519 | 522 | <!-- Source --> |
|
536 | 539 | <groupId>org.apache.maven.plugins</groupId> |
537 | 540 | <artifactId>maven-javadoc-plugin</artifactId> |
538 | 541 | <version>${maven-javadoc-plugin.version}</version> |
| 542 | + <configuration> |
| 543 | + <aggregate>true</aggregate> |
| 544 | + <show>public</show> |
| 545 | + </configuration> |
539 | 546 | <executions> |
540 | 547 | <execution> |
541 | 548 | <id>attach-javadocs</id> |
|
558 | 565 | <goals> |
559 | 566 | <goal>sign</goal> |
560 | 567 | </goals> |
| 568 | + <configuration> |
| 569 | + <keyname>${gpg.keyname}</keyname> |
| 570 | + <passphraseServerId>${gpg.keyname}</passphraseServerId> |
| 571 | + </configuration> |
561 | 572 | </execution> |
562 | 573 | </executions> |
563 | 574 | </plugin> |
564 | 575 |
|
565 | 576 | <!-- 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 | | - |
581 | 577 | <plugin> |
582 | 578 | <groupId>org.sonatype.plugins</groupId> |
583 | 579 | <artifactId>nexus-staging-maven-plugin</artifactId> |
|
0 commit comments