]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.agent/pom.xml
Normalize URLs
[gpl/argeo-slc.git] / org.argeo.slc.agent / 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-agent</artifactId>
13 <name>Argeo SLC Agent</name>
14 <scm>
15 <connection>
16 scm:svn:https://www.argeo.org/svn/slc/trunk/org.argeo.slc.agent
17 </connection>
18 </scm>
19 <build>
20 <plugins>
21 <!-- Look to parent pom for inheritances -->
22 <plugin>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-compiler-plugin</artifactId>
25 </plugin>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-source-plugin</artifactId>
29 </plugin>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-surefire-plugin</artifactId>
33 <configuration>
34 <excludes>
35 <exclude>**/*IntegrationTest*.java</exclude>
36 </excludes>
37 </configuration>
38 </plugin>
39 </plugins>
40 </build>
41 <dependencies>
42 <dependency>
43 <groupId>org.argeo.slc</groupId>
44 <artifactId>argeo-slc-core</artifactId>
45 <version>${project.version}</version>
46 </dependency>
47
48 <dependency>
49 <groupId>log4j</groupId>
50 <artifactId>log4j</artifactId>
51 </dependency>
52
53 <dependency>
54 <groupId>org.springframework.ws</groupId>
55 <artifactId>spring-ws-core</artifactId>
56 </dependency>
57
58 <dependency>
59 <groupId>javax.xml.soap</groupId>
60 <artifactId>saaj-api</artifactId>
61 </dependency>
62 <dependency>
63 <groupId>com.sun.xml.messaging.saaj</groupId>
64 <artifactId>saaj-impl</artifactId>
65 </dependency>
66 <dependency>
67 <groupId>javax.activation</groupId>
68 <artifactId>activation</artifactId>
69 </dependency>
70
71 <dependency>
72 <groupId>org.apache.ant</groupId>
73 <artifactId>ant</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>org.apache.ant</groupId>
77 <artifactId>ant-commons-logging</artifactId>
78 </dependency>
79
80 <dependency>
81 <groupId>org.apache.maven</groupId>
82 <artifactId>maven-embedder</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>org.apache.maven</groupId>
86 <artifactId>maven-settings</artifactId>
87 </dependency>
88
89 <dependency>
90 <groupId>commons-cli</groupId>
91 <artifactId>commons-cli</artifactId>
92 </dependency>
93
94 </dependencies>
95 </project>