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