123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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/maven-v4_0_0.xsd">
- <parent>
- <artifactId>atlas-parent</artifactId>
- <groupId>cc.funkemunky.utils</groupId>
- <version>1.6.2</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>AtlasBungee</artifactId>
- <scm>
- <connection>scm:svn:http://127.0.0.1/dummy</connection>
- <developerConnection>scm:svn:https://127.0.0.1/dummy</developerConnection>
- <url>http://127.0.0.1/dummy</url>
- </scm>
- <build>
- <resources>
- <resource>
- <filtering>true</filtering>
- <directory>src/main/resources</directory>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.7.0</version>
- <configuration>
- <source>8</source>
- <target>8</target>
- <compilerArgument>-XDignore.symbol.file</compilerArgument>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-shade-plugin</artifactId>
- <version>3.1.0</version>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- <configuration>
- <minimizeJar>true</minimizeJar>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>buildnumber-maven-plugin</artifactId>
- <version>1.4</version>
- <executions>
- <execution>
- <id>buildnumber</id>
- <phase>validate</phase>
- <goals>
- <goal>create</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <format>{0,number}</format>
- <items>
- <item>buildNumber</item>
- </items>
- <doCheck>false</doCheck>
- <doUpdate>false</doUpdate>
- <revisionOnScmFailure>unknownbuild</revisionOnScmFailure>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <repositories>
- <repository>
- <id>funkemunky-releases</id>
- <url>http://funkemunky.cc:8080/nexus/content/repositories/releases/</url>
- </repository>
- </repositories>
- <dependencies>
- <dependency>
- <groupId>org.github.bungee</groupId>
- <artifactId>BungeeCord-1.8</artifactId>
- <version>1.8.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.github.lombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.18.0</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </project>
|