Skip to content

Commit

Permalink
Merge pull request #26 from ebocher/release
Browse files Browse the repository at this point in the history
Fix release action
  • Loading branch information
ebocher authored Sep 24, 2024
2 parents c3c2358 + ddbcf19 commit 45f594e
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,60 @@
<build>
<pluginManagement>
<plugins>
<!-- Clean -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>${maven-clean-version}</version>
</plugin>
<!-- Groovy -->
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
<version>${gmaven-version}</version>
<configuration>
<targetBytecode>${maven.compiler.target}</targetBytecode>
<includeClasspath>PROJECT_AND_PLUGIN</includeClasspath>
</configuration>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>addSources</goal>
<goal>addTestSources</goal>
<goal>addStubSources</goal>
<goal>generateStubs</goal>
<goal>compile</goal>
<goal>generateTestStubs</goal>
<goal>compileTests</goal>
<goal>groovydoc</goal>
<goal>groovydoc-jar</goal>
<goal>removeStubs</goal>
<goal>removeTestStubs</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.apache.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>4.0.22</version>
<type>pom</type>
</dependency>
</dependencies>
</plugin>
<!-- Compilation -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-version}</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<fork>true</fork>
</configuration>
</plugin>
<!-- Sign -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit 45f594e

Please sign in to comment.