source: main/trunk/model-sites-dev/cambridge-museum/collect/waikato-independent/pre-import/EditableDatabaseTable/pom.xml@ 34493

Last change on this file since 34493 was 34493, checked in by davidb, 4 years ago

Base project for providing jquery/jquery-ui controlled interface to editing a database table

  • Property svn:executable set to *
File size: 1.5 KB
Line 
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/xsd/maven-4.0.0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <groupId>EditableDataTable</groupId>
4 <artifactId>EditableDataTable</artifactId>
5 <version>0.0.1-SNAPSHOT</version>
6 <packaging>war</packaging>
7 <name>EditableDataTable</name>
8 <description>Maven compilable versoin of EditableDataTable Servlet</description>
9
10 <dependencies>
11 <dependency>
12 <groupId>javax.servlet</groupId>
13 <artifactId>javax.servlet-api</artifactId>
14 <version>3.0.1</version>
15 <scope>provided</scope>
16 </dependency>
17 </dependencies>
18
19 <build>
20 <sourceDirectory>src</sourceDirectory>
21 <resources>
22 <resource>
23 <directory>src</directory>
24 <excludes>
25 <exclude>**/*.java</exclude>
26 </excludes>
27 </resource>
28 </resources>
29 <plugins>
30 <plugin>
31 <artifactId>maven-compiler-plugin</artifactId>
32 <version>3.3</version>
33 <configuration>
34 <source>1.6</source>
35 <target>1.6</target>
36 </configuration>
37 </plugin>
38 <plugin>
39 <artifactId>maven-war-plugin</artifactId>
40 <version>2.6</version>
41 <configuration>
42 <warSourceDirectory>WebContent</warSourceDirectory>
43 <failOnMissingWebXml>false</failOnMissingWebXml>
44 </configuration>
45 </plugin>
46 </plugins>
47 </build>
48</project>
Note: See TracBrowser for help on using the repository browser.