1
1
<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" >
2
- <modelVersion >4.0.0</modelVersion >
3
- <groupId >com.cypherx</groupId >
4
- <artifactId >xAuth</artifactId >
5
- <version >2.0.9</version >
6
- <name >xAuth</name >
7
-
8
- <properties >
9
- <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
10
- </properties >
11
-
12
- <repositories >
13
- <repository >
14
- <id >bukkit-repo</id >
15
- <url >http://repo.bukkit.org/content/groups/public</url >
16
- </repository >
17
- <!-- <repository>
18
- <id>spout-repo</id>
19
- <url>http://nexus.spout.org/content/groups/public</url>
20
- </repository>
21
- <repository>
22
- <id>pex-repo</id>
23
- <url>http://repo.tehkode.ru/repository/bukkit-plugins</url>
24
- </repository>-->
25
- </repositories >
26
-
27
- <dependencies >
28
- <dependency >
29
- <groupId >org.bukkit</groupId >
30
- <artifactId >bukkit</artifactId >
31
- <version >1.2.5-R1.2</version >
32
- </dependency >
33
- <!-- <dependency>
34
- <groupId>ru.tehkode</groupId>
35
- <artifactId>PermissionsEx</artifactId>
36
- <version>1.20-SNAPSHOT</version>
37
- </dependency>
38
- <dependency>
39
- <groupId>de.bananaco</groupId>
40
- <artifactId>bPermissions</artifactId>
41
- <version>dev-SNAPSHOT</version>
42
- </dependency>-->
43
- </dependencies >
44
-
45
- <build >
46
- <resources >
47
- <resource >
48
- <targetPath >.</targetPath >
49
- <directory >${basedir} /src/main/resources/</directory >
50
- <filtering >true</filtering >
51
- <includes >
52
- <include >config.yml</include >
53
- <include >messages.yml</include >
54
- <include >plugin.yml</include >
55
- </includes >
56
- </resource >
57
- <resource >
58
- <targetPath >sql</targetPath >
59
- <directory >${basedir} /src/main/resources/sql/</directory >
60
- <filtering >true</filtering >
61
- <includes >
62
- <include >**/*.sql</include >
63
- </includes >
64
- </resource >
65
- </resources >
66
-
67
- <plugins >
68
- <plugin >
69
- <groupId >org.apache.maven.plugins</groupId >
70
- <artifactId >maven-compiler-plugin</artifactId >
71
- <version >2.3.2</version >
72
- <configuration >
73
- <showDeprecation >true</showDeprecation >
74
- </configuration >
75
- </plugin >
76
- <plugin >
77
- <groupId >org.apache.maven.plugins</groupId >
78
- <artifactId >maven-jar-plugin</artifactId >
79
- <version >2.4</version >
80
- <configuration >
81
- <archive >
82
- <manifestEntries >
83
- <Class-Path >../lib/h2-1.3.164.jar</Class-Path >
84
- </manifestEntries >
85
- </archive >
86
- </configuration >
87
- </plugin >
88
- </plugins >
89
- </build >
2
+ <modelVersion >4.0.0</modelVersion >
3
+ <groupId >de.luricos.bukkit</groupId >
4
+ <version >2.0.12</version >
5
+ <artifactId >xAuth</artifactId >
6
+ <packaging >jar</packaging >
7
+ <name >xAuth</name >
8
+ <properties >
9
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
10
+ </properties >
11
+ <url >https://github.com/lycano/xAuth</url >
12
+ <repositories >
13
+ <repository >
14
+ <id >luricos.de-repo</id >
15
+ <url >http://repo.luricos.de/bukkit-plugins/</url >
16
+ </repository >
17
+ </repositories >
18
+ <build >
19
+ <finalName >${project.artifactId} </finalName >
20
+ <plugins >
21
+ <plugin >
22
+ <groupId >org.apache.maven.plugins</groupId >
23
+ <artifactId >maven-compiler-plugin</artifactId >
24
+ <version >2.3.2</version >
25
+ <configuration >
26
+ <source >1.6</source >
27
+ <target >1.6</target >
28
+ </configuration >
29
+ </plugin >
30
+ <plugin >
31
+ <groupId >org.apache.maven.plugins</groupId >
32
+ <artifactId >maven-jar-plugin</artifactId >
33
+ <version >2.3.1</version >
34
+ <configuration >
35
+ <archive >
36
+ <manifestFile >src/main/resources/META-INF/MANIFEST.MF</manifestFile >
37
+ </archive >
38
+ </configuration >
39
+ </plugin >
40
+ <plugin >
41
+ <groupId >org.apache.maven.plugins</groupId >
42
+ <artifactId >maven-assembly-plugin</artifactId >
43
+ <configuration >
44
+ <descriptors >
45
+ <descriptor >src/main/assembly/package.xml</descriptor >
46
+ </descriptors >
47
+ </configuration >
48
+ <version >2.2</version >
49
+ <executions >
50
+ <execution >
51
+ <id >make-assembly</id >
52
+ <phase >package</phase >
53
+ <goals >
54
+ <goal >single</goal >
55
+ </goals >
56
+ </execution >
57
+ </executions >
58
+ </plugin >
59
+ </plugins >
60
+ </build >
61
+ <dependencies >
62
+ <dependency >
63
+ <groupId >org.bukkit</groupId >
64
+ <artifactId >bukkit</artifactId >
65
+ <version >1.2.5-R5.0</version >
66
+ <type >jar</type >
67
+ <scope >compile</scope >
68
+ </dependency >
69
+ <dependency >
70
+ <groupId >ru.tehkode</groupId >
71
+ <artifactId >PermissionsEx</artifactId >
72
+ <version >[1.8,)</version >
73
+ <type >jar</type >
74
+ <scope >compile</scope >
75
+ </dependency >
76
+ </dependencies >
77
+ <dependencyManagement >
78
+ <dependencies >
79
+ </dependencies >
80
+ </dependencyManagement >
90
81
</project >
0 commit comments