annotation-processor-comment-helper
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.xlmkit</groupId>
<artifactId>annotation-processor-comment-helper</artifactId>
<version>1.0.1</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>com.github.xlmkit</groupId> <artifactId>annotation-processor-comment-helper</artifactId> <version>1.0.1</version> <name>注解处理器</name> <description>注释生成properties文件</description> <developers> <developer> <name>小龙码</name> <email>502585961@qq.com</email> </developer> </developers> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:https://github.com/xlmkit/annotation-processor-comment-helper.git</connection> <developerConnection>scm:git:https://github.com/xlmkit/annotation-processor-comment-helper.git</developerConnection> <url>git:https://github.com/xlmkit/annotation-processor-comment-helper.git</url> </scm> <url>https://github.com/xlmkit/annotation-processor-comment-helper</url> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> </properties> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>sonatype-nexus-releases</id> <name>Nexus Release Repository</name> <url>https://s01.oss.sonatype.org/content/repositories/releases/</url> </repository> </distributionManagement> <build> <sourceDirectory>src/main/java</sourceDirectory> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*</include> </includes> <filtering>false</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>1.8</source> <target>1.8</target> <compilerArgument>-proc:none</compilerArgument> </configuration> </plugin> </plugins> </build> </project>