]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.server/pom.xml
Factorize with parent Argeo
[gpl/argeo-slc.git] / runtime / org.argeo.slc.server / 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>runtime</artifactId>
6 <version>0.12.1-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.slc.runtime</groupId>
10 <artifactId>org.argeo.slc.server</artifactId>
11 <name>SLC Server</name>
12 <description>SLC Server</description>
13 <build>
14 <plugins>
15 <!-- Look to parent pom for inheritances -->
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 </plugin>
20 <plugin>
21 <groupId>org.apache.maven.plugins</groupId>
22 <artifactId>maven-source-plugin</artifactId>
23 </plugin>
24 <plugin>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-jar-plugin</artifactId>
27 <!--
28 <executions> <execution> <goals> <goal>test-jar</goal> </goals>
29 </execution> </executions>
30 -->
31 </plugin>
32 <plugin>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>maven-bundle-plugin</artifactId>
35 <version>${version.maven-bundle-plugin}</version>
36 <configuration>
37 <instructions>
38 <Export-Package>
39 org.argeo.slc.*,org.argeo.slc.server,org.argeo.slc.server.spring
40 </Export-Package>
41 <Import-Package>org.w3c.dom;version="0.0.0",javax.xml.*;version="0.0.0",org.argeo.slc.activemq,org.argeo.slc.execution,*</Import-Package>
42 </instructions>
43 </configuration>
44 </plugin>
45 <plugin>
46 <groupId>org.mortbay.jetty</groupId>
47 <artifactId>maven-jetty-plugin</artifactId>
48 <configuration>
49 <webAppSourceDirectory>
50 ../../org.argeo.slc.webapp/src/main/webapp
51 </webAppSourceDirectory>
52 <jettyConfig>
53 ../../org.argeo.slc.webapp/src/main/config/jetty/jetty-test-local.xml
54 </jettyConfig>
55 <webDefaultXml>../../org.argeo.slc.webapp/src/main/config/jetty/webdefault.xml</webDefaultXml>
56 <systemProperties>
57 <systemProperty>
58 <name>activemq.base</name>
59 <value>${user.home}/share/apache-activemq-5.2.0</value>
60 </systemProperty>
61 </systemProperties>
62 </configuration>
63 </plugin>
64 </plugins>
65 </build>
66 <dependencies>
67 <!-- SLC -->
68 <dependency>
69 <groupId>org.argeo.slc.runtime</groupId>
70 <artifactId>org.argeo.slc.core</artifactId>
71 </dependency>
72
73 <!-- Spring -->
74 <dependency>
75 <groupId>org.springframework</groupId>
76 <artifactId>org.springframework.web.servlet</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>org.springframework</groupId>
80 <artifactId>org.springframework.aop</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>org.springframework.ws</groupId>
84 <artifactId>org.springframework.oxm</artifactId>
85 </dependency>
86
87 <!-- Web -->
88 <dependency>
89 <groupId>org.apache.commons</groupId>
90 <artifactId>com.springsource.org.apache.commons.fileupload</artifactId>
91 </dependency>
92
93 <!-- J2EE -->
94 <dependency>
95 <groupId>javax.servlet</groupId>
96 <artifactId>com.springsource.javax.servlet</artifactId>
97 </dependency>
98
99 <!-- AOP -->
100 <dependency>
101 <groupId>org.aspectj</groupId>
102 <artifactId>com.springsource.org.aspectj.weaver</artifactId>
103 </dependency>
104
105 <!-- Docs -->
106 <dependency>
107 <groupId>net.sourceforge.jexcelapi</groupId>
108 <artifactId>com.springsource.jxl</artifactId>
109 </dependency>
110 <dependency>
111 <groupId>com.lowagie.text</groupId>
112 <artifactId>com.springsource.com.lowagie.text</artifactId>
113 </dependency>
114
115 <!-- Security -->
116 <dependency>
117 <groupId>org.springframework.security</groupId>
118 <artifactId>org.springframework.security</artifactId>
119 </dependency>
120
121 <dependency>
122 <groupId>com.springsource.json</groupId>
123 <artifactId>com.springsource.json</artifactId>
124 <version>1.0.1.RELEASE</version>
125 </dependency>
126 <dependency>
127 <groupId>org.antlr</groupId>
128 <artifactId>com.springsource.org.antlr</artifactId>
129 </dependency>
130
131 </dependencies>
132 </project>