Skip to content

Commit

Permalink
Don't strip debug from jlink deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
meh2481 committed Dec 25, 2023
1 parent dad6645 commit fa30000
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
12 changes: 4 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@
<configuration>
<source>19</source>
<target>19</target>
<debug>true</debug>
</configuration>
</plugin>
<plugin>
Expand All @@ -168,22 +169,16 @@
<jlinkZipName>WOGAnniversaryEditor</jlinkZipName>
<jlinkImageName>WOGAnniversaryEditor</jlinkImageName>
<noManPages>true</noManPages>
<stripDebug>true</stripDebug>
<stripDebug>false</stripDebug>
<noHeaderFiles>true</noHeaderFiles>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jmod-plugin</artifactId>
<version>3.0.0-alpha-1</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jlink-plugin</artifactId>
<version>3.0.0-alpha-1</version>
<version>3.1.0</version>
<extensions>true</extensions>
<configuration>
<modulePaths>
Expand All @@ -203,6 +198,7 @@
<module>ch.qos.logback.core</module>
<module>ch.qos.logback.classic</module>
</modules>
<stripDebug>false</stripDebug>
</configuration>
</plugin>
</plugins>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/logback.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%date{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %file:%line - %msg%n</pattern>
<pattern>%date{HH:mm:ss.SSS} [%level] %logger{36} - %file:%line - %msg%n</pattern>
</encoder>
</appender>

Expand Down

0 comments on commit fa30000

Please sign in to comment.