Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/maven-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@ jobs:
build:
name: Verify
uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v4
with:
maven4-build: true
59 changes: 47 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -193,26 +193,28 @@ under the License.
</distributionManagement>

<properties>
<javaVersion>8</javaVersion>
<mavenVersion>3.6.3</mavenVersion>
<javaVersion>17</javaVersion>
<mavenVersion>4.0.0-rc-4</mavenVersion>
<sisuVersion>0.9.0.M4</sisuVersion>
<guiceVersion>5.1.0</guiceVersion>
<!-- for dependencies -->
<jettyVersion>9.4.57.v20241219</jettyVersion>
<doxiaVersion>2.0.0</doxiaVersion>
<doxiaSitetoolsVersion>2.0.0</doxiaSitetoolsVersion>
<wagonVersion>3.5.3</wagonVersion>
<slf4jVersion>1.7.36</slf4jVersion>
<slf4jVersion>2.0.17</slf4jVersion>
<!-- for ITs -->
<checkstylePluginVersion>3.5.0</checkstylePluginVersion>
<javadocPluginVersion>3.10.1</javadocPluginVersion>
<pmdPluginVersion>3.25.0</pmdPluginVersion>
<jxrPluginVersion>3.5.0</jxrPluginVersion>
<projectInfoReportsPluginVersion>3.7.0</projectInfoReportsPluginVersion>
<projectInfoReportsPluginVersion>3.9.0</projectInfoReportsPluginVersion>
<surefirePluginVersion>3.5.1</surefirePluginVersion>
<mavenPluginPluginVersion>3.15.0</mavenPluginPluginVersion>
<taglistPluginVersion>3.2.1</taglistPluginVersion>
<antrunPluginVersion>3.1.0</antrunPluginVersion>
<mavenReportingImplVersion>4.0.0</mavenReportingImplVersion>
<fluidoSkinVersion>2.0.0-M11</fluidoSkinVersion>
<fluidoSkinVersion>2.1.0</fluidoSkinVersion>
<project.build.outputTimestamp>2024-07-17T13:43:56Z</project.build.outputTimestamp>
<!-- remove with parent pom upgrade -->
<version.maven-invoker-plugin>3.9.1</version.maven-invoker-plugin>
Expand All @@ -228,6 +230,16 @@ under the License.
<groupId>org.apache.maven.reporting</groupId>
<artifactId>maven-reporting-exec</artifactId>
<version>2.0.0</version>
<exclusions>
<exclusion>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver-util</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
Expand All @@ -246,7 +258,7 @@ under the License.
<groupId>org.apache.maven</groupId>
<artifactId>maven-compat</artifactId>
<version>${mavenVersion}</version>
<scope>test</scope>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
Expand Down Expand Up @@ -296,6 +308,13 @@ under the License.
<version>2.20.0</version>
</dependency>

<dependency>
<groupId>org.eclipse.sisu</groupId>
<artifactId>org.eclipse.sisu.inject</artifactId>
<version>${sisuVersion}</version>
<scope>provided</scope>
</dependency>

<!-- dependencies to annotations -->
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
Expand All @@ -315,6 +334,12 @@ under the License.
<groupId>org.eclipse.sisu</groupId>
<artifactId>org.eclipse.sisu.plexus</artifactId>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>org.sonatype.sisu</groupId>
<artifactId>sisu-guice</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
Expand All @@ -326,12 +351,6 @@ under the License.
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-i18n</artifactId>
<version>1.0.0</version>
<exclusions>
<exclusion>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-component-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
Expand Down Expand Up @@ -501,12 +520,28 @@ under the License.
</dependency>

<!-- test -->
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>${guiceVersion}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.apache.maven.plugin-testing</groupId>
<artifactId>maven-plugin-testing-harness</artifactId>
<version>3.3.0</version>
<scope>test</scope>
</dependency>
<!--
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-testing</artifactId>
<version>${mavenVersion}</version>
<scope>test</scope>
</dependency>

-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
Loading