]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/pom.xml
cd57095c2074c257fc7464584047ac432da2cbe5
[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 <!--
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-source-plugin</artifactId>
34 </plugin>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-javadoc-plugin</artifactId>
38 </plugin>
39 <plugin>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-assembly-plugin</artifactId>
42 <configuration>
43 <descriptors>
44 <descriptor>src/assembly/base.xml</descriptor>
45 </descriptors>
46 </configuration>
47 <executions>
48 <execution>
49 <id>assembly-base</id>
50 <phase>package</phase>
51 <goals>
52 <goal>single</goal>
53 </goals>
54 </execution>
55 </executions>
56 </plugin>
57 -->
58 <plugin>
59 <groupId>org.apache.maven.plugins</groupId>
60 <artifactId>maven-surefire-plugin</artifactId>
61 <configuration>
62 <excludes>
63 <exclude>**/*IntegrationTest*.java</exclude>
64 </excludes>
65 </configuration>
66 </plugin>
67 </plugins>
68 </build>
69 <dependencies>
70 <dependency>
71 <groupId>javax.transaction</groupId>
72 <artifactId>jta</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>log4j</groupId>
76 <artifactId>log4j</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>org.hibernate</groupId>
80 <artifactId>hibernate</artifactId>
81 </dependency>
82
83 <dependency>
84 <groupId>org.springframework</groupId>
85 <artifactId>spring-context</artifactId>
86 </dependency>
87 <dependency>
88 <groupId>org.springframework</groupId>
89 <artifactId>spring-orm</artifactId>
90 </dependency>
91 <dependency>
92 <groupId>org.springframework</groupId>
93 <artifactId>spring-jdbc</artifactId>
94 </dependency>
95 <dependency>
96 <groupId>org.springframework.ws</groupId>
97 <artifactId>spring-ws-core</artifactId>
98 </dependency>
99 <dependency>
100 <groupId>org.springframework.ws</groupId>
101 <artifactId>spring-oxm</artifactId>
102 </dependency>
103
104 <dependency>
105 <groupId>org.codehaus.castor</groupId>
106 <artifactId>castor</artifactId>
107 </dependency>
108 <dependency>
109 <groupId>xerces</groupId>
110 <artifactId>xercesImpl</artifactId>
111 </dependency>
112
113 <dependency>
114 <groupId>javax.xml.soap</groupId>
115 <artifactId>saaj-api</artifactId>
116 </dependency>
117 <dependency>
118 <groupId>com.sun.xml.messaging.saaj</groupId>
119 <artifactId>saaj-impl</artifactId>
120 </dependency>
121
122 <dependency>
123 <groupId>org.apache.ant</groupId>
124 <artifactId>ant</artifactId>
125 </dependency>
126 <dependency>
127 <groupId>org.apache.commons</groupId>
128 <artifactId>commons-io</artifactId>
129 </dependency>
130 <dependency>
131 <groupId>org.dbunit</groupId>
132 <artifactId>dbunit</artifactId>
133 </dependency>
134 <dependency>
135 <groupId>junit</groupId>
136 <artifactId>junit</artifactId>
137 </dependency>
138 <dependency>
139 <groupId>hsqldb</groupId>
140 <artifactId>hsqldb</artifactId>
141 </dependency>
142 </dependencies>
143 </project>