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