personalman-java-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.davelee.personalman</groupId> <artifactId>personalman-java-api</artifactId> <version>1.4.0</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.davelee.personalman</groupId> <artifactId>personalman-java-api</artifactId> <packaging>jar</packaging> <name>PersonalMan - Java API</name> <version>1.4.0</version> <description>This module provides a Java Implementation for the PersonalMan REST API.</description> <url>https://www.davelee.de</url> <developers> <developer> <id>1</id> <name>David A J Lee</name> <url>https://www.davelee.de</url> </developer> </developers> <licenses> <license> <name>GNU General Public Licence</name> <url>https://www.gnu.org/licenses/gpl-3.0.en.html</url> <distribution>repo</distribution> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <!-- Git Connection --> <scm> <connection>scm:git:https://github.com/daveajlee/personalman-java-api</connection> <url>https://github.com/daveajlee/personalman-java-api</url> <tag>HEAD</tag> </scm> <!-- GitHub Packages --> <distributionManagement> <repository> <id>github</id> <name>GitHub daveajlee Apache Maven Packages</name> <url>https://maven.pkg.github.com/daveajlee/personalman-java-api</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.18</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.7.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>11</source> <target>11</target> </configuration> </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> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>