Skip to content

Commit

Permalink
ci: test release
Browse files Browse the repository at this point in the history
  • Loading branch information
sitepark-veltrup committed Apr 12, 2024
1 parent 8851205 commit 8e8ec62
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 17 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: (📡) Create GitHub Release Draft
name: (📡) Create GitHub Release

on:
push:
Expand All @@ -8,4 +8,4 @@ on:

jobs:
create-github-release:
uses: sitepark/github-project-workflow/.github/workflows/create-github-release-draft.yml@release/1.x
uses: sitepark/github-project-workflow/.github/workflows/create-github-release.yml@release/1.x
10 changes: 0 additions & 10 deletions .github/workflows/publish-release.yml

This file was deleted.

30 changes: 25 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<version>1.0.0-SNAPSHOT</version>
<name>IES Content Repository Core</name>
<description>IES contentrepository domain und use-case implementations</description>
<url>https://github.com/sitepark/ies-contentrepository-core</url>

<organization>
<name>Sitepark</name>
Expand Down Expand Up @@ -167,7 +168,6 @@
</dependencies>
<build>
<plugins>

<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
Expand All @@ -185,6 +185,9 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<doclint>all,-missing</doclint>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
Expand Down Expand Up @@ -307,7 +310,6 @@
</rules>
</configuration>
</execution>

<execution>
<id>generate-code-coverage-report</id>
<goals>
Expand Down Expand Up @@ -369,14 +371,13 @@
<maxRank>20</maxRank>
<excludeFilterFile>spotbug-exclude-filter.xml</excludeFilterFile>
</configuration>

<!-- https://spotbugs.readthedocs.io/en/latest/maven.html -->
<dependencies>
<!-- overwrite dependency on spotbugs if you want to specify the version of spotbugs -->
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs</artifactId>
<version>${spotbugs.version}</version>
<version>4.8.3</version>
</dependency>
</dependencies>
<executions>
Expand All @@ -401,7 +402,6 @@
<failurePriority>5</failurePriority>
<printFailingErrors>true</printFailingErrors>
<linkXRef>false</linkXRef>
<!-- erzeugt sonst eine Warnung -->
</configuration>
<executions>
<execution>
Expand All @@ -415,4 +415,24 @@
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>nexus-staging-release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit 8e8ec62

Please sign in to comment.