shurax-cfg
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.bloodshura</groupId> <artifactId>shurax-cfg</artifactId> <version>1.2.4</version> </dependency>
<project> <modelVersion>4.0.0</modelVersion> <groupId>com.github.bloodshura</groupId> <artifactId>shurax-cfg</artifactId> <version>1.2.4</version> <packaging>jar</packaging> <name>ShuraX Cfg</name> <description>A collection of configuration APIs, including JSON, internationalization (I18n), CSV, and more.</description> <url>https://github.com/BloodShura/ShuraX-Cfg</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-Cfg.git</connection> <developerConnection>scm:git:ssh://github.com:BloodShura/ShuraX-Cfg.git</developerConnection> <url>https://github.com/BloodShura/ShuraX-Cfg/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> <testSourceDirectory>${project.basedir}/test</testSourceDirectory> <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>