]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.agent/pom.xml
Quick fixes for SEB v3.1
[gpl/argeo-slc.git] / org.argeo.slc.agent / 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.11.2-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 <dependency>
57 <groupId>org.argeo.slc</groupId>
58 <artifactId>org.argeo.slc.detached</artifactId>
59 <version>${project.version}</version>
60 </dependency>
61
62 <dependency>
63 <groupId>log4j</groupId>
64 <artifactId>log4j</artifactId>
65 </dependency>
66
67 <dependency>
68 <groupId>org.springframework.ws</groupId>
69 <artifactId>spring-ws-core</artifactId>
70 </dependency>
71
72 <dependency>
73 <groupId>javax.xml.soap</groupId>
74 <artifactId>saaj-api</artifactId>
75 </dependency>
76 <dependency>
77 <groupId>com.sun.xml.messaging.saaj</groupId>
78 <artifactId>saaj-impl</artifactId>
79 </dependency>
80 <dependency>
81 <groupId>javax.activation</groupId>
82 <artifactId>activation</artifactId>
83 </dependency>
84
85 <dependency>
86 <groupId>org.apache.ant</groupId>
87 <artifactId>ant</artifactId>
88 </dependency>
89 <dependency>
90 <groupId>org.apache.ant</groupId>
91 <artifactId>ant-commons-logging</artifactId>
92 </dependency>
93 <dependency>
94 <groupId>org.apache.ant</groupId>
95 <artifactId>ant-commons-net</artifactId>
96 </dependency>
97 <dependency>
98 <groupId>org.apache.ant</groupId>
99 <artifactId>ant-apache-oro</artifactId>
100 </dependency>
101 <dependency>
102 <groupId>org.apache.ant</groupId>
103 <artifactId>ant-apache-bsf</artifactId>
104 </dependency>
105 <dependency>
106 <groupId>commons-net</groupId>
107 <artifactId>commons-net</artifactId>
108 </dependency>
109 <dependency>
110 <groupId>oro</groupId>
111 <artifactId>oro</artifactId>
112 </dependency>
113
114 <dependency>
115 <groupId>org.apache.maven</groupId>
116 <artifactId>maven-embedder</artifactId>
117 </dependency>
118 <dependency>
119 <groupId>org.apache.maven</groupId>
120 <artifactId>maven-settings</artifactId>
121 </dependency>
122
123 <dependency>
124 <groupId>commons-cli</groupId>
125 <artifactId>commons-cli</artifactId>
126 </dependency>
127
128 </dependencies>
129 </project>