Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
srcimon committed Jun 22, 2024
1 parent 9d315f5 commit b15b38d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 19 deletions.
23 changes: 6 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.srcimon</groupId>
<artifactId>screwbox</artifactId>
<version>1.15.2-SNAPSHOT</version>
<version>1.15.1-SNAPSHOT</version>
<packaging>pom</packaging>
<description>ScrewBox is a minimalistic Java 2D game engine.</description>
<name>ScrewBox</name>
Expand Down Expand Up @@ -133,7 +133,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<version>3.2.1</version><!-- not upgrading due to https://issues.apache.org/jira/browse/MSOURCES-141 -->
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -273,27 +273,16 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
<useReleaseProfile>false</useReleaseProfile>
</configuration>
<executions>
<execution>
<id>prepare</id>
<goals>
<goal>prepare</goal>
</goals>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
<useReleaseProfile>false</useReleaseProfile>
<arguments>-Dmaven.javadoc.skip=true</arguments>
</configuration>
</execution>
<execution>
<id>perform</id>
<goals>
<goal>perform</goal>
</goals>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
<useReleaseProfile>false</useReleaseProfile>
</configuration>
</execution>
</executions>
</plugin>
Expand Down
2 changes: 1 addition & 1 deletion screwbox-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>io.github.srcimon</groupId>
<artifactId>screwbox</artifactId>
<version>1.15.2-SNAPSHOT</version>
<version>1.15.1-SNAPSHOT</version>
</parent>
<artifactId>screwbox-core</artifactId>
<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion screwbox-tiled/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>io.github.srcimon</groupId>
<artifactId>screwbox</artifactId>
<version>1.15.2-SNAPSHOT</version>
<version>1.15.1-SNAPSHOT</version>
</parent>
<artifactId>screwbox-tiled</artifactId>
<dependencies>
Expand Down

0 comments on commit b15b38d

Please sign in to comment.