annotation
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.cowwoc.requirements</groupId>
<artifactId>annotation</artifactId>
<version>11.0</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.cowwoc.requirements</groupId>
<artifactId>root</artifactId>
<version>11.0</version>
</parent>
<artifactId>annotation</artifactId>
<packaging>jar</packaging>
<distributionManagement>
<relocation>
<artifactId>requirements-annotation</artifactId>
</relocation>
</distributionManagement>
<properties>
<rootBaseDir>${project.basedir}/..</rootBaseDir>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgs>
<arg>-Xdiags:verbose</arg>
<arg>-Werror</arg>
<arg>-Xlint:all,-module</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<show>public</show>
<doctitle>Requirements Annotations Module ${project.version} API</doctitle>
<windowtitle>Requirements Annotations Module ${project.version} API</windowtitle>
<additionalOptions>
<!-- https://stackoverflow.com/a/54468139/14731 -->
<option>--override-methods</option>
<option>summary</option>
</additionalOptions>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<executions>
<execution>
<id>3rd-party-licenses</id>
<goals>
<goal>aggregate-add-third-party</goal>
</goals>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>