Skip to content

Commit efd793b

Browse files
committed
U set line separator
1 parent 98adb77 commit efd793b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>io.github.fvarrui</groupId>
55
<artifactId>javapackager</artifactId>
6-
<version>0.9.3-SNAPSHOT</version>
6+
<version>0.9.2-SNAPSHOT</version>
77
<packaging>maven-plugin</packaging>
88

99
<name>JavaPackager Maven Plugin</name>
@@ -14,8 +14,6 @@
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1515
<maven.compiler.source>1.8</maven.compiler.source>
1616
<maven.compiler.target>1.8</maven.compiler.target>
17-
<line.separator>
18-
</line.separator>
1917
</properties>
2018

2119
<licenses>

src/main/java/io/github/fvarrui/javapackager/PackageMojo.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,8 @@ public PackageMojo() {
232232
}
233233

234234
public void execute() throws MojoExecutionException {
235+
236+
System.setProperty("line.separator", "\n");
235237

236238
// gets plugin execution environment
237239
this.env = executionEnvironment(mavenProject, mavenSession, pluginManager);

0 commit comments

Comments
 (0)