-
Notifications
You must be signed in to change notification settings - Fork 4
/
pom.xml
91 lines (78 loc) · 2.66 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
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
<?xml version="1.0" encoding="UTF-8"?>
<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>
<!-- PROJECT METADATA -->
<parent>
<groupId>com.lyndir.lhunath</groupId>
<artifactId>lyndir</artifactId>
<version>1.25</version>
</parent>
<name>Opal</name>
<description>Opal: Convenience libraries.</description>
<groupId>com.lyndir.lhunath.opal</groupId>
<artifactId>opal</artifactId>
<version>GIT-SNAPSHOT</version>
<packaging>pom</packaging>
<!-- CODE ACCESS -->
<scm>
<url>${scm.github.webbase}/Opal</url>
<connection>${scm.github.pubbase}/Opal.git</connection>
<developerConnection>${scm.github.devbase}/Opal.git</developerConnection>
<tag>HEAD</tag>
</scm>
<!-- DEFAULT PROPERTIES -->
<properties>
<release.version>1.7</release.version>
</properties>
<!-- ALL MODULES THAT ARE ENABLED BY DEFAULT -->
<modules>
<module>opal-crypto</module>
<module>opal-security</module>
<module>opal-jpa</module>
<module>opal-struct</module>
<module>opal-math</module>
<module>opal-network</module>
<module>opal-system</module>
<module>opal-wicket</module>
</modules>
<!-- BUILD CONFIGURATION -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<!-- REMOTE ARTIFACT REPOSITORIES -->
<repositories>
<repository>
<id>lyndir</id>
<name>Lyndir Repository</name>
<url>http://maven.lyndir.com</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</releases>
</repository>
</repositories>
<!-- PROFILES THAT MODIFY DEFAULTS -->
<profiles>
<profile>
<id>mod:ide</id>
<modules>
<module>opal-spike</module>
</modules>
</profile>
</profiles>
</project>