]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/pom.xml
Restructure example
[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 <parent>
7 <groupId>org.argeo.slc</groupId>
8 <artifactId>argeo-slc</artifactId>
9 <version>0.9-SNAPSHOT</version>
10 <relativePath>../org.argeo.slc</relativePath>
11 </parent>
12 <artifactId>argeo-slc-core</artifactId>
13 <name>Argeo SLC Core</name>
14 <description>SLC Core</description>
15 <scm>
16 <connection>
17 scm:svn:https://www.argeo.org/svn/slc/trunk/org.argeo.slc.core
18 </connection>
19 <url>
20 https://www.argeo.org/svn/slc/trunk/org.argeo.slc.core
21 </url>
22 </scm>
23 <build>
24 <plugins>
25 <!-- Look to parent pom for inheritances -->
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-compiler-plugin</artifactId>
29 </plugin>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-source-plugin</artifactId>
33 </plugin>
34 <plugin>
35 <groupId>org.apache.maven.plugins</groupId>
36 <artifactId>maven-assembly-plugin</artifactId>
37 <configuration>
38 <descriptors>
39 <descriptor>src/assembly/base.xml</descriptor>
40 </descriptors>
41 </configuration>
42 <executions>
43 <execution>
44 <id>assembly-base</id>
45 <phase>package</phase>
46 <goals>
47 <goal>single</goal>
48 </goals>
49 </execution>
50 </executions>
51 </plugin>
52 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-surefire-plugin</artifactId>
55 <configuration>
56 <excludes>
57 <exclude>**/*IntegrationTest*.java</exclude>
58 </excludes>
59 </configuration>
60 </plugin>
61 </plugins>
62 </build>
63 <dependencies>
64 <dependency>
65 <groupId>log4j</groupId>
66 <artifactId>log4j</artifactId>
67 </dependency>
68
69 <dependency>
70 <groupId>org.springframework</groupId>
71 <artifactId>spring-context</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>org.springframework.ws</groupId>
75 <artifactId>spring-oxm</artifactId>
76 </dependency>
77
78 <dependency>
79 <groupId>org.codehaus.castor</groupId>
80 <artifactId>castor</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>xerces</groupId>
84 <artifactId>xercesImpl</artifactId>
85 </dependency>
86
87 <dependency>
88 <groupId>org.apache.commons</groupId>
89 <artifactId>commons-io</artifactId>
90 </dependency>
91 <dependency>
92 <groupId>org.dbunit</groupId>
93 <artifactId>dbunit</artifactId>
94 </dependency>
95 <dependency>
96 <groupId>junit</groupId>
97 <artifactId>junit</artifactId>
98 </dependency>
99 <dependency>
100 <groupId>xalan</groupId>
101 <artifactId>xalan</artifactId>
102 </dependency>
103 </dependencies>
104 </project>