forked from ijc8/DCPU-16
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
165 lines (159 loc) · 4.49 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<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.github.catageek</groupId>
<artifactId>dcpu-16</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>DCPU-16</name>
<repositories>
<repository>
<id>lib</id>
<url>file://${basedir}/lib</url>
</repository>
<repository>
<id>bukkit-repo</id>
<url>http://repo.bukkit.org/content/groups/public</url>
</repository>
<repository>
<id>Plugin Metrics</id>
<url>http://repo.mcstats.org/content/repositories/public</url>
</repository>
</repositories>
<distributionManagement>
<site>
<id>website</id>
<url>ftp://bytecart.catageek.info/dcpucraft/maven/</url>
</site>
<repository>
<id>repobc-rel</id>
<name>dcpucraft.catageek.info Releases</name>
<url>ftp://bytecart.catageek.info/bytecart/maven/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>repobc-snap</id>
<name>dcpucraft.catageek.info Snapshots</name>
<url>ftp://bytecart.catageek.info/dcpucraft/maven/repositories/snapshots/</url>
<uniqueVersion>false</uniqueVersion>
</snapshotRepository>
</distributionManagement>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.2</version>
<dependencies>
<dependency><!-- add support for ssh/scp -->
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ftp</artifactId>
<version>2.4</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>add-resource</id>
<phase>generate-resources</phase>
<goals>
<goal>add-resource</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>res</directory>
<targetPath>net/ian/DCPU-16/resources</targetPath>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.1</version>
<configuration>
<artifactSet>
<includes>
<include>org.mcstats.bukkit:metrics-lite:jar:*</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>org.mcstats.bukkit:metrics-lite:jar:R6</artifact>
<includes>
<include>org/mcstats/*</include>
</includes>
</filter>
</filters>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ftp</artifactId>
<version>2.4</version>
</extension>
</extensions>
<resources>
<resource>
<filtering>false</filtering>
<directory>${basedir}</directory>
<includes>
<include>plugin.yml</include>
<include>config.yml</include>
</includes>
</resource>
</resources>
</build>
<url>http://dev.bukkit.org/bukkit-plugins/DCPUCraft/</url>
<scm>
<connection>scm:git:git://github.com/catageek/DCPU-16.git</connection>
<developerConnection>scm:git:ssh://git@github.com/catageek/DCPU-16.git</developerConnection>
<url>https://github.com/catageek/DCPU-16</url>
</scm>
<issueManagement>
<url>https://github.com/catageek/DCPU-16/issues</url>
<system>gitHub issues</system>
</issueManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<bukkit.version>1.6.2-R0.1-SNAPSHOT</bukkit.version>
</properties>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>${bukkit.version}</version>
</dependency>
<dependency>
<groupId>org.mcstats.bukkit</groupId>
<artifactId>metrics-lite</artifactId>
<version>R6</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>