123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- <?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.11.7</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>AtlasBungee</artifactId>
- <properties>
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.8.1</version>
- <configuration>
- <source>8</source>
- <target>8</target>
- <annotationProcessorPaths>
- <path>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.18.20</version>
- </path>
- </annotationProcessorPaths>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- <version>3.2.4</version>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- <configuration>
- <minimizeJar>false</minimizeJar>
- <relocations>
- <relocation>
- <pattern>org.objectweb.asm</pattern>
- <shadedPattern>cc.funkemunky.bungee.utils.org.objectweb.asm</shadedPattern>
- </relocation>
- </relocations>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-deploy-plugin</artifactId>
- <version>2.8.1</version>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.sonatype.plugins</groupId>
- <artifactId>nexus-staging-maven-plugin</artifactId>
- <version>1.5.1</version>
- <executions>
- <execution>
- <id>default-deploy</id>
- <phase>deploy</phase>
- <goals>
- <goal>deploy</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <serverId>funkemunky</serverId>
- <nexusUrl>https://nexus.funkemunky.cc</nexusUrl>
- <skipStaging>true</skipStaging>
- </configuration>
- </plugin>
- </plugins>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- </build>
- <repositories>
- <repository>
- <id>aikar-snapshots</id>
- <url>https://repo.aikar.co/content/repositories/aikar-snapshots/</url>
- </repository>
- <repository>
- <id>funkemunky-releases</id>
- <url>https://nexus.funkemunky.cc/content/repositories/releases/</url>
- </repository>
- </repositories>
- <distributionManagement>
- <snapshotRepository>
- <id>funkemunky-snapshots</id>
- <url>https://nexus.funkemunky.cc/content/repositories/snapshots/</url>
- </snapshotRepository>
- <repository>
- <id>funkemunky-releases</id>
- <url>https://nexus.funkemunky.cc/content/repositories/releases/</url>
- </repository>
- </distributionManagement>
- <dependencies>
- <dependency>
- <groupId>org.github.bungee</groupId>
- <artifactId>BungeeCord-1.8</artifactId>
- <version>1.8</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>co.aikar</groupId>
- <artifactId>acf-bungee</artifactId>
- <version>0.5.0-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm</artifactId>
- <version>9.2</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm-tree</artifactId>
- <version>9.2</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.imaginarycode.minecraft</groupId>
- <artifactId>RedisBungee</artifactId>
- <version>0.5</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </project>
|