123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <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.xtframe.jdc</groupId>
- <artifactId>project</artifactId>
- <version>1.0.11-SNAPSHOT</version>
- <relativePath>../../</relativePath>
- </parent>
- <artifactId>core</artifactId>
- <name>新通开发框架核心</name>
- <properties>
- <spring.version>4.1.2.RELEASE</spring.version>
- <jdk.version>1.7</jdk.version>
- <jetty.version>7.6.8.v20121106</jetty.version>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <hibernate.version>4.3.7.Final</hibernate.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.xtframe.jdc</groupId>
- <artifactId>util</artifactId>
- </dependency>
- </dependencies>
- <description>提供框架核心定义</description>
- <build>
- <plugins>
- <!-- 要将源码放上去,需要加入这个插件 -->
- <plugin>
- <artifactId>maven-source-plugin</artifactId>
- <configuration>
- <attach>true</attach>
- </configuration>
- <executions>
- <execution>
- <phase>compile</phase>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|