Skip to content

Commit

Permalink
Fix release action
Browse files Browse the repository at this point in the history
  • Loading branch information
ebocher committed Sep 24, 2024
1 parent bf67c46 commit 707683c
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 11 deletions.
49 changes: 38 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -138,17 +138,35 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-version}</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
<manifestEntries>
<Specification-Vendor-URL>${project.organization.url}</Specification-Vendor-URL>
<Specification-URL>${project.url}</Specification-URL>
</manifestEntries>
</archive>
</configuration>
<executions>
<execution>
<id>default-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
</configuration>
</execution>
<execution>
<id>sources-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>sources</classifier>
</configuration>
</execution>
</executions>
</plugin>
<!-- Generation of the OSGI bundle -->
<plugin>
Expand Down Expand Up @@ -213,6 +231,15 @@
<doclint>all,-missing</doclint>
<quiet>true</quiet>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Maven release generation -->
<plugin>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
package org.orbisgis.demat

import static org.orbisgis.demat.Plot.*

Expand Down

0 comments on commit 707683c

Please sign in to comment.