123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?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/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>atlas-parent</artifactId>
- <groupId>cc.funkemunky.utils</groupId>
- <version>1.8.3.2</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>cc.funkemunky.example</groupId>
- <artifactId>AtlasExample</artifactId>
- <version>1.0</version>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.7.0</version>
- <configuration>
- <source>8</source>
- <target>8</target>
- <compilerArgument>-XDignore.symbol.file</compilerArgument>
- </configuration>
- </plugin>
- </plugins>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- </build>
- <repositories>
- <repository>
- <id>aikar</id>
- <url>https://ci.emc.gs/nexus/content/groups/aikar</url>
- </repository>
- </repositories>
- <dependencies>
- <dependency>
- <groupId>org.github.spigot</groupId>
- <artifactId>1.8.8</artifactId>
- <version>1.8.8</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>co.aikar</groupId>
- <artifactId>fastutil-lite</artifactId>
- <version>1.0</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.github.spigot</groupId>
- <artifactId>1.13.2</artifactId>
- <version>1.13.2</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.github.spigot</groupId>
- <artifactId>1.7.10</artifactId>
- <version>1.7.10</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>cc.funkemunky.utils</groupId>
- <artifactId>Atlas</artifactId>
- <version>1.8.3.2</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </project>
|