astraledit
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.shynixn</groupId> <artifactId>astraledit</artifactId> <version>1.1.0</version> </dependency>
<?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"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.shynixn</groupId> <artifactId>astraledit</artifactId> <name>AstralEdit</name> <description>WorldEdit Extension to modify your world in a way you have not seen before.</description> <url>https://github.com/Shynixn/AstralEdit</url> <packaging>jar</packaging> <version>1.1.0</version> <developers> <developer> <name>Shynixn</name> </developer> </developers> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <properties> <astraledit.bukkit.test-server-path>D:/Temp/plugins</astraledit.bukkit.test-server-path> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.19.1</version> <dependencies> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-surefire-provider</artifactId> <version>1.0.0-M4</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.0.0-M4</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> <version>2.3.2</version> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> <configuration> <outputDirectory>${astraledit.bukkit.test-server-path}</outputDirectory> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net</groupId> <artifactId>minecraft18R1</artifactId> <scope>system</scope> <version>1.0</version> <systemPath>${basedir}/lib/spigot-1.8.jar</systemPath> </dependency> <dependency> <groupId>net</groupId> <artifactId>minecraft18R2</artifactId> <scope>system</scope> <version>1.0</version> <systemPath>${basedir}/lib/spigot-1.8.3.jar</systemPath> </dependency> <dependency> <groupId>net</groupId> <artifactId>minecraft18R3</artifactId> <scope>system</scope> <version>1.0</version> <systemPath>${basedir}/lib/spigot-1.8.8.jar</systemPath> </dependency> <dependency> <groupId>net</groupId> <artifactId>minecraft19R1</artifactId> <scope>system</scope> <version>1.0</version> <systemPath>${basedir}/lib/spigot-1.9.jar</systemPath> </dependency> <dependency> <groupId>net</groupId> <artifactId>minecraft19R2</artifactId> <scope>system</scope> <version>1.0</version> <systemPath>${basedir}/lib/spigot-1.9.4.jar</systemPath> </dependency> <dependency> <groupId>net</groupId> <artifactId>minecraft110R1</artifactId> <scope>system</scope> <version>1.0</version> <systemPath>${basedir}/lib/spigot-1.10.2.jar</systemPath> </dependency> <dependency> <groupId>net</groupId> <artifactId>minecraft111R1</artifactId> <scope>system</scope> <version>1.0</version> <systemPath>${basedir}/lib/spigot-1.11.jar</systemPath> </dependency> <dependency> <groupId>net</groupId> <artifactId>minecraft112R1</artifactId> <scope>system</scope> <version>1.0</version> <systemPath>${basedir}/lib/spigot-1.12.jar</systemPath> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>RELEASE</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.0.0-M4</version> <scope>test</scope> </dependency> </dependencies> <scm> <connection>scm:git:git://github.com/Shynixn/AstralEdit.git</connection> <developerConnection>scm:git:ssh://github.com:Shynixn/AstralEdit.git</developerConnection> <url>http://github.com/Shynixn/AstralEdit.git/tree/master</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>