Skip to content

Commit

Permalink
Fixed pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
timstans committed Jan 3, 2014
1 parent ddd0caf commit 6bb6051
Show file tree
Hide file tree
Showing 2 changed files with 109 additions and 108 deletions.
13 changes: 7 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
*.class
*.jar
.classpath
.project
bin

*.class
*.jar
.classpath
.project
bin

/target
204 changes: 102 additions & 102 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,103 +1,103 @@
<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.bergerkiller.bukkit</groupId>
<artifactId>TrainCarts</artifactId>
<version>1.73.0</version>
<packaging>jar</packaging>

<name>TrainCarts</name>
<url>http://dev.bukkit.org/server-mods/traincarts/</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<repositories>
<!-- Repo for access to CraftBukkit -->
<repository>
<id>bukkit-repo</id>
<url>http://repo.bukkit.org/content/groups/public</url>
</repository>
<!-- Repo for access to BKCommonLib, MyWorlds and SignLink -->
<repository>
<id>dj-tcraft-repo</id>
<url>http://ci.dj-tcraft.nl/plugin/repository/everything/</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.7.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.bergerkiller.bukkit</groupId>
<artifactId>MyWorlds</artifactId>
<version>1.67</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.earth2me</groupId>
<artifactId>essentials</artifactId>
<version>2.10.1</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/Essentials.jar</systemPath>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.bergerkiller.bukkit</groupId>
<artifactId>SignLink</artifactId>
<version>1.34</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.bergerkiller.bukkit</groupId>
<artifactId>BKCommonLib</artifactId>
<version>1.57-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>

<!-- Build -->
<build>
<!-- Resources (the filtering allows us to use project properties in plugin.yml) -->
<resources>
<resource>
<directory>src/main/java</directory>
<filtering>true</filtering>
<includes>
<include>plugin.yml</include>
</includes>
</resource>
</resources>
<defaultGoal>clean install</defaultGoal>

<!-- Plugins -->
<plugins>
<!-- Compiler plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.4</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
</plugins>
</build>
<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.bergerkiller.bukkit</groupId>
<artifactId>TrainCarts</artifactId>
<version>1.73.0</version>
<packaging>jar</packaging>

<name>TrainCarts</name>
<url>http://dev.bukkit.org/server-mods/traincarts/</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<repositories>
<!-- Repo for access to CraftBukkit -->
<repository>
<id>bukkit-repo</id>
<url>http://repo.bukkit.org/content/groups/public</url>
</repository>
<!-- Repo for access to BKCommonLib, MyWorlds and SignLink -->
<repository>
<id>dj-tcraft-repo</id>
<url>http://ci.dj-tcraft.nl/plugin/repository/everything/</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.7.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.bergerkiller.bukkit</groupId>
<artifactId>MyWorlds</artifactId>
<version>1.67</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.earth2me</groupId>
<artifactId>essentials</artifactId>
<version>2.10.1</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/Essentials.jar</systemPath>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.bergerkiller.bukkit</groupId>
<artifactId>SignLink</artifactId>
<version>1.34</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.bergerkiller.bukkit</groupId>
<artifactId>BKCommonLib</artifactId>
<version>1.57-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>

<!-- Build -->
<build>
<!-- Resources (the filtering allows us to use project properties in plugin.yml) -->
<resources>
<resource>
<directory>src/main/java</directory>
<filtering>true</filtering>
<includes>
<include>plugin.yml</include>
</includes>
</resource>
</resources>
<defaultGoal>clean install</defaultGoal>

<!-- Plugins -->
<plugins>
<!-- Compiler plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.4</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 6bb6051

Please sign in to comment.