forked from blackberry/WebWorks-TabletOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
65 lines (56 loc) · 1.61 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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>net.rim.snarf</groupId>
<artifactId>snarf</artifactId>
<version>1.0.0.1</version>
<name>${project.artifactId}-${project.version}</name>
<packaging>pom</packaging>
<modules>
<module>packager</module>
<module>framework</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<profiles>
<profile>
<id>MakeInstaller</id>
<activation>
<file>
<exists>${basedir}/installer/pom.xml</exists>
</file>
</activation>
<modules>
<module>installer</module>
</modules>
</profile>
<profile>
<id>MakeZip</id>
<activation>
<file>
<missing>${basedir}/installer/pom.xml</missing>
</file>
</activation>
<modules>
<module>archiver</module>
</modules>
</profile>
</profiles>
<distributionManagement>
<repository>
<id>staging</id>
<name>Rim Internal Releases</name>
<url>http://maven.rim.net/nexus/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>waterloo-snapshots</id>
<name>Rim Internal Snapshots</name>
<url>http://maven.rim.net/nexus/content/repositories/waterloo-snapshots</url>
</snapshotRepository>
<site>
<id>rim-dev-site</id>
<name>Rim Internal Site</name>
<url>dav:http://maven.rim.net:8081/nexus/content/sites/rim-dev-site/${project.groupId}</url>
</site>
</distributionManagement>
</project>