Skip to content

Commit f3310d6

Browse files
committedAug 12, 2012
v2.0.12 (1.2.5-R5.0)
* implemented pluggable permission backend * fixed classpath for h2 driver * added debug command
1 parent ec01d98 commit f3310d6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+5026
-3437
lines changed
 

‎.gitignore

+32-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,34 @@
1+
# Eclipse stuff
2+
/.classpath
3+
/.project
14
/.settings
2-
/lib
3-
/release
4-
/bin
5+
6+
# netbeans
7+
/nbproject
8+
9+
# we use maven!
10+
/build.xml
11+
12+
# maven
513
/target
6-
/.classpath
7-
/.project
14+
15+
# vim
16+
.*.sw[a-p]
17+
18+
# various other potential build files
19+
/build
20+
/bin
21+
/dist
22+
/manifest.mf
23+
24+
# Mac filesystem dust
25+
/.DS_Store
26+
27+
/TODO
28+
/TODO.*
29+
30+
# intellij
31+
*.iml
32+
*.ipr
33+
*.iws
34+
.idea/

‎pom.xml

+79-88
Original file line numberDiff line numberDiff line change
@@ -1,90 +1,81 @@
11
<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>
9081
</project>

0 commit comments

Comments
 (0)
Please sign in to comment.