87 Star 284 Fork 168

vakinge / jeesuite-config

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 4.04 KB
一键复制 编辑 原始数据 按行查看 历史
vakinge 提交于 2022-12-03 11:19 . 升级框架版本
<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>com.jeesuite</groupId>
<artifactId>jeesuite-libs</artifactId>
<version>11</version>
</parent>
<artifactId>jeesuite-config</artifactId>
<version>1.3.9-SNAPSHOT</version>
<packaging>pom</packaging>
<description>Distributed configuration center</description>
<name>jeesuite-config</name>
<url>http://www.jeesuite.com</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>vakin jiang</name>
<email>vakinge@gmail.com</email>
<organization>github</organization>
<organizationUrl>https://github.com/vakinge</organizationUrl>
</developer>
</developers>
<scm>
<connection>
scm:git:https://github.com/vakinge/mendmix-config.git
</connection>
<developerConnection>
scm:git:https://github.com/vakinge/mendmix-config.git
</developerConnection>
<url>https://github.com/vakinge/mendmix-config</url>
<tag>v2.0</tag>
</scm>
<modules>
<module>mendmix-config-client</module>
<module>mendmix-config-server</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
<spring-cloud.version>2021.0.1</spring-cloud.version>
<spring-boot.version>2.6.6</spring-boot.version>
<mendmix.version>1.4.2</mendmix.version>
</properties>
<dependencies>
<dependency>
<groupId>com.mendmix</groupId>
<artifactId>mendmix-common</artifactId>
<version>${mendmix.version}</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>false</skip>
</configuration>
</plugin>
<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>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<!-- mvn clean deploy -P release -DskipTests=true -->
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>
Java
1
https://gitee.com/vakinge/jeesuite-config.git
git@gitee.com:vakinge/jeesuite-config.git
vakinge
jeesuite-config
jeesuite-config
master

搜索帮助