pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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-context</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>commons-lang</groupId>
  22. <artifactId>commons-lang</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework</groupId>
  26. <artifactId>spring-context</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>javax.servlet</groupId>
  30. <artifactId>javax.servlet-api</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.alibaba</groupId>
  38. <artifactId>fastjson</artifactId>
  39. </dependency>
  40. </dependencies>
  41. <build>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.apache.maven.plugins</groupId>
  45. <artifactId>maven-jar-plugin</artifactId>
  46. <configuration>
  47. <archive>
  48. <manifestEntries>
  49. <Rose>*</Rose>
  50. </manifestEntries>
  51. </archive>
  52. </configuration>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>