shurax-assets
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.bloodshura</groupId>
<artifactId>shurax-assets</artifactId>
<version>1.1.0</version>
</dependency><project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.bloodshura</groupId>
<artifactId>shurax-assets</artifactId>
<version>1.1.0</version>
<packaging>jar</packaging>
<name>ShuraX Assets</name>
<description>An API for reading, writing and manipulating fonts, images and sounds.</description>
<url>https://github.com/BloodShura/ShuraX-Assets</url>
<developers>
<developer>
<name>João Vitor Verona Biazibetti</name>
<email>joaaoverona@gmail.com</email>
<url>https://github.com/BloodShura</url>
</developer>
</developers>
<licenses>
<license>
<name>AGPLv3</name>
<url>https://www.gnu.org/licenses/agpl-3.0.en.html</url>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/BloodShura/ShuraX-Assets.git</connection>
<developerConnection>scm:git:ssh://github.com:BloodShura/ShuraX-Assets.git</developerConnection>
<url>https://github.com/BloodShura/ShuraX-Assets/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>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.github.bloodshura</groupId>
<artifactId>shurax</artifactId>
<version>1.1.0</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>${project.basedir}/src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</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-javadoc-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</project>