type-alias-example
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.joht.alias</groupId>
<artifactId>type-alias-example</artifactId>
<version>2.0.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>
<parent>
<groupId>io.github.joht.alias</groupId>
<artifactId>alias-parent</artifactId>
<version>2.0.0</version>
</parent>
<artifactId>type-alias-example</artifactId>
<name>type-alias-example</name>
<description>Contains examples on how to use and configure type alias file generation</description>
<url>https://github.com/JohT/alias/tree/master/type-alias-example</url>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>type-alias</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<!-- Unit Testing -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>