-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
37 lines (37 loc) · 1.23 KB
/
pom.xml
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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.pescuma</groupId>
<artifactId>mergeservices</artifactId>
<version>0.1a</version>
<properties>
<maven.compiler.release>8</maven.compiler.release>
<!-- For broad compatibility reasons, keep the ant version as low as possible -->
<ant.version>1.7.0</ant.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-launcher</artifactId>
<version>${ant.version}</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>${ant.version}</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<release>7</release>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>