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