]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/pom.xml
Rename into Core
[gpl/argeo-slc.git] / org.argeo.slc.core / 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 Core</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-source-plugin</artifactId>
62 <executions>
63 <execution>
64 <id>attach-sources</id>
65 <phase>verify</phase>
66 <goals>
67 <goal>jar</goal>
68 </goals>
69 </execution>
70 </executions>
71 </plugin>
72 <plugin>
73 <groupId>org.apache.maven.plugins</groupId>
74 <artifactId>maven-assembly-plugin</artifactId>
75 <configuration>
76 <descriptors>
77 <descriptor>
78 src/assembly/with-dependencies.xml
79 </descriptor>
80 </descriptors>
81 </configuration>
82 <executions>
83 <execution>
84 <id>make-assembly</id>
85 <phase>site</phase>
86 <goals>
87 <goal>attached</goal>
88 </goals>
89 </execution>
90 </executions>
91 </plugin>
92 </plugins>
93 </build>
94 <reporting>
95 <plugins>
96 <plugin>
97 <groupId>org.apache.maven.plugins</groupId>
98 <artifactId>maven-surefire-report-plugin</artifactId>
99 </plugin>
100 <plugin>
101 <groupId>org.apache.maven.plugins</groupId>
102 <artifactId>maven-javadoc-plugin</artifactId>
103 </plugin>
104 <plugin>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-changelog-plugin</artifactId>
107 </plugin>
108 <plugin>
109 <groupId>org.codehaus.mojo</groupId>
110 <artifactId>cobertura-maven-plugin</artifactId>
111 </plugin>
112 </plugins>
113 </reporting>
114 <dependencies>
115 <dependency>
116 <groupId>javax.transaction</groupId>
117 <artifactId>jta</artifactId>
118 <version>1.0.1</version>
119 </dependency>
120 <dependency>
121 <groupId>log4j</groupId>
122 <artifactId>log4j</artifactId>
123 <version>1.2.14</version>
124 </dependency>
125 <dependency>
126 <groupId>org.hibernate</groupId>
127 <artifactId>hibernate</artifactId>
128 <version>3.2.5.ga</version>
129 </dependency>
130 <dependency>
131 <groupId>org.springframework</groupId>
132 <artifactId>spring</artifactId>
133 <version>2.0.6</version>
134 </dependency>
135 <dependency>
136 <groupId>org.apache.ant</groupId>
137 <artifactId>ant</artifactId>
138 <version>1.7.0</version>
139 </dependency>
140 <dependency>
141 <groupId>org.apache.commons</groupId>
142 <artifactId>commons-io</artifactId>
143 <version>1.3.2</version>
144 </dependency>
145 <dependency>
146 <groupId>org.dbunit</groupId>
147 <artifactId>dbunit</artifactId>
148 <version>2.2</version>
149 </dependency>
150 <dependency>
151 <groupId>junit</groupId>
152 <artifactId>junit</artifactId>
153 <version>3.8.2</version>
154 </dependency>
155 <dependency>
156 <groupId>hsqldb</groupId>
157 <artifactId>hsqldb</artifactId>
158 <version>1.8.0.9</version>
159 </dependency>
160 </dependencies>
161 <dependencyManagement>
162 <dependencies>
163 <dependency>
164 <groupId>javax.transaction</groupId>
165 <artifactId>jta</artifactId>
166 <version>1.0.1</version>
167 </dependency>
168 <dependency>
169 <groupId>org.dbunit</groupId>
170 <artifactId>dbunit</artifactId>
171 <version>2.2</version>
172 <exclusions>
173 <exclusion>
174 <groupId>junit-addons</groupId>
175 <artifactId>junit-addons</artifactId>
176 </exclusion>
177 <exclusion>
178 <groupId>poi</groupId>
179 <artifactId>poi</artifactId>
180 </exclusion>
181 </exclusions>
182 </dependency>
183 </dependencies>
184 </dependencyManagement>
185 <repositories>
186 <repository>
187 <id>central</id>
188 <url>http://www.argeo.org/maven/repository</url>
189 </repository>
190 </repositories>
191 </project>