6 Star 2 Fork 3

QY-JAVA-WEB / Purification-Plant-Management-Service-Src

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 2.47 KB
一键复制 编辑 原始数据 按行查看 历史
wangzhen 提交于 2017-06-14 00:18 . 净化物联网平台服务端
<?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.kingyun.gpsinspection.purificationservice</groupId>
<artifactId>purificationservice</artifactId>
<packaging>pom</packaging>
<version>1.1.1</version>
<modules>
<module>ppms-web</module>
<module>ppms-services</module>
<module>ppms-facade</module>
<module>ppms-dao</module>
<module>ppms-common</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<port>8081</port>
<uriEncoding>UTF-8</uriEncoding>
<path>/</path>
</configuration>
</plugin>
<!--maven 编译插件-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<optimize>true</optimize>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>test</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<distributionManagement>
<repository>
<id>nexus-releases</id>
<name>Internal Release Repository</name>
<url>http://192.168.0.186:8081/nexus/content/repositories/releases/</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>online</id>
<distributionManagement>
<repository>
<id>nexus-releases</id>
<name>Internal Release Repository</name>
<url>http://192.168.0.186:8081/nexus/content/repositories/releases/</url>
</repository>
</distributionManagement>
</profile>
</profiles>
</project>
Java
1
https://gitee.com/QY-JAVA-WEB/purification-plant-management-service-src.git
git@gitee.com:QY-JAVA-WEB/purification-plant-management-service-src.git
QY-JAVA-WEB
purification-plant-management-service-src
Purification-Plant-Management-Service-Src
master

搜索帮助