pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <artifactId>rose-jade</artifactId>
  6. <parent>
  7. <groupId>net.paoding</groupId>
  8. <artifactId>root</artifactId>
  9. <version>1.3-SNAPSHOT</version>
  10. </parent>
  11. <dependencies>
  12. <dependency>
  13. <groupId>commons-collections</groupId>
  14. <artifactId>commons-collections</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>commons-logging</groupId>
  18. <artifactId>commons-logging</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework</groupId>
  22. <artifactId>spring-jdbc</artifactId>
  23. <scope>compile</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>net.paoding</groupId>
  27. <artifactId>rose-context</artifactId>
  28. <version>${paoding.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>commons-lang</groupId>
  32. <artifactId>commons-lang</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>spring-context</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>javax.servlet</groupId>
  40. <artifactId>javax.servlet-api</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>commons-jexl</groupId>
  44. <artifactId>commons-jexl</artifactId>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <plugins>
  49. <!-- 发布配置 -->
  50. <plugin>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-release-plugin</artifactId>
  53. </plugin>
  54. <plugin>
  55. <groupId>org.apache.maven.plugins</groupId>
  56. <artifactId>maven-jar-plugin</artifactId>
  57. <configuration>
  58. <archive>
  59. <manifestEntries>
  60. <Rose>*</Rose>
  61. </manifestEntries>
  62. </archive>
  63. </configuration>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>