code-builder-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.gitee.hengboy</groupId>
<artifactId>code-builder-maven-plugin</artifactId>
<version>1.0.6.RELEASE</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">
<parent>
<artifactId>code-builder</artifactId>
<groupId>com.gitee.hengboy</groupId>
<version>1.0.5.RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>code-builder-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>1.0.6.RELEASE</version>
<dependencies>
<!--Code Builder Core-->
<dependency>
<groupId>com.gitee.hengboy</groupId>
<artifactId>code-builder-core</artifactId>
<version>${code.builder.core.version}</version>
</dependency>
<!--Maven api-->
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${maven.plugin.api.version}</version>
</dependency>
<!--Maven Annotation-->
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>${maven.plugin.annotation.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<developers>
<developer>
<name>Yu Qi Yu</name>
<email>yuqiyu@vip.qq.com</email>
<url>https://www.jianshu.com/u/092df3f77bca</url>
<organization>gitee</organization>
<organizationUrl>https://gitee.com/hengboy</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://gitee.com/hengboy/code-builder</connection>
<developerConnection>scm:git:https://gitee.com/hengboy/code-builder</developerConnection>
<url>https://gitee.com/hengboy/code-builder</url>
<tag>1.0.5.RELEASE</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>hengyu</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>hengyu</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<!-- Source -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Gpg Signature -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>