ice-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.waitmoon.ice</groupId> <artifactId>ice-parent</artifactId> <version>0.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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.waitmoon.ice</groupId> <artifactId>ice-parent</artifactId> <version>0.0.1</version> <packaging>pom</packaging> <description>致力于解决灵活繁复的硬编码问题</description> <url>http://waitmoon.com/</url> <name>ice</name> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.0.RELEASE</version> <relativePath/> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> </properties> <dependencies> </dependencies> <modules> <module>ice-common</module> <module>ice-client</module> <module>ice-server</module> <module>ice-test</module> <module>ice-core</module> <module>ice-node-common</module> </modules> <!--许可证信息,根据自己的情况修改--> <licenses> <license> <name>The Apache Software License, Version2.0</name> <url>http://www.apache.org/licenses/</url> <distribution>repo</distribution> </license> </licenses> <!--托管仓库信息,根据自己的应用情况修改--> <scm> <connection>https://github.com/zjn-zjn/ice.git</connection> <developerConnection>https://github.com/zjn-zjn/ice.git</developerConnection> <url>https://github.com/zjn-zjn/ice</url> </scm> <!--开发者信息--> <developers> <developer> <name>zjn</name> <email>995517265@qq.com</email> <url>http://waitmoon.com/</url> <roles> <role>Developer</role> </roles> <timezone>+8</timezone> </developer> </developers> <!--仓库地址配置信息--> <distributionManagement> <snapshotRepository> <id>sonatype-snapshot</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-release</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <!--java source生成插件--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!--java doc生成插件--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!--gpg签名插件--> <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>