Trying to get JAR To export
This commit is contained in:
18
pom.xml
18
pom.xml
@ -122,6 +122,24 @@
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>3.0.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
<configuration>
|
||||
<archive>
|
||||
<!-- Configures the content of the created manifest -->
|
||||
<manifest>
|
||||
<!-- Adds the classpath to the created manifest -->
|
||||
<addClasspath>true</addClasspath>
|
||||
<!-- Specifies that all dependencies of our application are found -->
|
||||
<!-- Configures the main class of the application -->
|
||||
<mainClass>com.jamesquinley.startup</mainClass>
|
||||
</manifest>
|
||||
</archive>
|
||||
</configuration>
|
||||
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
|
Reference in New Issue
Block a user