util-apis
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.gv2011</groupId> <artifactId>util-apis</artifactId> <version>0.14</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.github.gv2011</groupId> <artifactId>parent-gv</artifactId> <version>1.7</version> </parent> <artifactId>util-apis</artifactId> <version>0.14</version> <inceptionYear>2016</inceptionYear> <developers> <developer> <id>vinz</id> <name>Vinz</name> <url>https://github.com/gv2011/</url> </developer> </developers> <licenses> <license> <name>The MIT License</name> <url>https://opensource.org/licenses/MIT</url> <comments> The license applies to the content of the source code repository identified within the 'scm'-section of this file and the corresponding content in the previous repository at https://github.com/gv2011/util. The author(s) and copyright dates are given by these source code repositories, the 'developers' section and the inceptionYear tag of this file. </comments> </license> </licenses> <scm> <connection>scm:git:git@github.com:gv2011/util-apis.git</connection> <developerConnection>scm:git:git@github.com:gv2011/util-apis.git</developerConnection> <url>https://github.com/gv2011/util-apis</url> <tag>util-apis-0.14</tag> </scm> <dependencies> <dependency> <groupId>jakarta.activation</groupId> <artifactId>jakarta.activation-api</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <configuration> <dotGitDirectory>${project.basedir}/.git</dotGitDirectory> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>com.github.gv2011.util</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> </project>