]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
54184e74d345ce8ce4cb9b40ed1eb410a596a154
[gpl/argeo-slc.git] / 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-ws-core</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>org.springframework.ws</groupId>
79 <artifactId>spring-oxm</artifactId>
80 </dependency>
81
82 <dependency>
83 <groupId>org.codehaus.castor</groupId>
84 <artifactId>castor</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>xerces</groupId>
88 <artifactId>xercesImpl</artifactId>
89 </dependency>
90
91 <dependency>
92 <groupId>javax.xml.soap</groupId>
93 <artifactId>saaj-api</artifactId>
94 </dependency>
95 <dependency>
96 <groupId>com.sun.xml.messaging.saaj</groupId>
97 <artifactId>saaj-impl</artifactId>
98 </dependency>
99 <dependency>
100 <groupId>javax.activation</groupId>
101 <artifactId>activation</artifactId>
102 </dependency>
103
104 <dependency>
105 <groupId>org.apache.ant</groupId>
106 <artifactId>ant</artifactId>
107 </dependency>
108 <dependency>
109 <groupId>org.apache.ant</groupId>
110 <artifactId>ant-commons-logging</artifactId>
111 </dependency>
112
113 <dependency>
114 <groupId>org.apache.commons</groupId>
115 <artifactId>commons-io</artifactId>
116 </dependency>
117 <dependency>
118 <groupId>org.dbunit</groupId>
119 <artifactId>dbunit</artifactId>
120 </dependency>
121 <dependency>
122 <groupId>junit</groupId>
123 <artifactId>junit</artifactId>
124 </dependency>
125 <dependency>
126 <groupId>xalan</groupId>
127 <artifactId>xalan</artifactId>
128 </dependency>
129 <dependency>
130 <groupId>org.apache.maven</groupId>
131 <artifactId>maven-embedder</artifactId>
132 </dependency>
133 <dependency>
134 <groupId>org.apache.maven</groupId>
135 <artifactId>maven-settings</artifactId>
136 </dependency>
137
138 </dependencies>
139 </project>