]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
9a4f35f285e948bad99fb416721262a939e8d2c4
[gpl/argeo-slc.git] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.argeo.slc</groupId>
5 <artifactId>argeo-slc</artifactId>
6 <version>0.10.4-SNAPSHOT</version>
7 <relativePath>../org.argeo.slc</relativePath>
8 </parent>
9 <artifactId>argeo-slc-agent</artifactId>
10 <name>Argeo SLC Agent</name>
11 <scm>
12 <connection>scm:svn:https://www.argeo.org/svn/slc/trunk/org.argeo.slc.agent</connection>
13 <url>https://www.argeo.org/svn/slc/trunk/org.argeo.slc/argeo-slc-agent</url>
14 </scm>
15 <build>
16 <plugins>
17 <!-- Look to parent pom for inheritances -->
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-compiler-plugin</artifactId>
21 </plugin>
22 <plugin>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-source-plugin</artifactId>
25 </plugin>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-surefire-plugin</artifactId>
29 </plugin>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-assembly-plugin</artifactId>
33 <configuration>
34 <descriptors>
35 <descriptor>src/assembly/base.xml</descriptor>
36 </descriptors>
37 </configuration>
38 <executions>
39 <execution>
40 <id>assembly-base</id>
41 <phase>package</phase>
42 <goals>
43 <goal>single</goal>
44 </goals>
45 </execution>
46 </executions>
47 </plugin>
48 </plugins>
49 </build>
50 <dependencies>
51 <dependency>
52 <groupId>org.argeo.slc</groupId>
53 <artifactId>argeo-slc-core</artifactId>
54 <version>${project.version}</version>
55 </dependency>
56
57 <dependency>
58 <groupId>log4j</groupId>
59 <artifactId>log4j</artifactId>
60 </dependency>
61
62 <dependency>
63 <groupId>org.springframework.ws</groupId>
64 <artifactId>spring-ws-core</artifactId>
65 </dependency>
66
67 <dependency>
68 <groupId>javax.xml.soap</groupId>
69 <artifactId>saaj-api</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>com.sun.xml.messaging.saaj</groupId>
73 <artifactId>saaj-impl</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>javax.activation</groupId>
77 <artifactId>activation</artifactId>
78 </dependency>
79
80 <dependency>
81 <groupId>org.apache.ant</groupId>
82 <artifactId>ant</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>org.apache.ant</groupId>
86 <artifactId>ant-commons-logging</artifactId>
87 </dependency>
88 <dependency>
89 <groupId>org.apache.ant</groupId>
90 <artifactId>ant-commons-net</artifactId>
91 </dependency>
92 <dependency>
93 <groupId>org.apache.ant</groupId>
94 <artifactId>ant-apache-oro</artifactId>
95 </dependency>
96 <dependency>
97 <groupId>org.apache.ant</groupId>
98 <artifactId>ant-apache-bsf</artifactId>
99 </dependency>
100 <dependency>
101 <groupId>commons-net</groupId>
102 <artifactId>commons-net</artifactId>
103 </dependency>
104 <dependency>
105 <groupId>oro</groupId>
106 <artifactId>oro</artifactId>
107 </dependency>
108
109 <dependency>
110 <groupId>org.apache.maven</groupId>
111 <artifactId>maven-embedder</artifactId>
112 </dependency>
113 <dependency>
114 <groupId>org.apache.maven</groupId>
115 <artifactId>maven-settings</artifactId>
116 </dependency>
117
118 <dependency>
119 <groupId>commons-cli</groupId>
120 <artifactId>commons-cli</artifactId>
121 </dependency>
122
123 </dependencies>
124 </project>