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-pom.xml
69 lines (66 loc) · 2.01 KB
/
jpf-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
<?xml version="1.0" ?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>net.sf.jpf</groupId>
<artifactId>jpf</artifactId>
<packaging>jar</packaging>
<name>jpf</name>
<version>1.5</version>
<description>Java Plugin Framework</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</sourceDirectory>
<outputDirectory>jpf-target/classes</outputDirectory>
<directory>jpf-target</directory>
<resources>
<resource>
<directory>source/</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>
<addClasspath>true</addClasspath>
</manifest>
<manifestEntries>
<Specification-Title>Java Plug-in Framework (JPF) - core library</Specification-Title>
<Specification-Version>${project.version}</Specification-Version>
<Specification-Vendor>http://jpf.sourceforge.net</Specification-Vendor>
<Implementation-Title>org.java.plugin</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>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.4</version>
</dependency>
</dependencies>
</project>