Skip to content

Commit fbab65a

Browse files
author
ipolevoy
committed
added compile plugin - need to ensure runs on older java
1 parent b26ba09 commit fbab65a

File tree

1 file changed

+43
-32
lines changed

1 file changed

+43
-32
lines changed

pom.xml

Lines changed: 43 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,45 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
4-
<groupId>org.jarexplorer</groupId>
5-
<artifactId>jarexplorer</artifactId>
6-
<packaging>jar</packaging>
7-
<version>0.6-BETA</version>
8-
<name>jarexplorer</name>
9-
<url>http://www.polevoy.org</url>
10-
<build>
11-
<plugins>
12-
<plugin>
13-
<groupId>org.apache.maven.plugins</groupId>
14-
<artifactId>maven-jar-plugin</artifactId>
15-
<configuration>
16-
<archive>
17-
<manifest>
18-
<mainClass>org.jarexplorer.JarExplorer</mainClass>
19-
<packageName>org.jarexplorer.jarexplorer</packageName>
20-
</manifest>
21-
</archive>
22-
</configuration>
23-
</plugin>
24-
</plugins>
25-
</build>
26-
<dependencies>
27-
<dependency>
28-
<groupId>junit</groupId>
29-
<artifactId>junit</artifactId>
30-
<version>3.8.1</version>
31-
<scope>test</scope>
32-
</dependency>
33-
</dependencies>
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>org.jarexplorer</groupId>
5+
<artifactId>jarexplorer</artifactId>
6+
<packaging>jar</packaging>
7+
<version>0.6-BETA</version>
8+
<name>jarexplorer</name>
9+
<url>http://www.polevoy.org</url>
10+
<build>
11+
<plugins>
12+
<plugin>
13+
<groupId>org.apache.maven.plugins</groupId>
14+
<artifactId>maven-jar-plugin</artifactId>
15+
<configuration>
16+
<archive>
17+
<manifest>
18+
<mainClass>org.jarexplorer.JarExplorer</mainClass>
19+
<packageName>org.jarexplorer.jarexplorer</packageName>
20+
</manifest>
21+
</archive>
22+
</configuration>
23+
</plugin>
24+
25+
26+
<plugin>
27+
<groupId>org.apache.maven.plugins</groupId>
28+
<artifactId>maven-compiler-plugin</artifactId>
29+
<configuration>
30+
<source>1.4</source>
31+
<target>1.4</target>
32+
</configuration>
33+
</plugin>
34+
35+
</plugins>
36+
</build>
37+
<dependencies>
38+
<dependency>
39+
<groupId>junit</groupId>
40+
<artifactId>junit</artifactId>
41+
<version>3.8.1</version>
42+
<scope>test</scope>
43+
</dependency>
44+
</dependencies>
3445
</project>

0 commit comments

Comments
 (0)