-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
32 lines (25 loc) · 744 Bytes
/
pom.xml
File metadata and controls
32 lines (25 loc) · 744 Bytes
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
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.moss.org.icepdf</groupId>
<artifactId>icepdf-pom</artifactId>
<version>trunk-SNAPSHOT</version>
<name>${pom.artifactId}</name>
<packaging>pom</packaging>
<modules>
<module>core</module>
<module>viewer</module>
</modules>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<target>1.5</target>
<source>1.5</source>
<debug>true</debug>
</configuration>
</plugin>
</plugins>
</build>
</project>