1 Star 0 Fork 74

javajiao / dddplus

forked from Gitee 极速下载 / dddplus 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 9.56 KB
一键复制 编辑 原始数据 按行查看 历史
FunkyGao 提交于 2020-11-24 08:55 . version upgrade to 1.1.1-SNAPSHOT
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.dddplus</groupId>
<artifactId>dddplus</artifactId>
<packaging>pom</packaging>
<version>1.1.1-SNAPSHOT</version>
<name>DDDplus Framework</name>
<description>A lightweight flexible development framework for complex business architecture with full ecosystem!</description>
<url>https://github.com/dddplus/dddplus</url>
<inceptionYear>2020</inceptionYear>
<modules>
<module>dddplus-spec</module>
<module>dddplus-runtime</module>
<module>dddplus-plugin</module>
<module>dddplus-enforce</module>
<module>dddplus-unit</module>
</modules>
<properties>
<!-- build configs -->
<jdk.version>1.8</jdk.version>
<maven.compiler.failOnError>true</maven.compiler.failOnError>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.jacoco.version>0.8.5</maven.jacoco.version>
<maven.deploy.skip>false</maven.deploy.skip>
<!-- unified 3rd party dependencies version -->
<lombok.version>1.18.8</lombok.version>
<javax.validation.version>1.1.0.Final</javax.validation.version>
<slf4j.version>1.7.25</slf4j.version>
<junit.version>4.13.1</junit.version>
<archunit.version>0.13.1</archunit.version>
<spring.version>4.3.12.RELEASE</spring.version>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<defaultGoal>package</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.21.0</version>
<configuration>
<skipTests>false</skipTests>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<aggregate>true</aggregate>
<encoding>${project.build.sourceEncoding}</encoding>
<excludePackageNames>org.example*</excludePackageNames>
<additionalJOption>-Xdoclint:none</additionalJOption>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- Required by maven ossrh -->
<scm>
<connection>scm:git:https://github.com/dddplus/dddplus.git</connection>
<developerConnection>scm:git:git@github.com:dddplus/dddplus.git</developerConnection>
<url>https://github.com/dddplus/dddplus/</url>
<tag>v1.1.0</tag>
</scm>
<issueManagement>
<system>github</system>
<url>https://github.com/dddplus/dddplus/issues</url>
</issueManagement>
<developers>
<developer>
<id>funkygao</id>
<name>Funky Gao</name>
<email>funky.gao@gmail.com</email>
<url>https://funkygao.github.io/</url>
<organization>JD</organization>
<organizationUrl>https://www.jd.com/</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<profiles>
<profile>
<id>test</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${maven.jacoco.version}</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<modules>
<module>dddplus-test</module>
</modules>
</profile>
<!-- 本地安装profile,不安装dddplus-test -->
<profile>
<id>install</id>
</profile>
<!-- release to maven central repo: OSS Repository Hosting https://central.sonatype.org/pages/ossrh-guide.html -->
<profile>
<id>ossrh</id>
<properties>
<gpg.executable>gpg2</gpg.executable>
</properties>
<distributionManagement>
<!-- 这里的id ossrh 需要和setting.xml里面server节点配置的id一致 -->
<snapshotRepository>
<id>ossrh</id>
<name>OSS Snapshots Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<name>OSS Staging Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>${maven.deploy.skip}</skip>
</configuration>
</plugin>
<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</goal>
</goals>
</execution>
</executions>
</plugin>
<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>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
Java
1
https://gitee.com/javajiao/dddplus.git
git@gitee.com:javajiao/dddplus.git
javajiao
dddplus
dddplus
master

搜索帮助