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

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

Moved to new sub-dir location

  • Property svn:executable set to *
File size: 3.3 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2
3<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <groupId>org.greenstone.accessdb</groupId>
8 <artifactId>waikato-independent-db</artifactId>
9 <version>1.0-SNAPSHOT</version>
10
11 <name>waikato-independent-db</name>
12 <url>http://www.greenstone.org</url>
13
14 <properties>
15 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16 <maven.compiler.source>1.7</maven.compiler.source>
17 <maven.compiler.target>1.7</maven.compiler.target>
18 </properties>
19
20 <dependencies>
21
22 <dependency>
23 <groupId>net.sf.ucanaccess</groupId>
24 <artifactId>ucanaccess</artifactId>
25 <version>5.0.0</version>
26 </dependency>
27
28 <dependency>
29 <groupId>junit</groupId>
30 <artifactId>junit</artifactId>
31 <version>4.11</version>
32 <scope>test</scope>
33 </dependency>
34 </dependencies>
35
36 <build>
37 <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
38 <plugins>
39 <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
40 <plugin>
41 <artifactId>maven-clean-plugin</artifactId>
42 <version>3.1.0</version>
43 </plugin>
44 <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
45 <plugin>
46 <artifactId>maven-resources-plugin</artifactId>
47 <version>3.0.2</version>
48 </plugin>
49 <plugin>
50 <artifactId>maven-compiler-plugin</artifactId>
51 <version>3.8.0</version>
52 </plugin>
53 <plugin>
54 <artifactId>maven-surefire-plugin</artifactId>
55 <version>2.22.1</version>
56 </plugin>
57 <plugin>
58 <artifactId>maven-jar-plugin</artifactId>
59 <version>3.0.2</version>
60 </plugin>
61
62 <plugin>
63 <artifactId>maven-assembly-plugin</artifactId>
64 <executions>
65 <execution>
66 <phase>package</phase>
67 <goals>
68 <goal>single</goal>
69 </goals>
70 </execution>
71 </executions>
72 <configuration>
73 <archive>
74 <manifest>
75 <mainClass>org.greenstone.accessdb.TableToCSV</mainClass>
76 </manifest>
77 </archive>
78 <descriptorRefs>
79 <descriptorRef>jar-with-dependencies</descriptorRef>
80 </descriptorRefs>
81 </configuration>
82 </plugin>
83
84
85 <plugin>
86 <artifactId>maven-install-plugin</artifactId>
87 <version>2.5.2</version>
88 </plugin>
89 <plugin>
90 <artifactId>maven-deploy-plugin</artifactId>
91 <version>2.8.2</version>
92 </plugin>
93 <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
94 <plugin>
95 <artifactId>maven-site-plugin</artifactId>
96 <version>3.7.1</version>
97 </plugin>
98 <plugin>
99 <artifactId>maven-project-info-reports-plugin</artifactId>
100 <version>3.0.0</version>
101 </plugin>
102 </plugins>
103 </pluginManagement>
104 </build>
105</project>
Note: See TracBrowser for help on using the repository browser.