pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.style24</groupId>
  6. <artifactId>root</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <groupId>com.style24.admin</groupId>
  10. <artifactId>style24.admin</artifactId>
  11. <packaging>war</packaging>
  12. <name>style24.admin</name>
  13. <description>STYLE24 Admin</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-security</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.security</groupId>
  21. <artifactId>spring-security-test</artifactId>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>nz.net.ultraq.thymeleaf</groupId>
  30. <artifactId>thymeleaf-layout-dialect</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>servlets.com</groupId>
  34. <artifactId>cos</artifactId>
  35. <version>05Nov2002</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>commons-fileupload</groupId>
  39. <artifactId>commons-fileupload</artifactId>
  40. <version>1.4</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>commons-io</groupId>
  44. <artifactId>commons-io</artifactId>
  45. <version>2.6</version>
  46. </dependency>
  47. <!-- /// WEB-INF lib -->
  48. <dependency>
  49. <groupId>com.gagaframework</groupId>
  50. <artifactId>gagaframework-web-core</artifactId>
  51. <version>1.7.1-RELEASE</version>
  52. <scope>system</scope>
  53. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-core-1.7.1-RELEASE.jar</systemPath>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.gagaframework</groupId>
  57. <artifactId>gagaframework-web-security</artifactId>
  58. <version>1.7.1-RELEASE</version>
  59. <scope>system</scope>
  60. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-security-1.7.1-RELEASE.jar</systemPath>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.gagaframework</groupId>
  64. <artifactId>gagaframework-web-parameter</artifactId>
  65. <version>1.7-RELEASE</version>
  66. <scope>system</scope>
  67. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-parameter-1.7-RELEASE.jar</systemPath>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.gagaframework</groupId>
  71. <artifactId>gagaframework-web-rest</artifactId>
  72. <version>1.7.1-RELEASE</version>
  73. <scope>system</scope>
  74. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-rest-1.7-RELEASE.jar</systemPath>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.gagaframework</groupId>
  78. <artifactId>gagaframework-web-util</artifactId>
  79. <version>1.7-RELEASE</version>
  80. <scope>system</scope>
  81. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-util-1.7-RELEASE.jar</systemPath>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.gagaframework</groupId>
  85. <artifactId>gagaframework-excel</artifactId>
  86. <version>1.7.1-RELEASE</version>
  87. <scope>system</scope>
  88. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-excel-1.7.1-RELEASE.jar</systemPath>
  89. </dependency>
  90. <!-- \\\ WEB-INF lib -->
  91. </dependencies>
  92. <build>
  93. <finalName>${project.name}</finalName>
  94. <resources>
  95. <resource>
  96. <directory>src/main/java</directory>
  97. <includes>
  98. <include>**/*.xml</include>
  99. </includes>
  100. </resource>
  101. <resource>
  102. <directory>src/main/resources</directory>
  103. <includes>
  104. <include>**/*</include>
  105. </includes>
  106. </resource>
  107. </resources>
  108. </build>
  109. </project>