pom.xml (6203B) - raw
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3
4 <groupId>au.id.djc</groupId>
5 <artifactId>rdftemplate</artifactId>
6 <packaging>jar</packaging>
7 <version>1.5-SNAPSHOT</version>
8
9 <name>rdftemplate</name>
10 <url>http://code.djc.id.au/rdftemplate/</url>
11 <description><![CDATA[
12 Library for generating XML documents from RDF data using templates
13 ]]></description>
14 <inceptionYear>2009</inceptionYear>
15
16 <distributionManagement>
17 <repository>
18 <id>code.djc.id.au</id>
19 <name>code.djc.id.au Maven repository</name>
20 <url>dav:http://code.djc.id.au/maven2/</url>
21 </repository>
22 </distributionManagement>
23 <scm>
24 <url>https://github.com/danc86/rdftemplate/</url>
25 <connection>scm:git:git://github.com/danc86/rdftemplate.git</connection>
26 <developerConnection>scm:git:file://${project.basedir}</developerConnection>
27 </scm>
28 <developers>
29 <developer>
30 <name>Dan C</name>
31 <email>djc@djc.id.au</email>
32 <url>http://www.djc.id.au/</url>
33 </developer>
34 </developers>
35 <licenses>
36 <license>
37 <name>GPLv3</name>
38 <url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
39 </license>
40 </licenses>
41
42 <repositories>
43 <repository>
44 <id>code.djc.id.au</id>
45 <url>http://code.djc.id.au/maven2/</url>
46 <releases><enabled>true</enabled></releases>
47 <snapshots><enabled>false</enabled></snapshots>
48 </repository>
49 </repositories>
50
51 <properties>
52 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
53 <spring.version>3.1.1.RELEASE</spring.version>
54 </properties>
55
56 <build>
57 <extensions>
58 <extension>
59 <groupId>org.apache.maven.wagon</groupId>
60 <artifactId>wagon-webdav-jackrabbit</artifactId>
61 <version>2.2</version>
62 </extension>
63 </extensions>
64 <plugins>
65 <plugin>
66 <artifactId>maven-compiler-plugin</artifactId>
67 <version>2.3.2</version>
68 <configuration>
69 <source>1.7</source>
70 <target>1.7</target>
71 </configuration>
72 </plugin>
73 <plugin>
74 <groupId>org.antlr</groupId>
75 <artifactId>antlr3-maven-plugin</artifactId>
76 <version>3.4</version>
77 <executions>
78 <execution>
79 <goals>
80 <goal>antlr</goal>
81 </goals>
82 </execution>
83 </executions>
84 </plugin>
85 <plugin>
86 <artifactId>maven-javadoc-plugin</artifactId>
87 <version>2.8.1</version>
88 <configuration>
89 <links>
90 <link>http://incubator.apache.org/jena/documentation/javadoc/jena/</link>
91 </links>
92 </configuration>
93 </plugin>
94 </plugins>
95 </build>
96
97 <dependencies>
98 <dependency>
99 <groupId>junit</groupId>
100 <artifactId>junit</artifactId>
101 <version>4.10</version>
102 <scope>test</scope>
103 </dependency>
104 <dependency>
105 <groupId>commons-lang</groupId>
106 <artifactId>commons-lang</artifactId>
107 <version>2.6</version>
108 </dependency>
109 <dependency>
110 <groupId>net.sourceforge.collections</groupId>
111 <artifactId>collections-generic</artifactId>
112 <version>4.01</version>
113 </dependency>
114 <dependency>
115 <groupId>commons-beanutils</groupId>
116 <artifactId>commons-beanutils</artifactId>
117 <version>1.8.3</version>
118 <scope>test</scope>
119 </dependency>
120 <dependency>
121 <groupId>org.antlr</groupId>
122 <artifactId>antlr-runtime</artifactId>
123 <version>3.4</version>
124 </dependency>
125 <dependency>
126 <groupId>au.id.djc.jena</groupId>
127 <artifactId>jena-core</artifactId>
128 <version>2.7.0.1</version>
129 <exclusions>
130 <exclusion>
131 <groupId>org.slf4j</groupId>
132 <artifactId>slf4j-log4j12</artifactId>
133 </exclusion>
134 <exclusion>
135 <groupId>log4j</groupId>
136 <artifactId>log4j</artifactId>
137 </exclusion>
138 </exclusions>
139 </dependency>
140 <dependency>
141 <groupId>joda-time</groupId>
142 <artifactId>joda-time</artifactId>
143 <version>2.1</version>
144 </dependency>
145 <dependency>
146 <groupId>org.springframework</groupId>
147 <artifactId>spring-context</artifactId>
148 <version>${spring.version}</version>
149 <optional>true</optional>
150 </dependency>
151 <dependency>
152 <groupId>org.springframework</groupId>
153 <artifactId>spring-webmvc</artifactId>
154 <version>${spring.version}</version>
155 <optional>true</optional>
156 </dependency>
157 <dependency>
158 <groupId>javax.servlet</groupId>
159 <artifactId>servlet-api</artifactId>
160 <version>2.5</version>
161 <optional>true</optional>
162 </dependency>
163 <dependency>
164 <groupId>au.id.djc</groupId>
165 <artifactId>jena-spring</artifactId>
166 <version>1.2.1</version>
167 <optional>true</optional>
168 </dependency>
169 <!-- JDK6 StAX implementation sucks, Woodstox 4 sucks, ... -->
170 <dependency>
171 <groupId>org.codehaus.woodstox</groupId>
172 <artifactId>wstx-asl</artifactId>
173 <version>3.2.9</version>
174 <scope>runtime</scope>
175 </dependency>
176 </dependencies>
177
178 </project>