Skip to content

Commit

Permalink
update pom for modern java
Browse files Browse the repository at this point in the history
  • Loading branch information
hgschmie committed Nov 14, 2023
1 parent 9589774 commit d8bcdc9
Showing 1 changed file with 11 additions and 37 deletions.
48 changes: 11 additions & 37 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.basepom</groupId>
<artifactId>basepom-standard-oss</artifactId>
<version>4</version>
<groupId>org.kitei</groupId>
<artifactId>kitei-root</artifactId>
<version>15</version>
</parent>

<groupId>de.softwareforge</groupId>
Expand All @@ -34,6 +34,12 @@

<inceptionYear>2013</inceptionYear>

<properties>
<basepom.check.fail-pmd>false</basepom.check.fail-pmd>
<basepom.check.fail-checkstyle>false</basepom.check.fail-checkstyle>
<project.moduleName>de.softwareforge.vtte</project.moduleName>
</properties>

<licenses>
<license>
<name>Apache License 2.0</name>
Expand All @@ -57,51 +63,19 @@
</developer>
</developers>

<properties>
<dep.kitei-rules.version>3-SNAPSHOT</dep.kitei-rules.version>
</properties>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>32.1.3-jre</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.kitei.internal</groupId>
<artifactId>kitei-rules</artifactId>
<version>${dep.kitei-rules.version}</version>
</dependency>
</dependencies>
<configuration>
<rulesets>
<ruleset>pmd/kitei-plus.xml</ruleset>
</rulesets>
</configuration>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<header>${project.basedir}/src/license/LICENSE-HEADER.txt</header>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>

0 comments on commit d8bcdc9

Please sign in to comment.