auto-builder-annotations
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.h908714124</groupId>
<artifactId>auto-builder-annotations</artifactId>
<version>1.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>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
<relativePath></relativePath>
</parent>
<groupId>com.github.h908714124</groupId>
<artifactId>auto-builder-annotations</artifactId>
<version>1.0</version>
<description>
Annotations for the auto-builder annotation processor
</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<compile-testing.version>0.15</compile-testing.version>
<junit.version>5.3.0-RC1</junit.version>
<surefire.version>2.22.0</surefire.version>
<compiler-plugin.version>3.8.0</compiler-plugin.version>
<javadoc-plugin.version>3.0.1</javadoc-plugin.version>
<jar-plugin.version>3.1.0</jar-plugin.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${jar-plugin.version}</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
<manifestEntries>
<Automatic-Module-Name>auto.builder</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>sonatype-oss-release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${javadoc-plugin.version}</version>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>