-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.xml
173 lines (155 loc) · 7.02 KB
/
project.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<?xml version="1.0" encoding="ISO-8859-1"?>
<project xmlns:j="jelly:core">
<!--
! This POM has NanoContainer settings and neither PicoContainer
! nor MicroContainer.
! This is because these two sub project are the only
! ones with special settings (which are overridden) and that
! way we avoid a lot of duplication in the various NanoContainer
! sub projects.
!-->
<pomVersion>3</pomVersion>
<currentVersion>1.0-SNAPSHOT</currentVersion>
<name>NanoContainer</name>
<groupId>nanocontainer</groupId>
<id>nanocontainer-buildmain</id>
<url>http://www.nanocontainer.org</url>
<organization>
<name>Codehaus</name>
<url>http://codehaus.org/</url>
<logo>http://codehaus.org/codehaus-small.gif</logo>
</organization>
<inceptionYear>2003</inceptionYear>
<package>org.nanocontainer</package>
<description>
Please refer to the <a href="http://nanocontainer.org/">main website</a> for documentation.
</description>
<shortDescription>NanoContainer</shortDescription>
<issueTrackingUrl>http://jira.codehaus.org/browse/NANO</issueTrackingUrl>
<siteAddress>beaver.codehaus.org</siteAddress>
<siteDirectory>/home/projects/nanocontainer/public_html/versions/${pom.currentVersion}/${maven.multiproject.aggregateDir}${pom.artifactId}</siteDirectory>
<siteDirectory>/home/projects/nanocontainer/public_html/${pom.groupId}/${pom.currentVersion}/${pom.artifactId}</siteDirectory>
<distributionSite>beaver.codehaus.org</distributionSite>
<distributionDirectory>/dist</distributionDirectory>
<repository>
<connection>scm:cvs:pserver:[email protected]:/home/projects/picocontainer/scm:java</connection>
<developerConnection>scm:cvs:ext:${maven.username}@cvs.picocontainer.codehaus.org:/home/projects/picocontainer/scm:java</developerConnection>
<url>http://cvs.picocontainer.codehaus.org/viewrep/picocontainer/java}</url>
</repository>
<!--
! Common dependencies.
! Please place sub project-specific dependencies in the sub project's
! project.xml
-->
<dependencies>
<!-- Maven plugins -->
<!-- 1.5.2. is latest stable release compatible with maven 1.0.2 -->
<dependency>
<groupId>maven</groupId>
<artifactId>maven-artifact-plugin</artifactId>
<version>1.5.2</version>
<type>plugin</type>
</dependency>
<!-- Build/Test time only -->
<dependency>
<id>junit</id>
<version>3.8.1</version>
<url>http://junit.org</url>
<properties>
<scope>test</scope>
</properties>
</dependency>
<!-- required for JDK 1.5 -->
<dependency>
<groupId>maven</groupId>
<artifactId>maven-clover-plugin</artifactId>
<version>1.10</version>
<type>plugin</type>
</dependency>
</dependencies>
<build>
<sourceDirectory>${basedir}/src/java</sourceDirectory>
<sourceModifications>
<sourceModification>
<!-- exclude groovy if < 1.4 -->
<className>java.util.LinkedHashMap</className>
<excludes>
<exclude>org/nanocontainer/aop/**/*</exclude>
<exclude>org/nanocontainer/script/groovy/**/*</exclude>
<exclude>org/nanocontainer/script/jython/**/*</exclude>
<exclude>org/nanocontainer/script/rhino/**/*</exclude>
<exclude>org/nanocontainer/nanowar/nanoweb/**/*</exclude>
<exclude>org/nanocontainer/nanning/**/*</exclude>
<exclude>org/nanocontainer/swing/**/*</exclude>
<exclude>org/nanocontainer/piccolo/**/*</exclude>
<exclude>org/nanocontainer/swt/**/*</exclude>
<exclude>org/microcontainer/**/*</exclude>
</excludes>
</sourceModification>
</sourceModifications>
<!-- Resources tat are packaged up inside the JAR file -->
<resources>
<resource>
<directory>${basedir}/src/java</directory>
<includes>
<include>**/*.dtd</include>
<include>**/*.xsd</include>
<include>**/*.xhtml</include>
<include>**/*.xml</include>
<include>**/*.png</include>
<include>**/*.jpg</include>
<include>**/*.gif</include>
</includes>
</resource>
</resources>
<unitTestSourceDirectory>${basedir}/src/test</unitTestSourceDirectory>
<unitTest>
<includes>
<include>**/*Test.*</include>
<include>**/*TestCase.*</include>
</includes>
<excludes>
<exclude>**/Abstract*.*</exclude>
<!-- These fail on 1.3, would be nice if some of them could be fixed (groovy can't) -->
<!-- UNCOMMENT TO BUILD FOR JDK 1.3
<exclude>org/nanocontainer/StandaloneTestCase.*</exclude>
<exclude>org/nanocontainer/aop/**/*</exclude>
<exclude>org/nanocontainer/script/groovy/**/*</exclude>
<exclude>org/nanocontainer/script/jython/**/*</exclude>
<exclude>org/nanocontainer/script/rhino/**/*</exclude>
<exclude>org/nanocontainer/nanowar/nanoweb/**/*</exclude>
<exclude>org/nanocontainer/nanning/**/*</exclude>
<exclude>org/nanocontainer/swing/**/*</exclude>
<exclude>org/nanocontainer/piccolo/**/*</exclude>
<exclude>org/nanocontainer/swt/**/*</exclude>
<exclude>org/microcontainer/**/*</exclude>
<exclude>org/nanocontainer/deployer/**/*</exclude>
<exclude>org/nanocontainer/nanowar/struts/ActionFactoryTestCase.*</exclude>
<exclude>org/nanocontainer/concurrent/ThreadLocalComponentAdapterTest.*</exclude>
<exclude>org/nanocontainer/script/xml/XStreamComponentInstanceFactoryTestCase.*</exclude>
-->
</excludes>
<resources>
<!--resource>
<directory>${basedir}/src/test-comp</directory>
<includes>
<include>**/*</include>
</includes>
</resource-->
<resource>
<directory>${basedir}/src/test</directory>
<includes>
<include>**/*</include>
</includes>
</resource>
</resources>
</unitTest>
</build>
<reports>
<report>maven-license-plugin</report>
<report>maven-simian-plugin</report>
<report>maven-javadoc-plugin</report>
<report>maven-clover-plugin</report>
<report>maven-junit-report-plugin</report>
</reports>
</project>