]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/pom.xml
30b710e61be5955e75e0c6bd2b7bd6f77996b279
[gpl/argeo-slc.git] / org.argeo.slc.core / 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.6.0</version>
10 <relativePath>../org.argeo.slc</relativePath>
11 </parent>
12 <artifactId>argeo-slc-core</artifactId>
13 <name>Argeo SLC Core</name>
14 <description>SLC Core</description>
15 <scm>
16 <connection>
17 scm:svn:https://www.argeo.org/svn/slc/trunk/org.argeo.slc.core
18 </connection>
19 <url>
20 https://www.argeo.org/svn/slc/trunk/org.argeo.slc.core
21 </url>
22 </scm>
23 <build>
24 <plugins>
25 <!-- Look to parent pom for inheritances -->
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-compiler-plugin</artifactId>
29 </plugin>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-source-plugin</artifactId>
33 </plugin>
34 <plugin>
35 <groupId>org.apache.maven.plugins</groupId>
36 <artifactId>maven-javadoc-plugin</artifactId>
37 </plugin>
38 <plugin>
39 <groupId>org.apache.maven.plugins</groupId>
40 <artifactId>maven-assembly-plugin</artifactId>
41 <configuration>
42 <descriptors>
43 <descriptor>src/assembly/base.xml</descriptor>
44 </descriptors>
45 </configuration>
46 <executions>
47 <execution>
48 <id>assembly-base</id>
49 <phase>package</phase>
50 <inherited>false</inherited>
51 <goals>
52 <goal>single</goal>
53 </goals>
54 </execution>
55 </executions>
56 </plugin>
57 </plugins>
58 </build>
59 <dependencies>
60 <dependency>
61 <groupId>javax.transaction</groupId>
62 <artifactId>jta</artifactId>
63 </dependency>
64 <dependency>
65 <groupId>log4j</groupId>
66 <artifactId>log4j</artifactId>
67 </dependency>
68 <dependency>
69 <groupId>org.hibernate</groupId>
70 <artifactId>hibernate</artifactId>
71 </dependency>
72 <dependency>
73 <groupId>org.springframework</groupId>
74 <artifactId>spring</artifactId>
75 </dependency>
76 <dependency>
77 <groupId>org.apache.ant</groupId>
78 <artifactId>ant</artifactId>
79 </dependency>
80 <dependency>
81 <groupId>org.apache.commons</groupId>
82 <artifactId>commons-io</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>org.dbunit</groupId>
86 <artifactId>dbunit</artifactId>
87 </dependency>
88 <dependency>
89 <groupId>junit</groupId>
90 <artifactId>junit</artifactId>
91 </dependency>
92 <dependency>
93 <groupId>hsqldb</groupId>
94 <artifactId>hsqldb</artifactId>
95 </dependency>
96 </dependencies>
97 </project>