Skip to content

Commit 07ec12b

Browse files
committed
Fix build warnings
1 parent d715914 commit 07ec12b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bundle/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@
208208
</excludes>
209209
</filter>
210210
<filter>
211-
<artifact>${groupId}:${artifactId}</artifact>
211+
<artifact>${project.groupId}:${project.artifactId}</artifact>
212212
<excludes>
213213
<exclude>module-info.java</exclude>
214214
</excludes>
@@ -232,9 +232,9 @@
232232
</goals>
233233
<configuration>
234234
<target>
235-
<unzip src="${project.build.directory}/${artifactId}-${version}-sources.jar" dest="${project.build.directory}/sources-with-module"/>
235+
<unzip src="${project.build.directory}/${project.artifactId}-${project.version}-sources.jar" dest="${project.build.directory}/sources-with-module"/>
236236
<copy file="${project.basedir}/src/main/jpms/module-info.java" tofile="${project.build.directory}/sources-with-module/module-info.java" />
237-
<zip basedir="${project.build.directory}/sources-with-module" destfile="${project.build.directory}/${artifactId}-${version}-sources.jar"/>
237+
<zip basedir="${project.build.directory}/sources-with-module" destfile="${project.build.directory}/${project.artifactId}-${project.version}-sources.jar"/>
238238
</target>
239239
</configuration>
240240
</execution>

0 commit comments

Comments
 (0)