1
0
mirror of https://github.com/moparisthebest/xAuth synced 2024-12-22 07:08:51 -05:00

Maven stuff again

This commit is contained in:
CypherX 2011-04-21 15:18:29 -04:00
parent e1114e8d4c
commit 1c45f1d496
3 changed files with 61 additions and 61 deletions

6
.gitignore vendored
View File

@ -1,5 +1,5 @@
/.classpath
/.project
/.settings /.settings
/bin /bin
/target /target
/.classpath
/.project

View File

@ -1 +1 @@
Will write this when I have time. Will write when I have time.

114
pom.xml
View File

@ -1,59 +1,59 @@
<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"> <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> <modelVersion>4.0.0</modelVersion>
<groupId>com.cypherx</groupId> <groupId>com.cypherx</groupId>
<artifactId>xauth</artifactId> <artifactId>xauth</artifactId>
<version>1.2.2</version> <version>1.2.2</version>
<name>xAuth</name> <name>xAuth</name>
<url>http://www.bukkit.org</url> <properties>
<dependencies> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<dependency> </properties>
<groupId>org.bukkit</groupId> <url>http://www.bukkit.org</url>
<artifactId>bukkit</artifactId> <dependencies>
<version>0.0.1-SNAPSHOT</version> <dependency>
<type>jar</type> <groupId>org.bukkit</groupId>
<scope>compile</scope> <artifactId>bukkit</artifactId>
</dependency> <version>0.0.1-SNAPSHOT</version>
<dependency> <type>jar</type>
<groupId>org.bukkit</groupId> <scope>compile</scope>
<artifactId>craftbukkit</artifactId> </dependency>
<version>0.0.1-SNAPSHOT</version> <dependency>
<type>jar</type> <groupId>org.bukkit</groupId>
<scope>compile</scope> <artifactId>craftbukkit</artifactId>
</dependency> <version>0.0.1-SNAPSHOT</version>
<dependency> <type>jar</type>
<groupId>com.nijikokun.bukkit</groupId> <scope>compile</scope>
<artifactId>Permissions</artifactId> </dependency>
<version>2.7</version> <dependency>
<type>jar</type> <groupId>com.nijikokun.bukkit</groupId>
<scope>compile</scope> <artifactId>Permissions</artifactId>
</dependency> <version>2.7</version>
</dependencies> <type>jar</type>
<build> <scope>compile</scope>
<finalName>${project.name}</finalName> </dependency>
<plugins> </dependencies>
<plugin> <build>
<groupId>org.apache.maven.plugins</groupId> <finalName>${project.name}</finalName>
<artifactId>maven-compiler-plugin</artifactId> <plugins>
<version>2.3.2</version> <plugin>
<configuration> <groupId>org.apache.maven.plugins</groupId>
<source>1.6</source> <artifactId>maven-compiler-plugin</artifactId>
<target>1.6</target> <version>2.3.2</version>
<encoding>UTF-8</encoding> <configuration>
</configuration> <source>1.6</source>
</plugin> <target>1.6</target>
<plugin> <encoding>UTF-8</encoding>
<groupId>org.apache.maven.plugins</groupId> </configuration>
<artifactId>maven-resources-plugin</artifactId> </plugin>
<version>2.4.3</version> <plugin>
<configuration> <groupId>org.apache.maven.plugins</groupId>
<encoding>UTF-8</encoding> <artifactId>maven-jar-plugin</artifactId>
</configuration> <version>2.3.1</version>
</plugin> <executions>
<plugin> <execution>
<groupId>org.apache.maven.plugins</groupId> <phase>package</phase>
<artifactId>maven-jar-plugin</artifactId> </execution>
<version>2.3.1</version> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>