featurecreep-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.asbestosstar</groupId>
<artifactId>featurecreep-api</artifactId>
<version>6.0.0-am4</version>
</dependency><project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.asbestosstar</groupId>
<artifactId>featurecreep-api</artifactId>
<version>6.0.0-am4</version>
<name>FeatureCreep API</name>
<description>Java General Purpose API providing stuff for remapping, parsing, bytecode manipulation, and other capabilities</description>
<url>https://pagure.io/featurecreep/featurecreep-api</url>
<licenses>
<license>
<name>The Unlicense</name>
<url>https://unlicense.org/</url>
</license>
</licenses>
<developers>
<developer>
<name>Asbestosstar</name>
<email>asbestosstar@asbestosstar.com</email>
<organization>Asbestosstar</organization>
<organizationUrl>https://asbestosstar.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>
scm:git:https://pagure.io/featurecreep/featurecreep-api.git</connection>
<developerConnection>
scm:git:ssh://git@pagure.io/featurecreep/featurecreep-api.git</developerConnection>
<url>https://pagure.io/featurecreep/featurecreep-api</url>
</scm>
<!-- Distribution Management -->
<distributionManagement>
<snapshotRepository>
<id>central</id>
<url>https://central.sonatype.org/</url>
</snapshotRepository>
<repository>
<id>central</id>
<url>
https://central.sonatype.org/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version> <!-- 使用合适的版本 -->
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Maven Javadoc Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Maven GPG Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>package</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Nexus Staging Maven Plugin -->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.7.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://www.jitpack.io</url>
</repository>
<repository>
<id>kenzie</id>
<name>Kenzie's Repository</name>
<url>https://repo.kenzie.mx/releases</url>
</repository>
<repository>
<id>cursedmaven</id>
<name>cursedmaven</name>
<url>https://cursemaven.com</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.asbestosstar</groupId>
<artifactId>featurecreep-loader</artifactId>
<version>6.0.0-am3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>5.18.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna-platform -->
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna-platform</artifactId>
<version>5.18.1</version>
</dependency>
<dependency>
<groupId>curse.maven</groupId>
<artifactId>crashdetector-1224146</artifactId>
<version>7081171</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>