]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/pom.xml
Start introducing OSGi commands
[gpl/argeo-slc.git] / org.argeo.slc.core / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.argeo.slc</groupId>
7 <artifactId>argeo-slc</artifactId>
8 <version>0.11.1-SNAPSHOT</version>
9 <relativePath>../org.argeo.slc</relativePath>
10 </parent>
11 <artifactId>argeo-slc-core</artifactId>
12 <name>Argeo SLC Core</name>
13 <description>SLC Core</description>
14 <scm>
15 <connection>
16 scm:svn:https://www.argeo.org/svn/slc/trunk/org.argeo.slc.core
17 </connection>
18 <url>
19 https://www.argeo.org/svn/slc/trunk/org.argeo.slc.core
20 </url>
21 </scm>
22 <build>
23 <plugins>
24 <!-- Look to parent pom for inheritances -->
25 <plugin>
26 <groupId>org.apache.maven.plugins</groupId>
27 <artifactId>maven-compiler-plugin</artifactId>
28 </plugin>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
31 <artifactId>maven-source-plugin</artifactId>
32 </plugin>
33 <plugin>
34 <groupId>org.apache.maven.plugins</groupId>
35 <artifactId>maven-surefire-plugin</artifactId>
36 </plugin>
37 </plugins>
38 </build>
39 <dependencies>
40 <dependency>
41 <groupId>log4j</groupId>
42 <artifactId>log4j</artifactId>
43 </dependency>
44
45 <dependency>
46 <groupId>org.springframework</groupId>
47 <artifactId>spring-context</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>org.springframework.ws</groupId>
51 <artifactId>spring-oxm</artifactId>
52 </dependency>
53
54 <dependency>
55 <groupId>org.codehaus.castor</groupId>
56 <artifactId>castor</artifactId>
57 </dependency>
58 <dependency>
59 <groupId>xerces</groupId>
60 <artifactId>xercesImpl</artifactId>
61 </dependency>
62 <dependency>
63 <groupId>xalan</groupId>
64 <artifactId>xalan</artifactId>
65 </dependency>
66 <dependency>
67 <groupId>javax.xml.stream</groupId>
68 <artifactId>stax-api</artifactId>
69 </dependency>
70
71 <dependency>
72 <groupId>commons-io</groupId>
73 <artifactId>commons-io</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>org.dbunit</groupId>
77 <artifactId>dbunit</artifactId>
78 </dependency>
79 <dependency>
80 <groupId>junit</groupId>
81 <artifactId>junit</artifactId>
82 </dependency>
83 </dependencies>
84 </project>