| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | 
							- <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>watero-common-core</artifactId>
 
- 	
 
- 	<!-- 核心模块依赖tool -->
 
- 	<dependencies>
 
- 		<dependency>
 
- 			<groupId>com.iamberry</groupId>
 
- 			<artifactId>watero-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>
 
- 		</plugins>
 
- 	</build>
 
- 	<!-- 配置 -->
 
- 	<profiles>
 
- 		<profile>
 
- 			<id>jdk-1.7</id>
 
- 			<activation>
 
- 				<activeByDefault>true</activeByDefault>
 
- 				<jdk>1.7</jdk>
 
- 			</activation>
 
- 			<properties>
 
- 				<maven.compiler.source>1.7</maven.compiler.source>
 
- 				<maven.compiler.target>1.7</maven.compiler.target>
 
- 				<maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>
 
- 			</properties>
 
- 		</profile>
 
- 	</profiles>
 
- </project>
 
 
  |