forked from l2fprod/l2fprod-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
151 lines (149 loc) · 5.12 KB
/
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.l2fprod.common</groupId>
<artifactId>l2fprod-common-all</artifactId>
<packaging>pom</packaging>
<name>L2FProd.com Common Components</name>
<version>7.4-SNAPSHOT</version>
<description>Swing has lot of components built-in but still some are missing. This project
provides the developer community with these missing components, components inspired from modern
user interfaces. It provides a PropertySheet component, a collapsible task pane, a button bar, a
font chooser, a directory chooser.</description>
<issueManagement>
<system>bugzilla</system>
<url>https://l2fprod-common.dev.java.net/servlets/ProjectIssues</url>
</issueManagement>
<ciManagement>
<notifiers>
<notifier>
<address>[email protected]</address>
</notifier>
</notifiers>
</ciManagement>
<inceptionYear>2004</inceptionYear>
<developers>
<developer>
<id>l2fprod</id>
<name>Frederic Lavigne</name>
<email>[email protected]</email>
<url>http://www.L2FProd.com</url>
<organization>L2FProd.com</organization>
<roles>
<role>Project Owner</role>
</roles>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:cvs:pserver:[email protected]:/cvs:l2fprod-common</connection>
<developerConnection>scm:cvs:pserver:${maven.username}@cvs.dev.java.net:/cvs:l2fprod-common</developerConnection>
<url>https://l2fprod-common.dev.java.net/source/browse/l2fprod-common/</url>
</scm>
<organization>
<name>L2FProd.com</name>
<url>http://common.L2FProd.com</url>
</organization>
<mailingLists>
<mailingList>
<name>Announcement List</name>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
<archive>https://l2fprod-common.dev.java.net/servlets/SummarizeList?listName=announce</archive>
</mailingList>
<mailingList>
<name>Developer List</name>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
<archive>https://l2fprod-common.dev.java.net/servlets/SummarizeList?listName=dev</archive>
</mailingList>
<mailingList>
<name>Users List</name>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
<archive>https://l2fprod-common.dev.java.net/servlets/SummarizeList?listName=users</archive>
</mailingList>
</mailingLists>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ftp</artifactId>
<version>1.0-alpha-6</version>
</extension>
</extensions>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<inherited>true</inherited>
</plugin>
</plugins>
</build>
<modules>
<module>maven/buttonbar</module>
<module>maven/directorychooser</module>
<module>maven/fontchooser</module>
<module>maven/outlookbar</module>
<module>maven/shared</module>
<module>maven/sheet</module>
<module>maven/tasks</module>
<module>maven/totd</module>
</modules>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>ftp-l2fprod.com</id>
<url>ftp://ftp.L2FProd.com/maven2/</url>
</repository>
</distributionManagement>
<reporting>
<plugins>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<siteDirectory>${basedir}/xdocs</siteDirectory>
<resourcesDirectory>${basedir}/xdocs/resources</resourcesDirectory>
</configuration>
</plugin>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-pmd-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<quiet>true</quiet>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptor>maven/assembly-bin.xml</descriptor>
<finalName>l2fprod-common-${project.version}</finalName>
</configuration>
</plugin>
</plugins>
</reporting>
</project>