123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <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>xyz.spaceio</groupId>
- <artifactId>telegramchat</artifactId>
- <version>1.0.18-SNAPSHOT</version>
- <name>TelegramChat</name>
- <url>https://www.spigotmc.org/resources/telegramchat.16576/</url>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <repositories>
- <repository>
- <id>spaceio-repo</id>
- <url>https://repo.spaceio.xyz/repository/maven-public/</url>
- </repository>
- <repository>
- <id>spigot-repo</id>
- <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
- </repository>
- <repository>
- <id>jitpack.io</id>
- <url>https://jitpack.io</url>
- </repository>
- <repository>
- <id>nexus-snapshots</id>
- <url>https://services.mind-overflow.net/nexus/repository/maven-releases/</url>
- </repository>
- </repositories>
- <dependencies>
- <dependency>
- <groupId>org.spigotmc</groupId>
- <artifactId>spigot-api</artifactId>
- <version>1.12.2-R0.1-SNAPSHOT</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.github.LeonMangler</groupId>
- <artifactId>PremiumVanishAPI</artifactId>
- <version>2.7.3</version>
- </dependency>
- <dependency>
- <groupId>com.github.MilkBowl</groupId>
- <artifactId>VaultAPI</artifactId>
- <version>1.7</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- <distributionManagement>
- <repository>
- <id>spaceio-releases</id>
- <name>releases</name>
- <url>https://repo.spaceio.xyz/repository/maven-releases/</url>
- </repository>
- <snapshotRepository>
- <id>spaceio-snapshots</id>
- <name>snapshots</name>
- <url>https://repo.spaceio.xyz/repository/maven-snapshots/</url>
- </snapshotRepository>
- </distributionManagement>
- <build>
- <!-- Uses the properties in this file for plugin.yml and config.yml -->
- <resources>
- <resource>
- <directory>${basedir}/src/main/resources</directory>
- <filtering>true</filtering>
- <includes>
- <include>plugin.yml</include>
- <include>config.yml</include>
- </includes>
- </resource>
- </resources>
- <plugins>
- <!-- Sets the Java version to 8 -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.1</version>
- <configuration>
- <source>9</source>
- <target>9</target>
- </configuration>
- </plugin>
- <!-- Sets the custom JARfile name (Project name without spaces is good) -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>2.4</version>
- <configuration>
- <archive>
- <addMavenDescriptor>false</addMavenDescriptor>
- </archive>
- <outputDirectory>${dir}</outputDirectory>
- <finalName>${project.build.finalName}</finalName>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|