1 |
<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>spin</groupId> |
5 |
<artifactId>spin</artifactId> |
6 |
<packaging>jar</packaging> |
7 |
<version>1.5</version> |
8 |
<name>Spin</name> |
9 |
<url>http://spin.sourceforge.net</url> |
10 |
<description>Transparent threading solution for non-freezing Swing applications.</description> |
11 |
|
12 |
<licenses> |
13 |
<license> |
14 |
<name>GNU Lesser General Public License</name> |
15 |
<url>http://www.gnu.org/copyleft/lesser.html</url> |
16 |
<distribution>repo</distribution> |
17 |
</license> |
18 |
</licenses> |
19 |
|
20 |
<issueManagement> |
21 |
<system>Sourceforge</system> |
22 |
<url>http://sourceforge.net/tracker?group_id=3636</url> |
23 |
</issueManagement> |
24 |
|
25 |
<developers> |
26 |
<developer> |
27 |
<id>svenmeier</id> |
28 |
<name>Sven Meier</name> |
29 |
<email>svenmeier@users.sourceforge.net</email> |
30 |
<roles> |
31 |
<role>Project Manager</role> |
32 |
<role>Architect</role> |
33 |
<role>Developer</role> |
34 |
</roles> |
35 |
</developer> |
36 |
</developers> |
37 |
|
38 |
<mailingLists> |
39 |
<mailingList> |
40 |
<name>spin-developer</name> |
41 |
<subscribe>spin-developer-request@lists.sourceforge.net?subject=subscribe</subscribe> |
42 |
<unsubscribe>mailto:spin-developer-request@lists.sourceforge.net?subject=unsubscribe</unsubscribe> |
43 |
<post>spin-developer@lists.sourceforge.net</post> |
44 |
<archive>http://sourceforge.net/mailarchive/forum.php?forum_name=spin-developer</archive> |
45 |
</mailingList> |
46 |
</mailingLists> |
47 |
|
48 |
<scm> |
49 |
<connection>scm:pserver:anonymous@spin.cvs.sourceforge.net:/cvsroot/spin</connection> |
50 |
<developerConnection>scm:extssh:spin.cvs.sourceforge.net:/cvsroot/spin</developerConnection> |
51 |
<url>http://spin.cvs.sourceforge.net/spin/</url> |
52 |
</scm> |
53 |
|
54 |
<dependencies> |
55 |
<dependency> |
56 |
<groupId>junit</groupId> |
57 |
<artifactId>junit</artifactId> |
58 |
<version>3.8.1</version> |
59 |
<scope>test</scope> |
60 |
</dependency> |
61 |
<dependency> |
62 |
<groupId>cglib</groupId> |
63 |
<artifactId>cglib-nodep</artifactId> |
64 |
<version>2.1_3</version> |
65 |
<optional>true</optional> |
66 |
</dependency> |
67 |
</dependencies> |
68 |
|
69 |
<reporting> |
70 |
<plugins> |
71 |
<plugin> |
72 |
<groupId>org.apache.maven.plugins</groupId> |
73 |
<artifactId>maven-project-info-reports-plugin</artifactId> |
74 |
<reportSets> |
75 |
<reportSet> |
76 |
<reports> |
77 |
<report>dependencies</report> |
78 |
<report>project-team</report> |
79 |
<report>mailing-list</report> |
80 |
<!-- <report>cim</report> --> |
81 |
<report>issue-tracking</report> |
82 |
<report>license</report> |
83 |
<report>scm</report> |
84 |
</reports> |
85 |
</reportSet> |
86 |
</reportSets> |
87 |
</plugin> |
88 |
<plugin> |
89 |
<artifactId>maven-javadoc-plugin</artifactId> |
90 |
</plugin> |
91 |
<plugin> |
92 |
<artifactId>maven-surefire-plugin</artifactId> |
93 |
</plugin> |
94 |
</plugins> |
95 |
</reporting> |
96 |
|
97 |
<build> |
98 |
<resources> |
99 |
<resource> |
100 |
<filtering>false</filtering> |
101 |
<directory>src/main/java</directory> |
102 |
<includes> |
103 |
<include>**/*</include> |
104 |
</includes> |
105 |
<excludes> |
106 |
<exclude>**/*.java</exclude> |
107 |
</excludes> |
108 |
</resource> |
109 |
</resources> |
110 |
|
111 |
<testResources> |
112 |
<testResource> |
113 |
<filtering>false</filtering> |
114 |
<directory>src/test/java</directory> |
115 |
<includes> |
116 |
<include>**/*</include> |
117 |
</includes> |
118 |
<excludes> |
119 |
<exclude>**/*.java</exclude> |
120 |
</excludes> |
121 |
</testResource> |
122 |
</testResources> |
123 |
|
124 |
<plugins> |
125 |
<plugin> |
126 |
<artifactId>maven-compiler-plugin</artifactId> |
127 |
<configuration> |
128 |
<source>1.4</source> |
129 |
<target>1.4</target> |
130 |
</configuration> |
131 |
</plugin> |
132 |
<plugin> |
133 |
<artifactId>maven-assembly-plugin</artifactId> |
134 |
<configuration> |
135 |
<descriptors> |
136 |
<descriptor>src/assembly/all.xml</descriptor> |
137 |
</descriptors> |
138 |
</configuration> |
139 |
</plugin> |
140 |
</plugins> |
141 |
</build> |
142 |
</project> |