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 65444ca commit 9cacd7a
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 19 deletions.
1 change: 0 additions & 1 deletion demetra-sa-advanced-binaries/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
<plugin>
<groupId>org.jreleaser</groupId>
<artifactId>jreleaser-maven-plugin</artifactId>
<version>1.10.0</version>
<executions>
<execution>
<phase>install</phase>
Expand Down
65 changes: 47 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<name>Demetra - Sa - Advanced</name>
<description>Experimental SA methods extension for JDemetra+</description>
<url>https://github.com/nbbrd/jdemetra-sa-advanced</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-sa-advanced.git</connection>
<developerConnection>scm:git:ssh://github.com:nbbrd/jdemetra-sa-advanced.git</developerConnection>
<url>http://github.com/nbbrd/jdemetra-sa-advanced/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-sa-advanced</x.github.repo>

<nbm-maven-plugin.version>4.1</nbm-maven-plugin.version>
<brandingToken>nbbdemetra</brandingToken>
Expand Down Expand Up @@ -205,6 +213,41 @@
<artifactId>maven-dependency-plugin</artifactId>
<version>3.6.1</version>
</plugin>
<plugin>
<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>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>nbm-maven-plugin</artifactId>
Expand All @@ -215,11 +258,6 @@
<cluster>${brandingToken}</cluster>
</configuration>
</plugin>
<plugin>
<groupId>de.thetaphi</groupId>
<artifactId>forbiddenapis</artifactId>
<version>3.6</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
Expand Down Expand Up @@ -290,11 +328,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 @@ -332,7 +365,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 @@ -411,7 +443,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 @@ -443,7 +474,6 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.11</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -510,7 +540,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 9cacd7a

Please sign in to comment.