pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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
  4. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <artifactId>rose</artifactId>
  7. <parent>
  8. <groupId>net.paoding</groupId>
  9. <artifactId>root</artifactId>
  10. <version>1.3-SNAPSHOT</version>
  11. </parent>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-logging</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>net.paoding</groupId>
  19. <artifactId>rose-velocity</artifactId>
  20. <scope>provided</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>commons-logging</groupId>
  24. <artifactId>commons-logging</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>commons-fileupload</groupId>
  28. <artifactId>commons-fileupload</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>net.paoding</groupId>
  32. <artifactId>rose-context</artifactId>
  33. <version>${paoding.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>javax.servlet</groupId>
  37. <artifactId>javax.servlet-api</artifactId>
  38. <scope>provided</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework</groupId>
  42. <artifactId>spring-web</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>javax.servlet</groupId>
  46. <artifactId>jsp-api</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>commons-lang</groupId>
  50. <artifactId>commons-lang</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework</groupId>
  54. <artifactId>spring-context</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework</groupId>
  58. <artifactId>spring-context-support</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework</groupId>
  62. <artifactId>spring-webmvc</artifactId>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-jar-plugin</artifactId>
  70. <configuration>
  71. <archive>
  72. <manifestEntries>
  73. <Rose>*</Rose>
  74. </manifestEntries>
  75. </archive>
  76. </configuration>
  77. </plugin>
  78. </plugins>
  79. </build>
  80. </project>