You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
188 lines
5.1 KiB
188 lines
5.1 KiB
<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>ru.simsonic</groupId> |
|
<artifactId>rscPermissions</artifactId> |
|
<version>0.9.0b</version> |
|
<packaging>jar</packaging> |
|
|
|
<name>rscPermissions</name> |
|
<url>http://maven.apache.org</url> |
|
|
|
<properties> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
</properties> |
|
|
|
<build> |
|
<finalName>${project.artifactId}_v${project.version}</finalName> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.1</version> |
|
<configuration> |
|
<source>1.7</source> |
|
<target>1.7</target> |
|
<debug>true</debug> |
|
<verbose>false</verbose> |
|
<showDeprecation>true</showDeprecation> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-jar-plugin</artifactId> |
|
<version>2.5</version> |
|
<configuration> |
|
<archive> |
|
<addMavenDescriptor>false</addMavenDescriptor> |
|
</archive> |
|
<excludes> |
|
<exclude>.*</exclude> |
|
</excludes> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-shade-plugin</artifactId> |
|
<version>2.3</version> |
|
<executions> |
|
<execution> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>shade</goal> |
|
</goals> |
|
<configuration> |
|
<minimizeJar>true</minimizeJar> |
|
<artifactSet> |
|
<includes> |
|
<include>ru.simsonic:rscAPI</include> |
|
</includes> |
|
</artifactSet> |
|
<createDependencyReducedPom>false</createDependencyReducedPom> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<!--plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-source-plugin</artifactId> |
|
<version>2.2.1</version> |
|
<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> |
|
<version>2.9.1</version> |
|
<executions> |
|
<execution> |
|
<id>attach-javadocs</id> |
|
<goals> |
|
<goal>jar</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
<configuration> |
|
<show>public</show> |
|
<nohelp>true</nohelp> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
<resources> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
<filtering>true</filtering> |
|
</resource> |
|
</resources> |
|
</build> |
|
<repositories> |
|
<!-- Bukkit API --> |
|
<repository> |
|
<id>bukkit-repo</id> |
|
<url>http://repo.bukkit.org/content/groups/public</url> |
|
</repository> |
|
<!-- Vault and VaultAPI --> |
|
<repository> |
|
<id>VaultAPI</id> |
|
<url>http://nexus.theyeticave.net/content/repositories/pub_releases</url> |
|
</repository> |
|
<!-- Region list providers: WorldGuard, Residence --> |
|
<repository> |
|
<id>sk89q-repo</id> |
|
<url>http://maven.sk89q.com/repo/</url> |
|
</repository> |
|
<repository> |
|
<id>maven.sk89q.com</id> |
|
<url>http://maven.sk89q.com/artifactory/libs-release-local</url> |
|
</repository> |
|
<repository> |
|
<id>maven.sk89q.com-snapshot</id> |
|
<url>http://maven.sk89q.com/artifactory/libs-snapshot-local</url> |
|
</repository> |
|
<repository> |
|
<id>Residence</id> |
|
<url>http://ci.drtshock.net/plugin/repository/everything/</url> |
|
</repository> |
|
<!-- My own libraries and APIs --> |
|
<repository> |
|
<id>voxile.ru</id> |
|
<url>http://s9.voxile.ru/plugin/repository/everything/</url> |
|
</repository> |
|
</repositories> |
|
<dependencies> |
|
<dependency> |
|
<groupId>mysql</groupId> |
|
<artifactId>mysql-connector-java</artifactId> |
|
<version>5.1.32</version> |
|
<scope>runtime</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.bukkit</groupId> |
|
<artifactId>bukkit</artifactId> |
|
<version>1.7.9-R0.1-SNAPSHOT</version> |
|
<scope>provided</scope> |
|
<type>jar</type> |
|
</dependency> |
|
<dependency> |
|
<groupId>ru.simsonic</groupId> |
|
<artifactId>rscAPI</artifactId> |
|
<version>1.2.1</version> |
|
<scope>compile</scope> |
|
<type>jar</type> |
|
</dependency> |
|
<dependency> |
|
<groupId>net.milkbowl.vault</groupId> |
|
<artifactId>VaultAPI</artifactId> |
|
<version>1.4</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.sk89q</groupId> |
|
<artifactId>worldedit</artifactId> |
|
<version>5.6.2</version> |
|
<scope>compile</scope> |
|
<type>jar</type> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.sk89q</groupId> |
|
<artifactId>worldguard</artifactId> |
|
<version>6.0.0-SNAPSHOT</version> |
|
<scope>provided</scope> |
|
<type>jar</type> |
|
</dependency> |
|
<dependency> |
|
<groupId>net.t00thpick1</groupId> |
|
<artifactId>Residence</artifactId> |
|
<version>3.0-SNAPSHOT</version> |
|
<scope>provided</scope> |
|
<type>jar</type> |
|
</dependency> |
|
</dependencies> |
|
</project> |