]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
2c5925ddf50adf3499f68a27fa35fbaa1ce90d29
[gpl/argeo-slc.git] / 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 <dependency>
79 <groupId>org.springframework.ws</groupId>
80 <artifactId>org.springframework.ws</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>org.springframework</groupId>
84 <artifactId>org.springframework.web.servlet</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>org.springframework</groupId>
88 <artifactId>org.springframework.aop</artifactId>
89 </dependency>
90
91 <!-- J2EE -->
92 <dependency>
93 <groupId>javax.servlet</groupId>
94 <artifactId>
95 com.springsource.javax.servlet.jsp.jstl
96 </artifactId>
97 </dependency>
98 <dependency>
99 <groupId>org.apache.taglibs</groupId>
100 <artifactId>
101 com.springsource.org.apache.taglibs.standard
102 </artifactId>
103 </dependency>
104 <dependency>
105 <groupId>javax.servlet</groupId>
106 <artifactId>com.springsource.javax.servlet</artifactId>
107 </dependency>
108 <dependency>
109 <groupId>javax.wsdl</groupId>
110 <artifactId>com.springsource.javax.wsdl</artifactId>
111 </dependency>
112
113 <dependency>
114 <groupId>javax.servlet</groupId>
115 <artifactId>com.springsource.javax.servlet.jsp</artifactId>
116 </dependency>
117 <dependency>
118 <groupId>javax.el</groupId>
119 <artifactId>com.springsource.javax.el</artifactId>
120 </dependency>
121 <dependency>
122 <groupId>javax.servlet</groupId>
123 <artifactId>com.springsource.javax.servlet.jsp.jstl</artifactId>
124 </dependency>
125 <dependency>
126 <groupId>org.apache.taglibs</groupId>
127 <artifactId>com.springsource.org.apache.taglibs.standard</artifactId>
128 </dependency>
129
130 <!-- Various -->
131 <dependency>
132 <groupId>org.aspectj</groupId>
133 <artifactId>com.springsource.org.aspectj.weaver</artifactId>
134 </dependency>
135 <dependency>
136 <groupId>net.sourceforge.jexcelapi</groupId>
137 <artifactId>com.springsource.jxl</artifactId>
138 </dependency>
139 <dependency>
140 <groupId>com.lowagie.text</groupId>
141 <artifactId>com.springsource.com.lowagie.text</artifactId>
142 </dependency>
143
144 <!-- Required in JDK 1.5 -->
145 <dependency>
146 <groupId>com.sun.xml</groupId>
147 <artifactId>
148 com.springsource.com.sun.xml.messaging.saaj
149 </artifactId>
150 </dependency>
151
152 </dependencies>
153 </project>