]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
cab5eb90e36310b11d6f4e22d23446cfe9d99c2d
[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>javax.transaction</groupId>
66 <artifactId>jta</artifactId>
67 </dependency>
68 <dependency>
69 <groupId>log4j</groupId>
70 <artifactId>log4j</artifactId>
71 </dependency>
72 <dependency>
73 <groupId>org.hibernate</groupId>
74 <artifactId>hibernate</artifactId>
75 </dependency>
76
77 <dependency>
78 <groupId>org.springframework</groupId>
79 <artifactId>spring-context</artifactId>
80 </dependency>
81 <dependency>
82 <groupId>org.springframework</groupId>
83 <artifactId>spring-orm</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>org.springframework</groupId>
87 <artifactId>spring-jdbc</artifactId>
88 </dependency>
89 <dependency>
90 <groupId>org.springframework.ws</groupId>
91 <artifactId>spring-ws-core</artifactId>
92 </dependency>
93 <dependency>
94 <groupId>org.springframework.ws</groupId>
95 <artifactId>spring-oxm</artifactId>
96 </dependency>
97
98 <dependency>
99 <groupId>org.codehaus.castor</groupId>
100 <artifactId>castor</artifactId>
101 </dependency>
102 <dependency>
103 <groupId>xerces</groupId>
104 <artifactId>xercesImpl</artifactId>
105 </dependency>
106
107 <dependency>
108 <groupId>javax.xml.soap</groupId>
109 <artifactId>saaj-api</artifactId>
110 </dependency>
111 <dependency>
112 <groupId>com.sun.xml.messaging.saaj</groupId>
113 <artifactId>saaj-impl</artifactId>
114 </dependency>
115 <dependency>
116 <groupId>javax.activation</groupId>
117 <artifactId>activation</artifactId>
118 </dependency>
119
120 <dependency>
121 <groupId>org.apache.ant</groupId>
122 <artifactId>ant</artifactId>
123 </dependency>
124 <dependency>
125 <groupId>org.apache.commons</groupId>
126 <artifactId>commons-io</artifactId>
127 </dependency>
128 <dependency>
129 <groupId>org.dbunit</groupId>
130 <artifactId>dbunit</artifactId>
131 </dependency>
132 <dependency>
133 <groupId>junit</groupId>
134 <artifactId>junit</artifactId>
135 </dependency>
136 <dependency>
137 <groupId>hsqldb</groupId>
138 <artifactId>hsqldb</artifactId>
139 </dependency>
140 <dependency>
141 <groupId>xalan</groupId>
142 <artifactId>xalan</artifactId>
143 </dependency>
144 </dependencies>
145 </project>