summaryrefslogtreecommitdiff
path: root/projects/net.wotonomy.web/pom.xml
blob: 77739e95184df74488c529f62044e2f64e9e04bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<project>
	<modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>net.wotonomy</groupId>
        <artifactId>wotonomy-all</artifactId>
        <version>1.0-alpha5-SNAPSHOT</version>
    </parent>
    <artifactId>wotonomy-web</artifactId>
	<name>Wotonomy - MVC Web Application Framework</name>
    <packaging>jar</packaging>
    <dependencies>
		<dependency>
			<groupId>${project.groupId}</groupId>
			<artifactId>wotonomy-persistence</artifactId>
        	<version>${project.version}</version>
    	</dependency>
		<dependency>
			<groupId>jetty</groupId>
			<artifactId>org.mortbay.jetty</artifactId>
			<version>5.1.9</version>
    	</dependency>
		<dependency>
			<groupId>org.mortbay.jetty</groupId>
			<artifactId>servlet-api-2.5</artifactId>
			<version>0PR</version>
    	</dependency>
		<dependency>
			<groupId>dom4j</groupId>
			<artifactId>dom4j</artifactId>
			<version>1.6.1</version>
			<exclusions>
				<exclusion>
					<groupId>pull-parser</groupId>
					<artifactId>pull-parser</artifactId>
				</exclusion>
				<exclusion>
					<groupId>xml-apis</groupId>
				    <artifactId>xml-apis</artifactId>
				</exclusion>				
			</exclusions>
    	</dependency>
   		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>3.8.1</version>
			<scope>test</scope>
    	</dependency>
    </dependencies>
	<reporting>
		<plugins>
			<plugin>
				<artifactId>maven-javadoc-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>surefire-report-maven-plugin</artifactId>
			</plugin>
			<!--
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>cobertura-maven-plugin</artifactId>
			</plugin>
			-->
		</plugins>
	</reporting>
	<scm>
		<connection>scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.web</connection>
		<developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.web</developerConnection>
	</scm>
</project>