KarmaAPI
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>ml.karmaconfigs</groupId>
<artifactId>KarmaAPI</artifactId>
<version>1.3.2</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>ml.karmaconfigs</groupId>
<artifactId>KarmaAPI</artifactId>
<packaging>pom</packaging>
<version>1.3.2</version>
<name>KarmaAPI</name>
<description>
KarmaAPI is an API that provides developers with an bunch of utilities
for their bukkit/bungee/velocity plugins or standalone projects.
It has lot of util tools, such as custom files and version checker,
to see how to use them go to: https://karmadev.es/docs/karmaapi
</description>
<url>https://github.com/KarmaConfigs/KarmaAPI</url>
<licenses>
<license>
<name>GSA-GPL 1.2</name>
<comments>The classes that not contains any license information
on the header are under GSA-GPL, which means requires you extra steps to
use them, otherwise legal actions may be taken.</comments>
<url>https://raw.githubusercontent.com/KarmaConfigs/KarmaAPI/main/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Karma Dev</name>
<email>karmaconfigs@gmail.com</email>
<organization>GSA</organization>
<organizationUrl>https://discord.gg/jRFfsdxnJR</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/KarmaConfigs/KarmaAPI.git</connection>
<developerConnection>scm:git:ssh://github.com:KarmaConfigs/KarmaAPI.git</developerConnection>
<url>http://github.com/KarmaConfigs/KarmaAPI/tree/master</url>
<tag>1.3.2</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<filesets>
<fileset>
<directory>maven</directory>
<includes>
<include>**/*</include>
</includes>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
</plugin>
<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>3.2.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<additionalOptions>
<additionalOption>-Xdoclint:none</additionalOption>
</additionalOptions>
</configuration>
</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>
<modules>
<module>Common</module>
<module>Bungee</module>
<module>Bundle</module>
<module>Velocity</module>
<module>Bukkit</module>
<!--
<module>BukkitPlugin</module>
<module>VelocityPlugin</module>
<module>BungeePlugin</module>
-->
</modules>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<repositories/>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/releases/</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>22.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-artifact</artifactId>
<version>3.8.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>