-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
138 lines (124 loc) · 3.78 KB
/
Copy pathpom.xml
File metadata and controls
138 lines (124 loc) · 3.78 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<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/maven-v4_0_0.xsd">
<!-- =========================================== -->
<!-- Project information -->
<!-- =========================================== -->
<parent>
<groupId>edu.utah.further</groupId>
<artifactId>further</artifactId>
<version>1.4.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>xquery-open-artifacts</artifactId>
<version>1.4.2</version>
<packaging>jar</packaging>
<name>OpenFurther XQuery Artifacts</name>
<description>OpenFurther XQuery Artifacts</description>
<url>http://openfurther.org/</url>
<dependencies>
<!-- BaseX -->
<dependency>
<groupId>org.basex</groupId>
<artifactId>basex</artifactId>
<version>${basex.version}</version>
<optional>true</optional>
</dependency>
<!-- BaseX API, includes basex-xqj dep -->
<dependency>
<groupId>org.basex</groupId>
<artifactId>basex-api</artifactId>
<version>${basex.version}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
</exclusion>
<exclusion>
<groupId>com.ettrema</groupId>
<artifactId>milton-api</artifactId>
</exclusion>
</exclusions>
<optional>true</optional>
</dependency>
<dependency>
<groupId>edu.utah.further.core</groupId>
<artifactId>core-test</artifactId>
</dependency>
<dependency>
<groupId>edu.utah.further.ds</groupId>
<artifactId>ds-test</artifactId>
</dependency>
<dependency>
<groupId>edu.utah.further.mdr</groupId>
<artifactId>mdr-data</artifactId>
</dependency>
<dependency>
<groupId>edu.utah.further.mdr</groupId>
<artifactId>mdr-data-dao</artifactId>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>${xmlunit.version}</version>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>${hsqldb.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- ############################ -->
<!-- Surefire regression testing -->
<!-- ############################ -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
<configuration>
<!-- Run all tests within the same JVM that is separate from the main
JVM used to run maven. -->
<forkMode>once</forkMode>
<argLine />
<includes>
<!-- Integration test class naming pattern -->
<include>**/SKIPITest*.java</include>
</includes>
<excludes>
<!-- Anything that matches the following is a test suite run in an
IDE, or a test fixture, don't run it. -->
<exclude>**/*Fixture.java</exclude>
<exclude>**/Suite*.java</exclude>
<!-- Anonymous nested classes in test classes are not run. -->
<exclude>**/*$*</exclude>
<!-- Selenium integration tests. Require an X11 environment to run
and so skipped in the test phase and included in -->
<exclude>**/STest*.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>oracle</id>
<dependencies>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>${oracle.driver.version}</version>
</dependency>
</dependencies>
</profile>
<profile>
<id>mysql</id>
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.connector.java.version}</version>
</dependency>
</dependencies>
</profile>
</profiles>
</project>