Skip to content

Commit

Permalink
Fix build warnings (#1418)
Browse files Browse the repository at this point in the history
  • Loading branch information
injectives authored Apr 27, 2023
1 parent d0757f4 commit 4446cfc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@
</excludes>
</filter>
<filter>
<artifact>${groupId}:${artifactId}</artifact>
<artifact>${project.groupId}:${project.artifactId}</artifact>
<excludes>
<exclude>module-info.java</exclude>
</excludes>
Expand All @@ -232,9 +232,9 @@
</goals>
<configuration>
<target>
<unzip src="${project.build.directory}/${artifactId}-${version}-sources.jar" dest="${project.build.directory}/sources-with-module"/>
<unzip src="${project.build.directory}/${project.artifactId}-${project.version}-sources.jar" dest="${project.build.directory}/sources-with-module"/>
<copy file="${project.basedir}/src/main/jpms/module-info.java" tofile="${project.build.directory}/sources-with-module/module-info.java" />
<zip basedir="${project.build.directory}/sources-with-module" destfile="${project.build.directory}/${artifactId}-${version}-sources.jar"/>
<zip basedir="${project.build.directory}/sources-with-module" destfile="${project.build.directory}/${project.artifactId}-${project.version}-sources.jar"/>
</target>
</configuration>
</execution>
Expand Down

0 comments on commit 4446cfc

Please sign in to comment.