1 |
<?xml version="1.0" ?> |
2 |
<project> |
3 |
<modelVersion>4.0.0</modelVersion> |
4 |
<groupId>net.sf.jpf</groupId> |
5 |
<artifactId>jpf-boot</artifactId> |
6 |
<packaging>jar</packaging> |
7 |
<name>jpf-boot</name> |
8 |
<version>1.5</version> |
9 |
<description>Java Plugin Framework - Boot Library</description> |
10 |
|
11 |
<licenses> |
12 |
<license> |
13 |
<name>GNU Lesser General Public License, Version 2.1, February 1999</name> |
14 |
<url>http://jpf.sourceforge.net/license.txt</url> |
15 |
</license> |
16 |
</licenses> |
17 |
|
18 |
<build> |
19 |
<sourceDirectory>source-boot</sourceDirectory> |
20 |
<outputDirectory>jpf-boot-target/classes</outputDirectory> |
21 |
<directory>jpf-boot-target</directory> |
22 |
<resources> |
23 |
<resource> |
24 |
<directory>source-boot/</directory> |
25 |
<excludes> |
26 |
<exclude>**/*.java</exclude> |
27 |
<exclude>**/*.jpage</exclude> |
28 |
</excludes> |
29 |
</resource> |
30 |
</resources> |
31 |
|
32 |
<plugins> |
33 |
<plugin> |
34 |
<groupId>org.apache.maven.plugins</groupId> |
35 |
<artifactId>maven-compiler-plugin</artifactId> |
36 |
<configuration> |
37 |
<source>5</source> |
38 |
<target>5</target> |
39 |
</configuration> |
40 |
</plugin> |
41 |
<plugin> |
42 |
<groupId>org.apache.maven.plugins</groupId> |
43 |
<artifactId>maven-jar-plugin</artifactId> |
44 |
<configuration> |
45 |
<archive> |
46 |
<manifest> |
47 |
<mainClass>org.java.plugin.boot.Boot</mainClass> |
48 |
<addClasspath>true</addClasspath> |
49 |
</manifest> |
50 |
<manifestEntries> |
51 |
<Specification-Title>Java Plug-in Framework (JPF) - application boot library</Specification-Title> |
52 |
<Specification-Version>${project.version}</Specification-Version> |
53 |
<Specification-Vendor>http://jpf.sourceforge.net</Specification-Vendor> |
54 |
<Implementation-Title>org.java.plugin.boot</Implementation-Title> |
55 |
<Implementation-Version>${project.version}</Implementation-Version> |
56 |
<Implementation-Vendor>http://jpf.sourceforge.net</Implementation-Vendor> |
57 |
</manifestEntries> |
58 |
</archive> |
59 |
</configuration> |
60 |
</plugin> |
61 |
</plugins> |
62 |
</build> |
63 |
|
64 |
<dependencies> |
65 |
<dependency> |
66 |
<groupId>log4j</groupId> |
67 |
<artifactId>log4j</artifactId> |
68 |
<version>1.2.4</version> |
69 |
</dependency> |
70 |
<dependency> |
71 |
<groupId>net.sf.jpf</groupId> |
72 |
<artifactId>jpf</artifactId> |
73 |
<version>1.5</version> |
74 |
</dependency> |
75 |
</dependencies> |
76 |
</project> |