Skip to content

Commit 3886dc0

Browse files
Update POM
* Update groupId * Update version * Move dependency version numbers into properties * Add distribution management section for Artifactory
1 parent 9d6d242 commit 3886dc0

File tree

1 file changed

+24
-8
lines changed

1 file changed

+24
-8
lines changed

pom.xml

+24-8
Original file line numberDiff line numberDiff line change
@@ -2,46 +2,62 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<groupId>markbroadhead.com</groupId>
5+
<groupId>com.broadheadenterprises</groupId>
66
<artifactId>MinecraftModManager</artifactId>
7-
<version>1.0-SNAPSHOT</version>
7+
<version>1.0.0-SNAPSHOT</version>
88
<packaging>jar</packaging>
99

1010
<name>MinecraftModManager</name>
11-
<url>http://maven.apache.org</url>
1211

1312
<properties>
1413
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1514
<maven.compiler.source>1.8</maven.compiler.source>
1615
<maven.compiler.target>1.8</maven.compiler.target>
16+
<commons-lang3.version>3.5</commons-lang3.version>
17+
<log4j-api.version>2.8.1</log4j-api.version>
18+
<yamlbeans.version>1.11</yamlbeans.version>
19+
<junit.version>3.8.1</junit.version>
1720
</properties>
1821

1922
<dependencies>
2023
<dependency>
2124
<groupId>org.apache.commons</groupId>
2225
<artifactId>commons-lang3</artifactId>
23-
<version>3.5</version>
26+
<version>${commons-lang3.version}</version>
2427
</dependency>
2528
<dependency>
2629
<groupId>org.apache.logging.log4j</groupId>
2730
<artifactId>log4j-api</artifactId>
28-
<version>2.8.1</version>
31+
<version>${log4j-api.version}</version>
2932
</dependency>
3033
<dependency>
3134
<groupId>org.apache.logging.log4j</groupId>
3235
<artifactId>log4j-core</artifactId>
33-
<version>2.8.1</version>
36+
<version>${log4j-api.version}</version>
3437
</dependency>
3538
<dependency>
3639
<groupId>com.esotericsoftware.yamlbeans</groupId>
3740
<artifactId>yamlbeans</artifactId>
38-
<version>1.11</version>
41+
<version>${yamlbeans.version}</version>
3942
</dependency>
4043
<dependency>
4144
<groupId>junit</groupId>
4245
<artifactId>junit</artifactId>
43-
<version>3.8.1</version>
46+
<version>${junit.version}</version>
4447
<scope>test</scope>
4548
</dependency>
4649
</dependencies>
50+
<distributionManagement>
51+
<repository>
52+
<id>artifactory-releases</id>
53+
<name>artifactory.markbroadhead.com-releases</name>
54+
<url>http://artifactory.markbroadhead.com:8081/artifactory/libs-release-local</url>
55+
</repository>
56+
<snapshotRepository>
57+
<id>artifactory-snapshots</id>
58+
<name>artifactory.markbroadhead.com-snapshots</name>
59+
<url>http://artifactory.markbroadhead.com:8081/artifactory/libs-snapshot-local</url>
60+
</snapshotRepository>
61+
</distributionManagement>
62+
4763
</project>

0 commit comments

Comments
 (0)