This repository has been archived by the owner on Feb 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
57 lines (51 loc) · 2.09 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
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.voxelplugineering</groupId>
<artifactId>VoxelGunsmith</artifactId>
<version>2.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>VoxelGunsmith</name>
<description>Common API for VoxelSniper implementations.</description>
<url>http://voxelmodpack.com/</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.number>UNKNOWN</project.build.number>
<project.build.version>${project.version}</project.build.version>
</properties>
<profiles>
<profile>
<id>jenkins</id>
<activation>
<property>
<name>env.BUILD_NUMBER</name>
</property>
</activation>
<properties>
<project.build.number>${env.BUILD_NUMBER}</project.build.number>
<project.build.version>${project.version}-jnks${project.build.number}</project.build.version>
</properties>
</profile>
</profiles>
<distributionManagement>
<snapshotRepository>
<id>tvpt-repo</id>
<name>TVPT Snapshot Repository</name>
<url>http://vault.voxelmodpack.com/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>tvpt-repo</id>
<name>TVPT Release Repository</name>
<url>http://vault.voxelmodpack.com/content/repositories/releases</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
<scope>compile</scope>
<optional>false</optional>
</dependency>
</dependencies>
</project>