license3j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.verhas</groupId> <artifactId>license3j</artifactId> <version>2.0.1</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.verhas</groupId> <artifactId>license3j</artifactId> <version>2.0.1</version> <packaging>jar</packaging> <url>https:/github.com/verhas/license3j/tree/master</url> <name>License3j</name> <description>https://github.com/verhas/License3j</description> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <issueManagement> <url>https://github.com/verhas/License3j/issues</url> <system>GitHub Issues</system> </issueManagement> <licenses> <license> <name>LGPL License</name> <url>http://www.gnu.org/copyleft/lesser.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:verhas/License3j.git</connection> <url>https://github.com/verhas/License3j</url> <developerConnection>scm:git:git@github.com:verhas/License3j.git</developerConnection> </scm> <developers> <developer> <email>peter@verhas.com</email> <name>Peter Verhas</name> <url>https://github.com/verhas</url> <id>verhas</id> </developer> </developers> <dependencies> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpg-jdk15on</artifactId> <version>1.60</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.10.17</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.2.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.2.0</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <source>8</source> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>1.10</source> <target>1.10</target> <release>10</release> <jdkToolchain> <version>10</version> </jdkToolchain> </configuration> </plugin> </plugins> </build> </project>