]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
5dd781fbbb6c2543057de3c4986538d493539a39
[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 <configuration>
33 <instructions>
34 <Export-Package>
35 org.argeo.slc.*
36 </Export-Package>
37 </instructions>
38 </configuration>
39 </plugin>
40 <plugin>
41 <groupId>org.mortbay.jetty</groupId>
42 <artifactId>maven-jetty-plugin</artifactId>
43 <configuration>
44 <webAppSourceDirectory>
45 ../../org.argeo.slc.webapp/src/main/webapp
46 </webAppSourceDirectory>
47 <jettyConfig>
48 ../../org.argeo.slc.webapp/src/main/config/jetty/jetty-test.xml
49 </jettyConfig>
50 </configuration>
51 </plugin>
52 </plugins>
53 </build>
54 <dependencies>
55 <dependency>
56 <groupId>org.argeo.slc.runtime</groupId>
57 <artifactId>org.argeo.slc.support.hibernate</artifactId>
58 <version>${project.version}</version>
59 </dependency>
60 <dependency>
61 <groupId>org.argeo.slc.runtime</groupId>
62 <artifactId>org.argeo.slc.support.castor</artifactId>
63 <version>${project.version}</version>
64 </dependency>
65
66 <dependency>
67 <groupId>javax.servlet</groupId>
68 <artifactId>
69 com.springsource.javax.servlet.jsp.jstl
70 </artifactId>
71 </dependency>
72 <dependency>
73 <groupId>org.apache.taglibs</groupId>
74 <artifactId>
75 com.springsource.org.apache.taglibs.standard
76 </artifactId>
77 </dependency>
78 <dependency>
79 <groupId>javax.servlet</groupId>
80 <artifactId>com.springsource.javax.servlet</artifactId>
81 <scope>provided</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.springframework.ws</groupId>
85 <artifactId>org.springframework.ws</artifactId>
86 </dependency>
87 <dependency>
88 <groupId>org.springframework</groupId>
89 <artifactId>org.springframework.web.servlet</artifactId>
90 </dependency>
91 <dependency>
92 <groupId>org.springframework</groupId>
93 <artifactId>org.springframework.aop</artifactId>
94 </dependency>
95 <dependency>
96 <groupId>org.aspectj</groupId>
97 <artifactId>com.springsource.org.aspectj.weaver</artifactId>
98 </dependency>
99 <dependency>
100 <groupId>net.sourceforge.jexcelapi</groupId>
101 <artifactId>com.springsource.jxl</artifactId>
102 </dependency>
103 <dependency>
104 <groupId>com.lowagie.text</groupId>
105 <artifactId>com.springsource.com.lowagie.text</artifactId>
106 </dependency>
107 <dependency>
108 <groupId>javax.wsdl</groupId>
109 <artifactId>com.springsource.javax.wsdl</artifactId>
110 </dependency>
111
112 </dependencies>
113 </project>