This repository has been archived by the owner on May 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjpf-boot-pom.xml
76 lines (72 loc) · 2.24 KB
/
jpf-boot-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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?xml version="1.0" ?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>net.sf.jpf</groupId>
<artifactId>jpf-boot</artifactId>
<packaging>jar</packaging>
<name>jpf-boot</name>
<version>1.5</version>
<description>Java Plugin Framework - Boot Library</description>
<licenses>
<license>
<name>GNU Lesser General Public License, Version 2.1, February 1999</name>
<url>http://jpf.sourceforge.net/license.txt</url>
</license>
</licenses>
<build>
<sourceDirectory>source-boot</sourceDirectory>
<outputDirectory>jpf-boot-target/classes</outputDirectory>
<directory>jpf-boot-target</directory>
<resources>
<resource>
<directory>source-boot/</directory>
<excludes>
<exclude>**/*.java</exclude>
<exclude>**/*.jpage</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>5</source>
<target>5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>org.java.plugin.boot.Boot</mainClass>
<addClasspath>true</addClasspath>
</manifest>
<manifestEntries>
<Specification-Title>Java Plug-in Framework (JPF) - application boot library</Specification-Title>
<Specification-Version>${project.version}</Specification-Version>
<Specification-Vendor>http://jpf.sourceforge.net</Specification-Vendor>
<Implementation-Title>org.java.plugin.boot</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Vendor>http://jpf.sourceforge.net</Implementation-Vendor>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.4</version>
</dependency>
<dependency>
<groupId>net.sf.jpf</groupId>
<artifactId>jpf</artifactId>
<version>1.5</version>
</dependency>
</dependencies>
</project>