requirements-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.cowwoc.requirements</groupId> <artifactId>requirements-java</artifactId> <version>12.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>io.github.cowwoc.requirements</groupId> <artifactId>requirements</artifactId> <version>12.0</version> </parent> <artifactId>requirements-java</artifactId> <name>requirements-java</name> <properties> <project.root.basedir>${project.parent.basedir}</project.root.basedir> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>requirements-annotation</artifactId> </dependency> <dependency> <groupId>io.github.java-diff-utils</groupId> <artifactId>java-diff-utils</artifactId> </dependency> <dependency> <groupId>io.github.cowwoc.pouch</groupId> <artifactId>pouch-core</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> </dependencies> <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,-requires-automatic,-module,-try</arg> <!-- WORKAROUND: https://issues.apache.org/jira/browse/MCOMPILER-368 --> <arg>-Xpkginfo:always</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> <!-- NOTE: <docfilessubdirs> is only needed to generate Javadoc for ANSI String diffs, which is disabled by default. <docfilessubdirs>true</docfilessubdirs> --> <show>public</show> <doctitle>Requirements Java Module ${project.version} API</doctitle> <windowtitle>Requirements Java Module ${project.version} API</windowtitle> <additionalOptions> <!-- https://stackoverflow.com/a/54468139/14731 --> <option>--override-methods</option> <option>summary</option> </additionalOptions> <excludePackageNames> io.github.cowwoc.requirements12.java.internal, io.github.cowwoc.requirements12.java.internal.* </excludePackageNames> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>