4 Star 3 Fork 3

zhulsz/pay-server

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 2.75 KB
一键复制 编辑 原始数据 按行查看 历史
zhulsz 提交于 2016-05-05 16:50 . 重新构建项目框架
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.appointment</groupId>
<artifactId>pay</artifactId>
<version>1.0.0-SNAPSHOT</version>
<modules>
<module>pay-core</module>
<module>pay-rest</module>
<module>pay-task</module>
<module>pay-web-remote</module>
</modules>
<packaging>pom</packaging>
<properties>
<platform.version>2.4.0-RELEASE</platform.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.2.6.RELEASE</version>
</parent>
<repositories>
<repository>
<id>nexus</id>
<name>nexus</name>
<url>http://192.168.1.241:8081/nexus/content/groups/public/</url>
</repository>
</repositories>
<profiles>
<profile>
<id>dev</id>
<properties>
<env>src/main/resources</env>
</properties>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<id>test</id>
<properties>
<env>doc/resourceTest</env>
</properties>
</profile>
<profile>
<id>uat</id>
<properties>
<env>doc/resourcePre</env>
</properties>
</profile>
<profile>
<id>prod</id>
<properties>
<env>doc/resourceLine</env>
</properties>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<show>private</show>
<nohelp>true</nohelp>
</configuration>
</plugin>
</plugins>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/zhulsz/pay-server.git
git@gitee.com:zhulsz/pay-server.git
zhulsz
pay-server
pay-server
master

搜索帮助