spigot-anvil-gui
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>xyz.upperlevel.spigot.anvilgui</groupId> <artifactId>spigot-anvil-gui</artifactId> <version>1.3</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>xyz.upperlevel.spigot.anvilgui</groupId> <artifactId>spigot-anvil-gui</artifactId> <version>1.3</version> <name>AnvilGui</name> <description>Upperlevel's fork of WesJD/AnvilGui.</description> <url>https://github.com/upperlevel/spigot-anvil-gui</url> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <mcVersion>1.12-R0.1-SNAPSHOT</mcVersion> </properties> <repositories> <repository> <id>spigot-repo</id> <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> </repository> </repositories> <dependencies> <!--Spigot API--> <dependency> <groupId>org.spigotmc</groupId> <artifactId>spigot-api</artifactId> <version>${mcVersion}</version> <scope>provided</scope> </dependency> </dependencies> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Wesley Smith</name> <email>me@wesjd.net</email> </developer> <developer> <name>Lorenzo Rossi</name> <email>snowycoder@upperlevel.xyz</email> <url>https://wesjd.net</url> </developer> </developers> <contributors> <contributor> <name>KeithM</name> <url>http://keithcod.es</url> </contributor> <contributor> <name>Karolek</name> <url>http://karolek.net/</url> </contributor> </contributors> <scm> <connection>scm:git:git@github.com:upperlevel/${project.artifactId}.git</connection> <developerConnection>scm:git:git@github.com:upperlevel/${project.artifactId}.git</developerConnection> <url>scm:git@github.com:upperlevel/${project.artifactId}.git</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> <build> <defaultGoal>clean install javadoc:javadoc</defaultGoal> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <configuration> <outputDirectory>${project.basedir}/javadocs</outputDirectory> <reportOutputDirectory>${project.basedir}/javadocs</reportOutputDirectory> <destDir>javadocs</destDir> </configuration> <executions> <execution> <id>attach-javadocs</id> <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> </plugins> </build> </project>