]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.server/pom.xml
Deactivate default log4j init
[gpl/argeo-slc.git] / org.argeo.slc.server / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6 <parent>
7 <groupId>org.argeo.slc</groupId>
8 <artifactId>argeo-slc</artifactId>
9 <version>0.9.3-SNAPSHOT</version>
10 <relativePath>../org.argeo.slc</relativePath>
11 </parent>
12 <artifactId>argeo-slc-server</artifactId>
13 <name>Argeo SLC Server</name>
14 <description>SLC Server</description>
15 <build>
16 <plugins>
17 <!-- Look to parent pom for inheritances -->
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-compiler-plugin</artifactId>
21 </plugin>
22 <plugin>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-source-plugin</artifactId>
25 </plugin>
26 <plugin>
27 <groupId>org.mortbay.jetty</groupId>
28 <artifactId>maven-jetty-plugin</artifactId>
29 <configuration>
30 <webAppSourceDirectory>
31 ../org.argeo.slc.webapp/src/main/webapp
32 </webAppSourceDirectory>
33 <systemProperties>
34 <systemProperty>
35 <!-- some library (JExcelAPi) include log4j config in their jar -->
36 <name>log4j.defaultInitOverride</name>
37 <value>true</value>
38 </systemProperty>
39 </systemProperties>
40 </configuration>
41 </plugin>
42 </plugins>
43 </build>
44 <dependencies>
45 <dependency>
46 <groupId>org.argeo.slc</groupId>
47 <artifactId>argeo-slc-core</artifactId>
48 <version>${project.version}</version>
49 <exclusions>
50 <exclusion>
51 <groupId>xerces</groupId>
52 <artifactId>xercesImpl</artifactId>
53 </exclusion>
54 </exclusions>
55 </dependency>
56 <dependency>
57 <groupId>org.argeo.slc</groupId>
58 <artifactId>argeo-slc-hibernate</artifactId>
59 <version>${project.version}</version>
60 <exclusions>
61 <exclusion>
62 <groupId>xerces</groupId>
63 <artifactId>xercesImpl</artifactId>
64 </exclusion>
65 </exclusions>
66 </dependency>
67
68 <dependency>
69 <groupId>javax.servlet</groupId>
70 <artifactId>jstl</artifactId>
71 </dependency>
72 <dependency>
73 <groupId>taglibs</groupId>
74 <artifactId>standard</artifactId>
75 </dependency>
76 <dependency>
77 <groupId>org.springframework.ws</groupId>
78 <artifactId>spring-ws-core</artifactId>
79 </dependency>
80 <dependency>
81 <groupId>org.springframework</groupId>
82 <artifactId>spring-webmvc</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>org.springframework</groupId>
86 <artifactId>spring-aop</artifactId>
87 </dependency>
88 <dependency>
89 <groupId>javax.servlet</groupId>
90 <artifactId>servlet-api</artifactId>
91 <scope>provided</scope>
92 </dependency>
93 <dependency>
94 <groupId>c3p0</groupId>
95 <artifactId>c3p0</artifactId>
96 </dependency>
97 <dependency>
98 <groupId>org.aspectj</groupId>
99 <artifactId>aspectjweaver</artifactId>
100 </dependency>
101 <dependency>
102 <groupId>net.sourceforge.jexcelapi</groupId>
103 <artifactId>jxl</artifactId>
104 <version>2.6.3</version>
105 </dependency>
106 <dependency>
107 <groupId>com.lowagie</groupId>
108 <artifactId>itext</artifactId>
109 <version>2.1.2</version>
110 </dependency>
111 </dependencies>
112 </project>