<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>ru.tehkode</groupId> <artifactId>PermissionsEx</artifactId> <version>1.23.5-SNAPSHOT</version> <name>PermissionsEx</name> <url>https://github.com/PEXPlugins/PermissionsEx</url> <properties> <netbeans.hint.license>gpl2</netbeans.hint.license> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <issueManagement> <system>GitHub</system> <url>https://github.com/PEXPlugins/PermissionsEx/issues</url> </issueManagement> <distributionManagement> <repository> <id>pex-repo</id> <name>PermissionsEx Repository</name> <url>http://pex-repo.aoeu.xyz/</url> </repository> </distributionManagement> <scm> <connection>scm:git:git://github.com/PEXPlugins/PermissionsEx.git</connection> <developerConnection>scm:git:ssh://git@github.com/PEXPlugins/PermissionsEx.git</developerConnection> <url>https://github.com/PEXPlugins/PermissionsEx.git</url> </scm> <build> <resources> <resource> <directory>${project.basedir}/src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.2</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>2.1</version> <executions> <execution> <goals> <goal>shade</goal> </goals> <phase>package</phase> <configuration> <createDependencyReducedPom>false</createDependencyReducedPom> <relocations> <relocation> <pattern>net.gravitydevelopment.updater</pattern> <shadedPattern>ru.tehkode.libs.net.gravitydevelopment.updater</shadedPattern> </relocation> <relocation> <pattern>org.apache</pattern> <shadedPattern>ru.tehkode.libs.org.apache</shadedPattern> <excludes> <exclude>org.apache.commons.lang.*</exclude> </excludes> </relocation> <relocation> <pattern>com.mojang</pattern> <shadedPattern>ru.tehkode.libs.com.mojang</shadedPattern> </relocation> <relocation> <pattern>com.google.gson</pattern> <shadedPattern>ru.tehkode.libs.com.google.gson</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.jboss.seven2six</groupId> <artifactId>seven2six</artifactId> <version>1.1.Final</version> <executions> <!-- run after "compile", lets your artifact work on 1.6 --> <!-- <execution> <id>weave</id> <phase>process-classes</phase> <goals> <goal>transform</goal> </goals> </execution> --> <!-- run after "test-compile", lets you run your tests on 1.6 --> <!-- <execution> <id>weave-tests</id> <phase>process-test-classes</phase> <goals> <goal>transform</goal> </goals> <configuration> <outputDirectory>${project.build.testOutputDirectory}</outputDirectory> </configuration> </execution> --> </executions> </plugin> <!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-maven-plugin</artifactId> <version>1.11</version> <configuration> <ignores> <ignore>java.lang.Throwable</ignore> </ignores> <signature> <groupId>org.codehaus.mojo.signature</groupId> <artifactId>java16</artifactId> <version>1.0</version> </signature> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> <phase>test</phase> </execution> </executions> </plugin> --> </plugins> </build> <dependencies> <!-- Spigot API --> <dependency> <groupId>org.spigotmc</groupId> <artifactId>spigot-api</artifactId> <version>1.20.1-R0.1-SNAPSHOT</version> <type>jar</type> <scope>provided</scope> </dependency> <!-- Google JSON.simple. This was included in Bukkit 1.13.2, but removed in 1.14 --> <dependency> <groupId>com.googlecode.json-simple</groupId> <artifactId>json-simple</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>1.9</version> <type>jar</type> <scope>provided</scope> </dependency> <!-- 'netevents' depends on Bukkit 1.7.2-R0.1 in the removed old Bukkit repository. <dependency> <groupId>com.zachsthings</groupId> <artifactId>netevents</artifactId> <version>1.1-SNAPSHOT</version> <scope>provided</scope> </dependency> --> <dependency> <groupId>junit</groupId> <artifactId>junit-dep</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-dbcp</groupId> <artifactId>commons-dbcp</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>com.mojang</groupId> <artifactId>AccountsClient</artifactId> <version>unspecified</version> </dependency> </dependencies> <repositories> <repository> <id>pex-repo</id> <url>http://pex-repo.aoeu.xyz</url> </repository> <!-- Spigot API repo --> <repository> <id>spigot-repo</id> <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> </repository> <!-- AccountsClient repo --> <repository> <id>accountsclient-repo</id> <url>https://maven.elmakers.com/repository/</url> </repository> </repositories> <profiles> <profile> <id>release</id> <build> <plugins> <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-no-fork</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> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>