]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.server/pom.xml
Remove old integration tests
[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"
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.runtime</groupId>
6 <artifactId>argeo-slc-runtime</artifactId>
7 <version>0.11.3-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.slc.server</artifactId>
11 <name>Argeo 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 </plugin>
28 <plugin>
29 <groupId>org.apache.felix</groupId>
30 <artifactId>maven-bundle-plugin</artifactId>
31 <version>${version.maven-bundle-plugin}</version>
32 <configuration>
33 <instructions>
34 <Export-Package>
35 org.argeo.slc.*,org.argeo.slc.server,org.argeo.slc.server.spring
36 </Export-Package>
37 <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>
38 </instructions>
39 </configuration>
40 </plugin>
41 <plugin>
42 <groupId>org.mortbay.jetty</groupId>
43 <artifactId>maven-jetty-plugin</artifactId>
44 <configuration>
45 <webAppSourceDirectory>
46 ../../org.argeo.slc.webapp/src/main/webapp
47 </webAppSourceDirectory>
48 <jettyConfig>
49 ../../org.argeo.slc.webapp/src/main/config/jetty/jetty-test-local.xml
50 </jettyConfig>
51 <webDefaultXml>../../org.argeo.slc.webapp/src/main/config/jetty/webdefault.xml</webDefaultXml>
52 <systemProperties>
53 <systemProperty>
54 <name>activemq.base</name>
55 <value>${user.home}/share/apache-activemq-5.2.0</value>
56 </systemProperty>
57 </systemProperties>
58 </configuration>
59 </plugin>
60 </plugins>
61 </build>
62 <dependencies>
63 <!-- SLC -->
64 <dependency>
65 <groupId>org.argeo.slc.runtime</groupId>
66 <artifactId>org.argeo.slc.support.hibernate</artifactId>
67 </dependency>
68 <dependency>
69 <groupId>org.argeo.slc.runtime</groupId>
70 <artifactId>org.argeo.slc.support.castor</artifactId>
71 </dependency>
72 <dependency>
73 <groupId>org.argeo.slc.runtime</groupId>
74 <artifactId>org.argeo.slc.support.activemq</artifactId>
75 </dependency>
76
77 <!-- Spring -->
78 <!--
79 <dependency>
80 <groupId>org.springframework.ws</groupId>
81 <artifactId>org.springframework.ws</artifactId>
82 </dependency>
83 -->
84 <dependency>
85 <groupId>org.springframework</groupId>
86 <artifactId>org.springframework.web.servlet</artifactId>
87 </dependency>
88 <dependency>
89 <groupId>org.springframework</groupId>
90 <artifactId>org.springframework.aop</artifactId>
91 </dependency>
92
93 <!-- J2EE -->
94 <dependency>
95 <groupId>javax.servlet</groupId>
96 <artifactId>
97 com.springsource.javax.servlet.jsp.jstl
98 </artifactId>
99 </dependency>
100 <dependency>
101 <groupId>org.apache.taglibs</groupId>
102 <artifactId>
103 com.springsource.org.apache.taglibs.standard
104 </artifactId>
105 </dependency>
106 <dependency>
107 <groupId>javax.servlet</groupId>
108 <artifactId>com.springsource.javax.servlet</artifactId>
109 </dependency>
110 <dependency>
111 <groupId>javax.wsdl</groupId>
112 <artifactId>com.springsource.javax.wsdl</artifactId>
113 </dependency>
114
115 <dependency>
116 <groupId>javax.servlet</groupId>
117 <artifactId>com.springsource.javax.servlet.jsp</artifactId>
118 </dependency>
119 <dependency>
120 <groupId>javax.el</groupId>
121 <artifactId>com.springsource.javax.el</artifactId>
122 </dependency>
123 <dependency>
124 <groupId>javax.servlet</groupId>
125 <artifactId>com.springsource.javax.servlet.jsp.jstl</artifactId>
126 </dependency>
127 <dependency>
128 <groupId>org.apache.taglibs</groupId>
129 <artifactId>com.springsource.org.apache.taglibs.standard</artifactId>
130 </dependency>
131
132 <!-- Various -->
133 <dependency>
134 <groupId>org.aspectj</groupId>
135 <artifactId>com.springsource.org.aspectj.weaver</artifactId>
136 </dependency>
137 <dependency>
138 <groupId>net.sourceforge.jexcelapi</groupId>
139 <artifactId>com.springsource.jxl</artifactId>
140 </dependency>
141 <dependency>
142 <groupId>com.lowagie.text</groupId>
143 <artifactId>com.springsource.com.lowagie.text</artifactId>
144 </dependency>
145
146 <!-- Required in JDK 1.5 -->
147 <dependency>
148 <groupId>com.sun.xml</groupId>
149 <artifactId>
150 com.springsource.com.sun.xml.messaging.saaj
151 </artifactId>
152 </dependency>
153
154 </dependencies>
155 </project>