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