]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc/pom.xml
Manage with Maven
[gpl/argeo-slc.git] / org.argeo.slc / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6 <groupId>org.argeo.slc</groupId>
7 <artifactId>argeo-slc-core</artifactId>
8 <name>Argeo SLC</name>
9 <version>0.5.1-SNAPSHOT</version>
10 <description>SLC Core</description>
11 <scm>
12 <connection>
13 scm:svn:https://www.argeo.org/svn/slc/trunk/org.argeo.slc
14 </connection>
15 <developerConnection>
16 scm:svn:https://www.argeo.org/svn/slc/trunk/org.argeo.slc
17 </developerConnection>
18 <url>https://www.argeo.org/svn/slc/trunk/org.argeo.slc</url>
19 </scm>
20 <issueManagement>
21 <system>Bugzilla</system>
22 <url>https://www.argeo.org/bugzilla/</url>
23 </issueManagement>
24 <licenses>
25 <license>
26 <name>Apache 2</name>
27 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
28 <distribution>repo</distribution>
29 <comments>A business-friendly OSS license</comments>
30 </license>
31 </licenses>
32 <organization>
33 <name>Argeo</name>
34 <url>http://www.argeo.org</url>
35 </organization>
36 <developers>
37 <developer>
38 <id>mbaudier</id>
39 <name>Mathieu Baudier</name>
40 <email>mbaudier@argeo.org</email>
41 <organization>Argeo</organization>
42 <roles>
43 <role>architect</role>
44 <role>developer</role>
45 </roles>
46 <timezone>+1</timezone>
47 </developer>
48 </developers>
49 <build>
50 <plugins>
51 <plugin>
52 <groupId>org.apache.maven.plugins</groupId>
53 <artifactId>maven-compiler-plugin</artifactId>
54 <configuration>
55 <source>1.5</source>
56 <target>1.5</target>
57 </configuration>
58 </plugin>
59 <plugin>
60 <groupId>org.apache.maven.plugins</groupId>
61 <artifactId>maven-surefire-plugin</artifactId>
62 <configuration>
63 <skip>true</skip>
64 </configuration>
65 <executions>
66 <execution>
67 <id>surefire-it</id>
68 <phase>integration-test</phase>
69 <goals>
70 <goal>test</goal>
71 </goals>
72 <configuration>
73 <skip>false</skip>
74 <systemProperties>
75 <property>
76 <name>it.slc.base</name>
77 <value>
78 ${basedir}/src/test/slc
79 </value>
80 </property>
81 </systemProperties>
82 </configuration>
83 </execution>
84 </executions>
85 </plugin>
86 </plugins>
87 </build>
88 <reporting>
89 <plugins>
90 <plugin>
91 <groupId>org.apache.maven.plugins</groupId>
92 <artifactId>maven-surefire-report-plugin</artifactId>
93 </plugin>
94 <plugin>
95 <groupId>org.apache.maven.plugins</groupId>
96 <artifactId>maven-javadoc-plugin</artifactId>
97 </plugin>
98 <plugin>
99 <groupId>org.apache.maven.plugins</groupId>
100 <artifactId>maven-changelog-plugin</artifactId>
101 </plugin>
102 <!--
103 <plugin>
104 <groupId>org.codehaus.mojo</groupId>
105 <artifactId>cobertura-maven-plugin</artifactId>
106 </plugin>
107 -->
108 </plugins>
109 </reporting>
110 <dependencies>
111 <dependency>
112 <groupId>log4j</groupId>
113 <artifactId>log4j</artifactId>
114 <version>1.2.14</version>
115 </dependency>
116 <dependency>
117 <groupId>org.hibernate</groupId>
118 <artifactId>hibernate</artifactId>
119 <version>3.2.5.ga</version>
120 </dependency>
121 <dependency>
122 <groupId>org.springframework</groupId>
123 <artifactId>spring</artifactId>
124 <version>2.0.6</version>
125 </dependency>
126 <dependency>
127 <groupId>org.apache.ant</groupId>
128 <artifactId>ant</artifactId>
129 <version>1.7.0</version>
130 </dependency>
131 <dependency>
132 <groupId>org.apache.commons</groupId>
133 <artifactId>commons-io</artifactId>
134 <version>1.3.2</version>
135 </dependency>
136 <dependency>
137 <groupId>org.dbunit</groupId>
138 <artifactId>dbunit</artifactId>
139 <version>2.2</version>
140 </dependency>
141 <dependency>
142 <groupId>junit</groupId>
143 <artifactId>junit</artifactId>
144 <version>3.8.2</version>
145 </dependency>
146 <dependency>
147 <groupId>hsqldb</groupId>
148 <artifactId>hsqldb</artifactId>
149 <version>1.8.0.9</version>
150 </dependency>
151 </dependencies>
152 <dependencyManagement>
153 <dependencies>
154 <dependency>
155 <groupId>javax.transaction</groupId>
156 <artifactId>jta</artifactId>
157 <version>1.0.1</version>
158 </dependency>
159 <dependency>
160 <groupId>org.dbunit</groupId>
161 <artifactId>dbunit</artifactId>
162 <version>2.2</version>
163 <exclusions>
164 <exclusion>
165 <groupId>junit-addons</groupId>
166 <artifactId>junit-addons</artifactId>
167 </exclusion>
168 <exclusion>
169 <groupId>poi</groupId>
170 <artifactId>poi</artifactId>
171 </exclusion>
172 </exclusions>
173 </dependency>
174 </dependencies>
175 </dependencyManagement>
176 </project>