| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 | 
							- <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.iamberry</groupId>
 
- 		<artifactId>iamberry-parent</artifactId>
 
- 		<version>1.0.0</version>
 
- 	</parent>
 
- 	
 
- 	<!-- 系统公众的核心模块,编写核心的数据模块(公众的Bean等等) -->
 
- 	<artifactId>wateroPF-common-core</artifactId>
 
- 	
 
- 	<!-- 核心模块依赖tool -->
 
- 	<dependencies>
 
- 		<dependency>
 
- 			<groupId>com.iamberry</groupId>
 
- 			<artifactId>wateroPF-common-tool</artifactId>
 
- 			<version>1.0.0</version>
 
- 		</dependency>
 
- 	</dependencies>
 
- 	<build>
 
- 		<plugins>
 
- 			<plugin>
 
- 				<groupId>org.apache.maven.plugins</groupId>
 
- 				<artifactId>maven-compiler-plugin</artifactId>
 
- 				<version>3.3</version>
 
- 				<configuration>
 
- 					<source>1.7</source>
 
- 					<target>1.7</target>
 
- 				</configuration>
 
- 			</plugin>
 
- 			<plugin>
 
- 				<groupId>org.sonarsource.scanner.maven</groupId>
 
- 				<artifactId>sonar-maven-plugin</artifactId>
 
- 				<version>3.3.0.603</version>
 
- 			</plugin>
 
- 		</plugins>
 
- 	</build>
 
- 	<!-- 配置 -->
 
- 	<profiles>
 
- 		<profile>
 
- 			<id>sonar</id>
 
- 			<activation>
 
- 				<activeByDefault>true</activeByDefault>
 
- 			</activation>
 
- 			<properties>
 
- 				<sonar.host.url>http://sonar.iamberry.com/</sonar.host.url>
 
- 				<sonar.login>admin</sonar.login>
 
- 				<sonar.password>iamberry123</sonar.password>
 
- 			</properties>
 
- 		</profile>
 
- 	</profiles>
 
- </project>
 
 
  |