Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <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>BanManager</groupId>
- <artifactId>BanManager</artifactId>
- <version>4.0</version>
- <repositories>
- <repository>
- <id>bukkit-repo</id>
- <url>http://repo.bukkit.org/content/groups/public</url>
- </repository>
- <repository>
- <id>gravity-repo</id>
- <url>http://repo.gravitydevelopment.net</url>
- </repository>
- <repository>
- <id>craftminecraft-dev</id>
- <url>http://repo.craftminecraft.net/content/groups/public/</url>
- </repository>
- <repository>
- <id>snapshot-repo</id>
- <url>https://oss.sonatype.org/content/repositories/snapshots</url>
- </repository>
- </repositories>
- <build>
- <finalName>BanManager</finalName>
- <sourceDirectory>${basedir}/src</sourceDirectory>
- <resources>
- <resource>
- <targetPath>.</targetPath>
- <filtering>true</filtering>
- <directory>${basedir}</directory>
- <includes>
- <include>*.yml</include>
- </includes>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.3.2</version>
- <configuration>
- <source>1.6</source>
- <target>1.6</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- <version>1.5</version>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- <configuration>
- <relocations>
- <relocation>
- <pattern>net.gravitydevelopment.updater</pattern>
- <shadedPattern>me.confuser.banmanager.updater</shadedPattern>
- </relocation>
- </relocations>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- <extensions>
- <extension>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-file</artifactId>
- <version>2.2</version>
- </extension>
- </extensions>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.bukkit</groupId>
- <artifactId>bukkit</artifactId>
- <version>LATEST</version>
- <type>jar</type>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>net.md-5</groupId>
- <artifactId>bungeecord-api</artifactId>
- <version>1.5-SNAPSHOT</version>
- <type>jar</type>
- </dependency>
- <dependency>
- <groupId>net.gravitydevelopment.updater</groupId>
- <artifactId>updater</artifactId>
- <version>2.1</version>
- </dependency>
- </dependencies>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment