Skip to content

Commit

Permalink
pom cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
rvullriede committed Jun 25, 2024
1 parent 0fb35a2 commit bb5c90f
Showing 1 changed file with 39 additions and 28 deletions.
67 changes: 39 additions & 28 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@

<groupId>net.osslabz</groupId>
<artifactId>crypto-commons</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>

<name>${project.groupId}:${project.artifactId}</name>
<description>This package decouples my bitcoin related libraries from the underlying implementation although it
seems unlikely this will ever
change ;-)
<description>Provides common functionality for some of my crypto related projects.
</description>
<url>https://github.com/osslabz/crypto-commons</url>

Expand All @@ -22,6 +20,8 @@
<project.reporting.outputEncoding>${osslabz.encoding}</project.reporting.outputEncoding>

<maven.compiler.release>${osslabz.java.version}</maven.compiler.release>

<lombok.version>1.18.32</lombok.version>
</properties>

<licenses>
Expand Down Expand Up @@ -51,7 +51,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.32</version>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>

Expand All @@ -78,34 +78,11 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>osslabz-release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand Down Expand Up @@ -152,4 +129,38 @@
</build>
</profile>
</profiles>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<release>${maven.compiler.release}</release>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit bb5c90f

Please sign in to comment.