commons
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.ichor</groupId>
<artifactId>commons</artifactId>
<version>1.0.0</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>
<name>commons</name>
<packaging>jar</packaging>
<description>A bunch of very efficient and useful abstractions/helper classes.</description>
<url>https://github.com/Jezza/commons</url>
<groupId>io.ichor</groupId>
<artifactId>commons</artifactId>
<version>1.0.0</version>
<scm>
<url>https://github.com/Jezza/commons</url>
<connection>scm:git:git://github.com/Jezza/commons.git</connection>
<developerConnection>scm:git:git@github.com:Jezza/commons.git</developerConnection>
</scm>
<licenses>
<license>
<name>Apache 2.0 License</name>
<url>https://opensource.org/licenses/Apache-2.0</url>
</license>
</licenses>
<issueManagement>
<url>https://github.com/Jezza/commons/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<developers>
<developer>
<email>jeremy.a.barrow@gmail.com</email>
<name>Jeremy Barrow</name>
<url>https://github.com/Jezza</url>
<id>jezza</id>
</developer>
</developers>
<properties>
<slf4j.version>1.7.16</slf4j.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
</dependencies>
<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>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</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.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<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>