Skip to content

Commit

Permalink
mvn fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tzaeschke committed May 27, 2023
1 parent 6dfd8f1 commit cf657f4
Showing 1 changed file with 25 additions and 10 deletions.
35 changes: 25 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<!--
mvn clean
mvn compile
mvn deploy -Psonatype-oss-release
mvn release:xxx -Pode4j-release
-->

<groupId>org.ode4j</groupId>
Expand Down Expand Up @@ -168,22 +168,13 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${ode4j.maven-javadoc-plugin.version}</version>
<!-- <configuration>-->
<!-- <show>private</show>-->
<!-- <nohelp>true</nohelp>-->
<!-- </configuration>-->
</plugin>

<!-- TZ: I added these only to avoid warnings during release:perform-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<!-- <configuration>-->
<!-- <outputDirectory>/absolute/path/to/the/output/directory</outputDirectory>-->
<!-- <finalName>filename-of-generated-jar-file</finalName>-->
<!-- <attach>false</attach>-->
<!-- </configuration>-->
</plugin>

<!--
Expand Down Expand Up @@ -393,6 +384,30 @@

<profiles>

<profile>
<id>ode4j-release</id>
<!-- <modules>-->
<!-- <module>core</module>-->
<!-- <module>parent-pom</module>-->
<!-- </modules>-->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<configuration>
<file>${file}.jar</file>
<keyname>${gpg.keyname}</keyname>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>

<profile>
<id>on-jdk-8</id>
<activation>
Expand Down

0 comments on commit cf657f4

Please sign in to comment.