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

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

Evolution of code away from Company model to one that uses RecordHashmap to represent the rows coming out of the JDBC database

  • Property svn:executable set to *
File size: 2.1 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>EditableDatabaseTable</groupId>
4 <artifactId>EditableDatabaseTable</artifactId>
5 <version>0.0.1-SNAPSHOT</version>
6 <packaging>war</packaging>
7 <name>EditableDatabaseTable</name>
8 <description>Maven compilable versoin of EditableDatabaseTable Servlet</description>
9
10 <dependencies>
11 <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
12 <dependency>
13 <groupId>javax.servlet</groupId>
14 <artifactId>javax.servlet-api</artifactId>
15 <!-- 4.x is bleeding edge -->
16 <!-- <version>4.0.1</version> -->
17 <version>3.1.0</version>
18 <scope>provided</scope>
19 </dependency>
20
21 <!--
22 <dependency>
23 <groupId>javax.servlet</groupId>
24 <artifactId>javax.servlet-api</artifactId>
25 <version>3.0.1</version>
26 <scope>provided</scope>
27 </dependency>
28-->
29
30 <!-- https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc -->
31 <dependency>
32 <groupId>org.xerial</groupId>
33 <artifactId>sqlite-jdbc</artifactId>
34 <version>3.32.3.2</version>
35 </dependency>
36
37
38 </dependencies>
39
40 <build>
41 <sourceDirectory>src</sourceDirectory>
42 <resources>
43 <resource>
44 <directory>src</directory>
45 <excludes>
46 <exclude>**/*.java</exclude>
47 </excludes>
48 </resource>
49 </resources>
50 <plugins>
51 <plugin>
52 <artifactId>maven-compiler-plugin</artifactId>
53 <version>3.3</version>
54 <configuration>
55 <source>1.8</source>
56 <target>1.8</target>
57 </configuration>
58 </plugin>
59 <plugin>
60 <artifactId>maven-war-plugin</artifactId>
61 <version>2.6</version>
62 <configuration>
63 <warSourceDirectory>WebContent</warSourceDirectory>
64 <failOnMissingWebXml>false</failOnMissingWebXml>
65 </configuration>
66 </plugin>
67 </plugins>
68 </build>
69</project>
Note: See TracBrowser for help on using the repository browser.