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