-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
116 lines (110 loc) · 4.02 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<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.drevelopment.amplechatbot</groupId>
<artifactId>amplechatbot-parent</artifactId>
<name>AmpleChatBot</name>
<url>https://github.com/Drepic26/AmpleChatBot2</url>
<packaging>pom</packaging>
<version>2.0.1</version>
<properties>
<minecraft.version>1.8.1</minecraft.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<ciManagement>
<system>Travis</system>
<url>https://travis-ci.org/Drepic26/AmpleChatBot2</url>
</ciManagement>
<scm>
<developerConnection>scm:git:[email protected]:Drepic26/AmpleChatBot2.git</developerConnection>
<connection>scm:git:git://github.com:Drepic26/AmpleChatBot2.git</connection>
<url>https://github.com/Drepic26/AmpleChatBot2</url>
</scm>
<modules>
<module>api</module>
<module>core</module>
<module>mods/bukkit</module>
<module>mods/universal</module>
</modules>
<build>
<defaultGoal>clean package</defaultGoal>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<echo>Building AmpleChatBot Version=[${project.version}] MC=[${minecraft.version}]</echo>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
<manifestEntries>
<Minecraft-Version>${minecraft.version}</Minecraft-Version>
<Git-Branch>${git.branch}</Git-Branch>
<Git-Describe>${git.describe}</Git-Describe>
<Git-Commit-Id>${git.commit.id}</Git-Commit-Id>
<Git-Commit-Time>${git.commit.time}</Git-Commit-Time>
<Build-Time>${git.build.time}</Build-Time>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>2.1.3</version>
<executions>
<execution>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<prefix>git</prefix>
<dateFormat>yyyy-MM-dd '@' HH:mm:ss z</dateFormat>
<verbose>false</verbose>
<dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
<skipPoms>true</skipPoms>
<generateGitPropertiesFile>true</generateGitPropertiesFile>
<generateGitPropertiesFilename>src/main/resources/git.properties</generateGitPropertiesFilename>
<failOnNoGitDirectory>false</failOnNoGitDirectory>
<gitDescribe>
<skip>false</skip>
<always>false</always>
<abbrev>7</abbrev>
<dirty>-dirty</dirty>
<forceLongFormat>false</forceLongFormat>
</gitDescribe>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>drevelopment.releases</id>
<name>Drevelopment releases</name>
<url>http://repo.drevelopment.com/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>drevelopment.snapshots</id>
<name>Drevelopment snapshots</name>
<url>http://repo.drevelopment.com/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>