pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.xtframe.jdc</groupId>
  6. <artifactId>project</artifactId>
  7. <version>1.0.11-SNAPSHOT</version>
  8. <relativePath>../../</relativePath>
  9. </parent>
  10. <artifactId>core</artifactId>
  11. <name>新通开发框架核心</name>
  12. <properties>
  13. <spring.version>4.1.2.RELEASE</spring.version>
  14. <jdk.version>1.7</jdk.version>
  15. <jetty.version>7.6.8.v20121106</jetty.version>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <hibernate.version>4.3.7.Final</hibernate.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.xtframe.jdc</groupId>
  22. <artifactId>util</artifactId>
  23. </dependency>
  24. </dependencies>
  25. <description>提供框架核心定义</description>
  26. <build>
  27. <plugins>
  28. <!-- 要将源码放上去,需要加入这个插件 -->
  29. <plugin>
  30. <artifactId>maven-source-plugin</artifactId>
  31. <configuration>
  32. <attach>true</attach>
  33. </configuration>
  34. <executions>
  35. <execution>
  36. <phase>compile</phase>
  37. <goals>
  38. <goal>jar</goal>
  39. </goals>
  40. </execution>
  41. </executions>
  42. </plugin>
  43. </plugins>
  44. </build>
  45. </project>