Mercurial > dive4elements > gnv-client
comparison gnv/pom.xml @ 6:6592580ae823
Added Further Dependencies and Plugins to pom.xml.
Remove outdated Files
gnv/trunk@75 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Fri, 11 Sep 2009 15:25:43 +0000 |
parents | 87bd9d0befc7 |
children | fe6a64545552 |
comparison
equal
deleted
inserted
replaced
5:4027821ca8d7 | 6:6592580ae823 |
---|---|
3 <modelVersion>4.0.0</modelVersion> | 3 <modelVersion>4.0.0</modelVersion> |
4 <groupId>de.intevation.bsh</groupId> | 4 <groupId>de.intevation.bsh</groupId> |
5 <artifactId>gnv</artifactId> | 5 <artifactId>gnv</artifactId> |
6 <packaging>war</packaging> | 6 <packaging>war</packaging> |
7 <version>1.0-SNAPSHOT</version> | 7 <version>1.0-SNAPSHOT</version> |
8 <name>gnv Maven Webapp</name> | 8 <name>gnv</name> |
9 <url>http://maven.apache.org</url> | 9 <url>http://maven.apache.org</url> |
10 <dependencies> | 10 <dependencies> |
11 <dependency> | 11 <dependency> |
12 <groupId>junit</groupId> | 12 <groupId>junit</groupId> |
13 <artifactId>junit</artifactId> | 13 <artifactId>junit</artifactId> |
14 <version>3.8.1</version> | 14 <version>3.8.1</version> |
15 <scope>test</scope> | 15 <scope>test</scope> |
16 </dependency> | 16 </dependency> |
17 <dependency> | |
18 <groupId>org.restlet</groupId> | |
19 <artifactId>org.restlet</artifactId> | |
20 <version>2.0-M3</version> | |
21 </dependency> | |
22 <dependency> | |
23 <groupId>org.restlet</groupId> | |
24 <artifactId>org.restlet.ext.xml</artifactId> | |
25 <version>2.0-M3</version> | |
26 </dependency> | |
27 <dependency> | |
28 <groupId>tomcat</groupId> | |
29 <artifactId>servlet-api</artifactId> | |
30 <version>5.5.15</version> | |
31 <scope>provided</scope> | |
32 </dependency> | |
33 <dependency> | |
34 <groupId>struts</groupId> | |
35 <artifactId>struts-el</artifactId> | |
36 <version>1.2.9</version> | |
37 <scope>runtime</scope> | |
38 </dependency> | |
39 <dependency> | |
40 <groupId>struts</groupId> | |
41 <artifactId>struts</artifactId> | |
42 <version>1.2.9</version> | |
43 <scope>compile</scope> | |
44 </dependency> | |
45 <dependency> | |
46 <groupId>log4j</groupId> | |
47 <artifactId>log4j</artifactId> | |
48 <version>[1.2,)</version> | |
49 </dependency> | |
17 </dependencies> | 50 </dependencies> |
18 <build> | 51 <build> |
19 <finalName>gnv</finalName> | 52 <finalName>gnv</finalName> |
53 <plugins> | |
54 <plugin> | |
55 <artifactId>maven-compiler-plugin</artifactId> | |
56 <configuration> | |
57 <source>1.5</source> | |
58 <target>1.5</target> | |
59 </configuration> | |
60 </plugin> | |
61 <plugin> | |
62 <artifactId>maven-war-plugin</artifactId> | |
63 <configuration> | |
64 <webResources> | |
65 <resource> | |
66 <directory>${basedir}/src/main/webapp</directory> | |
67 <excludes> | |
68 <exclude>images/</exclude> | |
69 <exclude>WEB-INF/jsp/application/</exclude> | |
70 </excludes> | |
71 </resource> | |
72 </webResources> | |
73 </configuration> | |
74 </plugin> | |
75 <plugin> | |
76 <groupId>org.codehaus.mojo</groupId> | |
77 <artifactId>xmlbeans-maven-plugin</artifactId> | |
78 <version>2.3.0</version> | |
79 <executions> | |
80 <execution> | |
81 <goals> | |
82 <goal>xmlbeans</goal> | |
83 </goals> | |
84 </execution> | |
85 </executions> | |
86 <inherited>true</inherited> | |
87 <configuration> | |
88 <schemaDirectory>src/main/xsd</schemaDirectory> | |
89 </configuration> | |
90 </plugin> | |
91 <plugin> | |
92 <groupId>org.apache.maven.plugins</groupId> | |
93 <artifactId>maven-jar-plugin</artifactId> | |
94 <version>2.2</version> | |
95 <configuration> | |
96 <archive> | |
97 <manifest> | |
98 <mainClass>de.intevation.artifactdatabase.App</mainClass> | |
99 </manifest> | |
100 </archive> | |
101 </configuration> | |
102 </plugin> | |
103 <plugin> | |
104 <groupId>org.codehaus.mojo</groupId> | |
105 <artifactId>exec-maven-plugin</artifactId> | |
106 <version>1.1</version> | |
107 <configuration> | |
108 <executable>java</executable> | |
109 <arguments> | |
110 <argument>-classpath</argument> | |
111 <classpath/> | |
112 <argument>de.intevation.artifactdatabase.App</argument> | |
113 </arguments> | |
114 </configuration> | |
115 </plugin> | |
116 | |
117 <plugin> | |
118 <groupId>org.apache.maven.plugins</groupId> | |
119 <artifactId>maven-eclipse-plugin</artifactId> | |
120 <configuration> | |
121 <m2eclipse>true</m2eclipse> | |
122 <downloadSources>true</downloadSources> | |
123 <wtpversion>1.5</wtpversion> | |
124 </configuration> | |
125 </plugin> | |
126 </plugins> | |
20 </build> | 127 </build> |
21 </project> | 128 </project> |