1 Star 11 Fork 5

DiDi-opensource/sds

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 11.63 KB
一键复制 编辑 原始数据 按行查看 历史
manzhizhen 提交于 2020-08-14 02:11 +08:00 . 修复deploy错误
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.didiglobal.sds</groupId>
<artifactId>sds-base</artifactId>
<packaging>pom</packaging>
<version>${revision}</version>
<name>SDS</name>
<modules>
<module>sds-client</module>
<module>sds-admin</module>
<module>sds-bootstrap</module>
<module>sds-extension</module>
<module>sds-easy</module>
<module>sds-example</module>
</modules>
<developers>
<developer>
<name>manzhizhen</name>
<email>835576511@qq.com</email>
</developer>
<developer>
<name>chpengzh</name>
<email>chpengzh@foxmail.com</email>
</developer>
<developer>
<name>masteryourself</name>
</developer>
<developer>
<name>jamesmsw</name>
<email>lovewsic@gmail.com</email>
</developer>
<developer>
<name>Tiger Wang</name>
<email>wangyunbo@didichuxing.com</email>
</developer>
<developer>
<name>huangyiming</name>
<email>huangyiminghappy@163.com</email>
</developer>
<developer>
<name>seasidesky</name>
</developer>
</developers>
<properties>
<revision>1.0.1-SNAPSHOT</revision>
<spring-boot.version>2.1.1.RELEASE</spring-boot.version>
<apache.dubbo.version>2.7.5</apache.dubbo.version>
<!-- Plugin dependency -->
<plugin.spring-boot.version>${spring-boot.version}</plugin.spring-boot.version>
<plugin.exec.version>1.6.0</plugin.exec.version>
</properties>
<dependencyManagement>
<dependencies>
<!-- sds-bom -->
<dependency>
<groupId>com.didiglobal.sds</groupId>
<artifactId>sds-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.didiglobal.sds</groupId>
<artifactId>sds-easy</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.didiglobal.sds</groupId>
<artifactId>sds-dubbo</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.didiglobal.sds</groupId>
<artifactId>sds-okhttp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.didiglobal.sds</groupId>
<artifactId>sds-aspectj</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.didiglobal.sds</groupId>
<artifactId>sds-spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.didiglobal.sds</groupId>
<artifactId>sds-spring-boot-autoconfigure</artifactId>
<version>${project.version}</version>
</dependency>
<!-- sds-dependency-bom -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-dependencies-bom</artifactId>
<version>${apache.dubbo.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo</artifactId>
<version>${apache.dubbo.version}</version>
</dependency>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.60</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.8.1</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.2</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.9.5</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.9.5</version>
</dependency>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.21.0-GA</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>3.8.0</version>
</dependency>
</dependencies>
</dependencyManagement>
<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>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>sonatype_releases</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<configuration>
<archive>
<index>true</index>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
<manifestEntries>
<Specification-Vendor>didichuxing</Specification-Vendor>
</manifestEntries>
</archive>
</configuration>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${plugin.spring-boot.version}</version>
<executions>
<execution>
<goals>
<goal>build-info</goal>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${plugin.exec.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>gpg</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>front</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<modules>
<module>sds-front</module>
</modules>
</profile>
<profile>
<id>release</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
</profiles>
<scm>
<url>https://github.com/didi/sds</url>
<connection>scm:git:https://github.com/didi/sds.git</connection>
<developerConnection>scm:git:https://github.com/didi/sds.git</developerConnection>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>Github Issues</system>
<url>https://github.com/didi/sds/issues</url>
</issueManagement>
<distributionManagement>
<repository>
<id>sonatype_releases</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>sonatype_snapshots</id>
<name>Nexus Snapshot Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/didiopensource/sds.git
git@gitee.com:didiopensource/sds.git
didiopensource
sds
sds
master

搜索帮助