|
2 | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
4 | 4 |
|
5 |
| - <groupId>markbroadhead.com</groupId> |
| 5 | + <groupId>com.broadheadenterprises</groupId> |
6 | 6 | <artifactId>MinecraftModManager</artifactId>
|
7 |
| - <version>1.0-SNAPSHOT</version> |
| 7 | + <version>1.0.0-SNAPSHOT</version> |
8 | 8 | <packaging>jar</packaging>
|
9 | 9 |
|
10 | 10 | <name>MinecraftModManager</name>
|
11 |
| - <url>http://maven.apache.org</url> |
12 | 11 |
|
13 | 12 | <properties>
|
14 | 13 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
15 | 14 | <maven.compiler.source>1.8</maven.compiler.source>
|
16 | 15 | <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> |
17 | 20 | </properties>
|
18 | 21 |
|
19 | 22 | <dependencies>
|
20 | 23 | <dependency>
|
21 | 24 | <groupId>org.apache.commons</groupId>
|
22 | 25 | <artifactId>commons-lang3</artifactId>
|
23 |
| - <version>3.5</version> |
| 26 | + <version>${commons-lang3.version}</version> |
24 | 27 | </dependency>
|
25 | 28 | <dependency>
|
26 | 29 | <groupId>org.apache.logging.log4j</groupId>
|
27 | 30 | <artifactId>log4j-api</artifactId>
|
28 |
| - <version>2.8.1</version> |
| 31 | + <version>${log4j-api.version}</version> |
29 | 32 | </dependency>
|
30 | 33 | <dependency>
|
31 | 34 | <groupId>org.apache.logging.log4j</groupId>
|
32 | 35 | <artifactId>log4j-core</artifactId>
|
33 |
| - <version>2.8.1</version> |
| 36 | + <version>${log4j-api.version}</version> |
34 | 37 | </dependency>
|
35 | 38 | <dependency>
|
36 | 39 | <groupId>com.esotericsoftware.yamlbeans</groupId>
|
37 | 40 | <artifactId>yamlbeans</artifactId>
|
38 |
| - <version>1.11</version> |
| 41 | + <version>${yamlbeans.version}</version> |
39 | 42 | </dependency>
|
40 | 43 | <dependency>
|
41 | 44 | <groupId>junit</groupId>
|
42 | 45 | <artifactId>junit</artifactId>
|
43 |
| - <version>3.8.1</version> |
| 46 | + <version>${junit.version}</version> |
44 | 47 | <scope>test</scope>
|
45 | 48 | </dependency>
|
46 | 49 | </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 | + |
47 | 63 | </project>
|
0 commit comments