Skip to content

Commit

Permalink
feat: flatten POM on publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
astappiev committed Oct 9, 2024
1 parent eb4be74 commit 3cf8464
Showing 1 changed file with 26 additions and 3 deletions.
29 changes: 26 additions & 3 deletions interweb-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
</parent>

<artifactId>interweb-client</artifactId>
<version>4.5.1</version>
<version>4.5.2</version>
<packaging>jar</packaging>

<name>Interweb Client</name>
<description>Versatile API that consolidates multiple data providers into one unified interface</description>
<description>Interweb is a versatile API that consolidates multiple data providers into one unified interface</description>
<url>https://github.com/l3s-learnweb/interweb</url>

<licenses>
Expand Down Expand Up @@ -118,14 +118,37 @@
</artifactSet>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.6.0</version>
<configuration>
<flattenMode>ossrh</flattenMode>
</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>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
<waitUntil>published</waitUntil>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit 3cf8464

Please sign in to comment.