Skip to content

Commit 6519918

Browse files
committed
U upload v0.8.4 jar file to repo
1 parent cb665e2 commit 6519918

File tree

5 files changed

+8
-13
lines changed

5 files changed

+8
-13
lines changed

.classpath

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,11 @@
3131
<classpathentry kind="src" path="target/generated-sources/annotations">
3232
<attributes>
3333
<attribute name="optional" value="true"/>
34-
<attribute name="maven.pomderived" value="true"/>
35-
<attribute name="ignore_optional_problems" value="true"/>
36-
<attribute name="m2e-apt" value="true"/>
3734
</attributes>
3835
</classpathentry>
3936
<classpathentry kind="src" output="target/test-classes" path="target/generated-test-sources/test-annotations">
4037
<attributes>
4138
<attribute name="optional" value="true"/>
42-
<attribute name="maven.pomderived" value="true"/>
43-
<attribute name="ignore_optional_problems" value="true"/>
44-
<attribute name="m2e-apt" value="true"/>
4539
<attribute name="test" value="true"/>
4640
</attributes>
4741
</classpathentry>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2-
#Thu Oct 24 11:01:50 BST 2019
2+
#Fri Nov 29 14:21:12 GMT 2019
33
javapackager-0.8.4.pom>=
44
javapackager-0.8.4.jar>=
-2 Bytes
Binary file not shown.

releases/fvarrui/maven/javapackager/maven-metadata-local.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
<version>0.8.3</version>
1616
<version>0.8.4</version>
1717
</versions>
18-
<lastUpdated>20191024100150</lastUpdated>
18+
<lastUpdated>20191129142112</lastUpdated>
1919
</versioning>
2020
</metadata>

src/main/java/fvarrui/maven/plugin/javapackager/PackageMojo.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -418,16 +418,17 @@ private void createWindowsExecutable() throws MojoExecutionException {
418418
config.add(element("classPath", element("mainClass", mainClass)));
419419

420420
if (bundleJre) {
421-
config.add(element("jre",
422-
element("path", "jre")
421+
config.add(
422+
element("jre", element("path", "jre")
423423
));
424424
} else {
425-
config.add(element("jre",
426-
element("path", "%JAVA_HOME%")
425+
config.add(
426+
element("jre", element("path", "%JAVA_HOME%")
427427
));
428428
}
429429

430-
config.add(element("versionInfo",
430+
config.add(
431+
element("versionInfo",
431432
element("fileVersion", "1.0.0.0"),
432433
element("txtFileVersion", "1.0.0.0"),
433434
element("copyright", organizationName),

0 commit comments

Comments
 (0)