1 Star 0 Fork 83

zhang/sdk-alipay

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 8.07 KB
一键复制 编辑 原始数据 按行查看 历史
guerlab 提交于 2017-10-24 10:06 . 优化依赖
<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>
<groupId>net.guerlab</groupId>
<artifactId>sdk-alipay</artifactId>
<version>1.0.3</version>
<packaging>pom</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>alipay component with spring boot</description>
<url>https://gitee.com/guerlab_net/sdk-alipay</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>
<id>guer</id>
<name>guer</name>
<email>master@guerlab.net</email>
<organization>guerlab</organization>
<organizationUrl>http://www.guerlab.net</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://gitee.com/guerlab_net/sdk-alipay.git</connection>
<developerConnection>scm:git:https://gitee.com/guerlab_net/sdk-alipay.git</developerConnection>
<url>https://gitee.com/guerlab_net/sdk-alipay</url>
<tag>HEAD</tag>
</scm>
<properties>
<java.version>1.8</java.version>
<junit.version>4.12</junit.version>
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
<plugin.javadoc.version>2.10.2</plugin.javadoc.version>
<plugin.deploy.version>2.8.2</plugin.deploy.version>
<project.encoding>UTF-8</project.encoding>
<slf4j.version>1.7.25</slf4j.version>
<spring.version>5.0.0.RELEASE</spring.version>
<spring-boot.version>1.5.7.RELEASE</spring-boot.version>
<swagger.version>1.5.16</swagger.version>
</properties>
<repositories>
<repository>
<id>guerlab</id>
<url>http://maven.guerlab.net/repository/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>guerlab</id>
<url>http://maven.guerlab.net/repository/public/</url>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
<downloadUrl>https://gitee.com/guerlab_net</downloadUrl>
<repository>
<id>guerlab-release</id>
<name>guerlab Release Repository</name>
<url>http://maven.guerlab.net/repository/guerlab-release</url>
</repository>
<snapshotRepository>
<id>guerlab-snapshot</id>
<name>guerlab Snapshot Repository</name>
<url>http://maven.guerlab.net/repository/guerlab-snapshot</url>
</snapshotRepository>
</distributionManagement>
<profiles>
<profile>
<id>guerlab</id>
<repositories>
<repository>
<id>guerlab-snapshot</id>
<name>guerlab Snapshots</name>
<url>http://maven.guerlab.net/repository/guerlab-snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>guerlab-releases</id>
<name>guerlab Releases</name>
<url>http://maven.guerlab.net/repository/release</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>guerlab-snapshot</id>
<name>guerlab Snapshots</name>
<url>http://maven.guerlab.net/repository/guerlab-snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
<profile>
<id>central</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg-plugin.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
</profiles>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<verbose>true</verbose>
<dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
<generateGitPropertiesFile>true</generateGitPropertiesFile>
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${project.encoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>${project.encoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${plugin.javadoc.version}</version>
<configuration>
<encoding>${project.encoding}</encoding>
<aggregate>true</aggregate>
<charset>${project.encoding}</charset>
<docencoding>${project.encoding}</docencoding>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<modules>
<module>sdk-alipay-core</module>
<module>sdk-alipay-autoconfigue</module>
<module>sdk-alipay-starter</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>net.guerlab</groupId>
<artifactId>sdk-alipay-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.guerlab</groupId>
<artifactId>sdk-alipay-autoconfigue</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-annotations</artifactId>
<version>${swagger.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/webstite/sdk-alipay.git
git@gitee.com:webstite/sdk-alipay.git
webstite
sdk-alipay
sdk-alipay
master

搜索帮助