Skip to content

Commit

Permalink
Correct NoClassDefFoundError on maven install run #182
Browse files Browse the repository at this point in the history
  • Loading branch information
hdsdi3g committed Oct 18, 2024
1 parent 01717ce commit 9491a83
Showing 1 changed file with 10 additions and 17 deletions.
27 changes: 10 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<apache.poi.version>5.2.3</apache.poi.version>
<jfreechart.version>1.5.4</jfreechart.version>
<commonmark.version>0.21.0</commonmark.version>
<exec-maven-plugin.version>3.1.1</exec-maven-plugin.version>
<exec-maven-plugin.version>3.4.1</exec-maven-plugin.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -157,26 +157,19 @@
<execution>
<phase>package</phase>
<goals>
<goal>java</goal>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>media.mexm.mediadeepa.App</mainClass>
<systemProperties>
<systemProperty>
<key>exportdocumentation.manpage</key>
<value>docs/mediadeepa-1.man</value>
</systemProperty>
<systemProperty>
<key>exportdocumentation.readme</key>
<value>README.md</value>
</systemProperty>
<systemProperty>
<key>exportdocumentation.website</key>
<value>docs/index.html</value>
</systemProperty>
</systemProperties>
<executable>java</executable>
<arguments>
<argument>-Dexportdocumentation.manpage=docs/mediadeepa-1.man</argument>
<argument>-Dexportdocumentation.readme=README.md</argument>
<argument>-Dexportdocumentation.website=docs/index.html</argument>
<argument>-jar</argument>
<argument>target/${project.artifactId}-${project.version}.jar</argument>
</arguments>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit 9491a83

Please sign in to comment.