-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
31 lines (30 loc) · 1.03 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<project>
<modelVersion>4.0.0</modelVersion>
<artifactId>jsongbookindexmaker</artifactId>
<groupId>tex.latex.gchords</groupId>
<version>1.0</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>tex.latex.gchords.JIndexMaker</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>