pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. <!-- /// WEB-INF lib -->
  33. <dependency>
  34. <groupId>com.gagaframework</groupId>
  35. <artifactId>gagaframework-web-core</artifactId>
  36. <version>1.7-RELEASE</version>
  37. <scope>system</scope>
  38. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-core-1.7-RELEASE.jar</systemPath>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.gagaframework</groupId>
  42. <artifactId>gagaframework-web-parameter</artifactId>
  43. <version>1.7-RELEASE</version>
  44. <scope>system</scope>
  45. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-parameter-1.7-RELEASE.jar</systemPath>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.gagaframework</groupId>
  49. <artifactId>gagaframework-web-rest</artifactId>
  50. <version>1.7.1-RELEASE</version>
  51. <scope>system</scope>
  52. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-rest-1.7-RELEASE.jar</systemPath>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.gagaframework</groupId>
  56. <artifactId>gagaframework-web-util</artifactId>
  57. <version>1.7-RELEASE</version>
  58. <scope>system</scope>
  59. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-util-1.7-RELEASE.jar</systemPath>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.gagaframework</groupId>
  63. <artifactId>gagaframework-excel</artifactId>
  64. <version>1.7.1-RELEASE</version>
  65. <scope>system</scope>
  66. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-excel-1.7.1-RELEASE.jar</systemPath>
  67. </dependency>
  68. <!-- \\\ WEB-INF lib -->
  69. <dependency>
  70. <groupId>servlets.com</groupId>
  71. <artifactId>cos</artifactId>
  72. <version>05Nov2002</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>commons-fileupload</groupId>
  76. <artifactId>commons-fileupload</artifactId>
  77. <version>1.4</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>commons-io</groupId>
  81. <artifactId>commons-io</artifactId>
  82. <version>2.6</version>
  83. </dependency>
  84. </dependencies>
  85. <build>
  86. <finalName>${project.name}</finalName>
  87. <resources>
  88. <resource>
  89. <directory>src/main/java</directory>
  90. <includes>
  91. <include>**/*.xml</include>
  92. </includes>
  93. </resource>
  94. <resource>
  95. <directory>src/main/resources</directory>
  96. <includes>
  97. <include>**/*</include>
  98. </includes>
  99. </resource>
  100. </resources>
  101. </build>
  102. </project>