Skip to content

Commit

Permalink
Pom cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
charphi committed Feb 12, 2024
1 parent 54b270e commit 26537fe
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 17 deletions.
1 change: 0 additions & 1 deletion demetra-dotstat-desktop/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,6 @@
<plugin>
<groupId>org.jreleaser</groupId>
<artifactId>jreleaser-maven-plugin</artifactId>
<version>1.10.0</version>
<executions>
<execution>
<phase>install</phase>
Expand Down
56 changes: 40 additions & 16 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<name>Demetra - DotStat</name>
<description>SDMX extension for JDemetra+</description>
<url>https://github.com/nbbrd/jdemetra-dotstat</url>
<url>https://github.com/${x.github.user}/${x.github.repo}</url>
<inceptionYear>2015</inceptionYear>

<organization>
Expand All @@ -34,13 +34,21 @@
</developers>

<scm>
<connection>scm:git:git://github.com/nbbrd/jdemetra-dotstat.git</connection>
<developerConnection>scm:git:ssh://github.com:nbbrd/jdemetra-dotstat.git</developerConnection>
<url>http://github.com/nbbrd/jdemetra-dotstat/tree/master</url>
<connection>scm:git:git://github.com/${x.github.user}/${x.github.repo}.git</connection>
<developerConnection>scm:git:ssh://github.com:${x.github.user}/${x.github.repo}.git</developerConnection>
<url>http://github.com/${x.github.user}/${x.github.repo}/tree/master</url>
</scm>

<properties>
<!-- Java 8+ config -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.outputTimestamp>2024-01-01T00:00:00Z</project.build.outputTimestamp>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>

<!-- GitHub hosting -->
<x.github.user>nbbrd</x.github.user>
<x.github.repo>jdemetra-dotstat</x.github.repo>

<demetra.version>2.2.4</demetra.version>
<sdmx-dl.version>3.0.0-beta.12</sdmx-dl.version>
Expand Down Expand Up @@ -126,15 +134,40 @@
<version>3.6.1</version>
</plugin>
<plugin>
<groupId>com.github.nbbrd.heylogs</groupId>
<artifactId>heylogs-maven-plugin</artifactId>
<version>0.7.2</version>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.4.1</version>
</plugin>
<plugin>
<groupId>org.gaul</groupId>
<artifactId>modernizer-maven-plugin</artifactId>
<version>2.7.0</version>
</plugin>
<plugin>
<groupId>de.thetaphi</groupId>
<artifactId>forbiddenapis</artifactId>
<version>3.6</version>
</plugin>
<plugin>
<groupId>com.github.nbbrd.heylogs</groupId>
<artifactId>heylogs-maven-plugin</artifactId>
<version>0.7.2</version>
</plugin>
<plugin>
<groupId>com.amashchenko.maven.plugin</groupId>
<artifactId>gitflow-maven-plugin</artifactId>
<version>1.21.0</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.11</version>
</plugin>
<plugin>
<groupId>org.jreleaser</groupId>
<artifactId>jreleaser-maven-plugin</artifactId>
<version>1.10.0</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
Expand Down Expand Up @@ -205,11 +238,6 @@
<name>!skipBaseJava8</name>
</property>
</activation>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>
<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -247,7 +275,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.4.1</version>
<dependencies>
<dependency>
<groupId>org.kordamp.maven</groupId>
Expand Down Expand Up @@ -321,7 +348,6 @@
<plugin>
<groupId>org.gaul</groupId>
<artifactId>modernizer-maven-plugin</artifactId>
<version>2.7.0</version>
<configuration>
<javaVersion>1.8</javaVersion>
</configuration>
Expand Down Expand Up @@ -387,7 +413,6 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.11</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -420,7 +445,6 @@
<plugin>
<groupId>com.amashchenko.maven.plugin</groupId>
<artifactId>gitflow-maven-plugin</artifactId>
<version>1.21.0</version>
<configuration>
<gitFlowConfig>
<versionTagPrefix>v</versionTagPrefix>
Expand Down

0 comments on commit 26537fe

Please sign in to comment.