license3j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.javax0.license3j</groupId> <artifactId>license3j</artifactId> <version>3.3.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <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.javax0.license3j</groupId> <artifactId>license3j</artifactId> <version>3.3.0</version> <packaging>jar</packaging> <name>License3j</name> <properties> <sourceEncoding>UTF-8</sourceEncoding> </properties> <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> <description>Free license manager</description> <url>https://github.com/verhas/License3j/tree/master</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Peter Verhas</name> <email>peter@verhas.com</email> </developer> <developer> <name>Robert Siebeck</name> <email>robert@siebeck.org</email> </developer> <developer> <name>Hristo I Stoyanov</name> <url>https://github.com/hrstoyanov </url> </developer> </developers> <scm> <connection>scm:git:git@github.com:verhas/License3j.git</connection> <developerConnection>scm:git:ssh://github.com/verhas/License3j.git</developerConnection> <url>https://github.com/verhas/License3j/tree/master </url> </scm> <dependencies> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>4.4.0</version> <scope>test </scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.8.2</version> <scope>test </scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.8.2</version> <scope>test </scope> </dependency> </dependencies> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign </goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M4</version> <configuration> <argLine> --add-opens com.javax0.license3j/javax0.license3j=ALL-UNNAMED --add-opens com.javax0.license3j/javax0.license3j.crypto=ALL-UNNAMED --add-opens com.javax0.license3j/javax0.license3j.io=ALL-UNNAMED --add-opens com.javax0.license3j/javax0.license3j.parsers=ALL-UNNAMED --add-opens com.javax0.license3j/javax0.license3j.hardware=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED </argLine> </configuration> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.7.0 </version> </dependency> </dependencies> </plugin> <plugin> <groupId>com.javax0.jamal</groupId> <artifactId>jamal-maven-plugin</artifactId> <version>2.8.2</version> <executions> <execution> <goals> <goal>jamal </goal> </goals> </execution> </executions> </plugin> <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.2.0</version> <configuration> <detectOfflineLinks>false</detectOfflineLinks> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar </goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <release>11 </release> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.7.0</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </project>