Skip to content

Instantly share code, notes, and snippets.

@greatman
Created July 13, 2013 22:07
Show Gist options
  • Save greatman/5992406 to your computer and use it in GitHub Desktop.
Save greatman/5992406 to your computer and use it in GitHub Desktop.
<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.greatmancode</groupId>
<artifactId>craftconomy3</artifactId>
<version>3.1.4-SNAPSHOT</version>
<inceptionYear>2011</inceptionYear>
<name>Craftconomy3</name>
<url>https://github.com/greatman/Craftconomy3</url>
<description>Economy Handler for Bukkit/Spout</description>
<!-- Source code -->
<scm>
<developerConnection>scm:git:git@github.com:greatman/craftconomy3.git</developerConnection>
<connection>scm:git:git://github.com/greatman/craftconomy3.git</connection>
<url>https://github.com/greatman/craftconomy3</url>
</scm>
<!-- Organization -->
<organization>
<name>Greatman</name>
<url>http://github.com/greatman</url>
</organization>
<!-- Continuous integration -->
<ciManagement>
<system>jenkins</system>
<url>http://jenkins.thebigdigmc.info/job/Craftconomy3</url>
</ciManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<bukkitVersion>1.5.2-R0.1</bukkitVersion>
</properties>
<repositories>
<repository>
<id>spout-repo</id>
<url>http://nexus.spout.org/content/groups/public/</url>
</repository>
<repository>
<id>bukkit-repo</id>
<url>http://repo.bukkit.org/content/groups/public/</url>
</repository>
<repository>
<id>Me</id>
<url>http://repo.greatmancode.com/content/groups/public/</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>upstream</id>
<name>greatmancode-releases</name>
<url>http://repo.greatmancode.com/content/repositories/releases</url>
</repository>
<snapshotRepository>
<id>upstream</id>
<name>greatmancode-snapshots</name>
<url>http://repo.greatmancode.com/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>${bukkitVersion}</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
</dependency>
</dependencies>
<build>
<defaultGoal>clean install</defaultGoal>
<resources>
<resource>
<targetPath>.</targetPath>
<filtering>true</filtering>
<directory>${basedir}/src/main/resources</directory>
<includes>
<include>*.yml</include>
<include>*.info</include>
<include>*.inf</include>
</includes>
</resource>
</resources>
<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>
<compilerArguments>
<O>-Xlint:all</O>
<O>-Xlint:-path</O>
</compilerArguments>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment