]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.server/pom.xml
Introduce site server module
[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.*
37 </Export-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 <version>${project.version}</version>
68 </dependency>
69 <dependency>
70 <groupId>org.argeo.slc.runtime</groupId>
71 <artifactId>org.argeo.slc.support.castor</artifactId>
72 <version>${project.version}</version>
73 </dependency>
74 <dependency>
75 <groupId>org.argeo.slc.runtime</groupId>
76 <artifactId>org.argeo.slc.support.activemq</artifactId>
77 <version>${project.version}</version>
78 </dependency>
79
80 <!-- Spring -->
81 <dependency>
82 <groupId>org.springframework.ws</groupId>
83 <artifactId>org.springframework.ws</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>org.springframework</groupId>
87 <artifactId>org.springframework.web.servlet</artifactId>
88 </dependency>
89 <dependency>
90 <groupId>org.springframework</groupId>
91 <artifactId>org.springframework.aop</artifactId>
92 </dependency>
93
94 <!-- J2EE -->
95 <dependency>
96 <groupId>javax.servlet</groupId>
97 <artifactId>
98 com.springsource.javax.servlet.jsp.jstl
99 </artifactId>
100 </dependency>
101 <dependency>
102 <groupId>org.apache.taglibs</groupId>
103 <artifactId>
104 com.springsource.org.apache.taglibs.standard
105 </artifactId>
106 </dependency>
107 <dependency>
108 <groupId>javax.servlet</groupId>
109 <artifactId>com.springsource.javax.servlet</artifactId>
110 <scope>provided</scope>
111 </dependency>
112 <dependency>
113 <groupId>javax.wsdl</groupId>
114 <artifactId>com.springsource.javax.wsdl</artifactId>
115 </dependency>
116
117 <!-- ActiveMQ -->
118 <dependency>
119 <groupId>org.apache.activemq</groupId>
120 <artifactId>com.springsource.org.apache.activemq.web</artifactId>
121 </dependency>
122
123 <!-- Various -->
124 <dependency>
125 <groupId>org.aspectj</groupId>
126 <artifactId>com.springsource.org.aspectj.weaver</artifactId>
127 </dependency>
128 <dependency>
129 <groupId>net.sourceforge.jexcelapi</groupId>
130 <artifactId>com.springsource.jxl</artifactId>
131 </dependency>
132 <dependency>
133 <groupId>com.lowagie.text</groupId>
134 <artifactId>com.springsource.com.lowagie.text</artifactId>
135 </dependency>
136
137 </dependencies>
138 </project>