]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
9526558e87f4d3c3f3cb677689c8143c1134af88
[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</groupId>
6 <artifactId>argeo-slc</artifactId>
7 <version>0.11.2-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 </configuration>
53 </plugin>
54 </plugins>
55 </build>
56 <dependencies>
57 <dependency>
58 <groupId>org.argeo.slc.runtime</groupId>
59 <artifactId>org.argeo.slc.support.hibernate</artifactId>
60 <version>${project.version}</version>
61 </dependency>
62 <dependency>
63 <groupId>org.argeo.slc.runtime</groupId>
64 <artifactId>org.argeo.slc.support.castor</artifactId>
65 <version>${project.version}</version>
66 </dependency>
67
68 <dependency>
69 <groupId>javax.servlet</groupId>
70 <artifactId>
71 com.springsource.javax.servlet.jsp.jstl
72 </artifactId>
73 </dependency>
74 <dependency>
75 <groupId>org.apache.taglibs</groupId>
76 <artifactId>
77 com.springsource.org.apache.taglibs.standard
78 </artifactId>
79 </dependency>
80 <dependency>
81 <groupId>javax.servlet</groupId>
82 <artifactId>com.springsource.javax.servlet</artifactId>
83 <scope>provided</scope>
84 </dependency>
85 <dependency>
86 <groupId>org.springframework.ws</groupId>
87 <artifactId>org.springframework.ws</artifactId>
88 </dependency>
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 <dependency>
98 <groupId>org.aspectj</groupId>
99 <artifactId>com.springsource.org.aspectj.weaver</artifactId>
100 </dependency>
101 <dependency>
102 <groupId>net.sourceforge.jexcelapi</groupId>
103 <artifactId>com.springsource.jxl</artifactId>
104 </dependency>
105 <dependency>
106 <groupId>com.lowagie.text</groupId>
107 <artifactId>com.springsource.com.lowagie.text</artifactId>
108 </dependency>
109 <dependency>
110 <groupId>javax.wsdl</groupId>
111 <artifactId>com.springsource.javax.wsdl</artifactId>
112 </dependency>
113
114 </dependencies>
115 </project>