Skip to content

Commit

Permalink
fix(CORE-893): Fix release files
Browse files Browse the repository at this point in the history
  • Loading branch information
thielems committed Oct 16, 2024
1 parent d657530 commit 77d799b
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ jobs:
draft: false
prerelease: false
files: |
./target/documentplatform-standard14-fonts-${{ steps.semanticversion.outputs.new_version }}.jar
./target/documentplatform-standard14-fonts-${{ steps.semanticversion.outputs.new_version }}-javadoc.jar
./target/documentplatform-standard14-fonts-${{ steps.semanticversion.outputs.new_version }}-sources.jar
./target/jadice-dss-utils-${{ steps.semanticversion.outputs.new_version }}.jar
./target/jadice-dss-utils-${{ steps.semanticversion.outputs.new_version }}-javadoc.jar
./target/jadice-dss-utils-${{ steps.semanticversion.outputs.new_version }}-sources.jar
## Notify developers
- name: Notify developers
Expand Down
25 changes: 24 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,30 @@

<build>
<plugins>

<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 77d799b

Please sign in to comment.