Skip to content

Commit

Permalink
Fixed release repo
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasrichner-oviva committed May 16, 2024
1 parent c0ffeed commit c0ffee8
Showing 1 changed file with 24 additions and 9 deletions.
33 changes: 24 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,19 +64,11 @@
<spotless.maven.plugin.version>2.43.0</spotless.maven.plugin.version>
</properties>

<repositories>
<repository>
<id>github</id>
<name>GitHub Oviva Apache Maven Packages</name>
<url>https://maven.pkg.github.com/oviva-ag/maven-repo</url>
</repository>
</repositories>

<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Oviva Apache Maven Packages</name>
<url>https://maven.pkg.github.com/oviva-ag/maven-repo</url>
<url>https://maven.pkg.github.com/oviva-ag/spicegen</url>
</repository>
</distributionManagement>

Expand Down Expand Up @@ -301,6 +293,29 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<configuration>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit c0ffee8

Please sign in to comment.