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