pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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.front</groupId>
  10. <artifactId>style24.front</artifactId>
  11. <packaging>war</packaging>
  12. <name>style24.front</name>
  13. <description>STYLE24 Front</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-mobile</artifactId>
  27. <version>1.5.22.RELEASE</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>nz.net.ultraq.thymeleaf</groupId>
  35. <artifactId>thymeleaf-layout-dialect</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>servlets.com</groupId>
  39. <artifactId>cos</artifactId>
  40. <version>05Nov2002</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>commons-fileupload</groupId>
  44. <artifactId>commons-fileupload</artifactId>
  45. <version>1.4</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>commons-io</groupId>
  49. <artifactId>commons-io</artifactId>
  50. <version>2.6</version>
  51. </dependency>
  52. <!-- /// WEB-INF lib -->
  53. <dependency>
  54. <groupId>com.gagaframework</groupId>
  55. <artifactId>gagaframework-web-core</artifactId>
  56. <version>1.7.1-RELEASE</version>
  57. <scope>system</scope>
  58. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-core-1.7.1-RELEASE.jar</systemPath>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.gagaframework</groupId>
  62. <artifactId>gagaframework-web-security</artifactId>
  63. <version>1.7.1-RELEASE</version>
  64. <scope>system</scope>
  65. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-security-1.7.1-RELEASE.jar</systemPath>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.gagaframework</groupId>
  69. <artifactId>gagaframework-web-parameter</artifactId>
  70. <version>1.7-RELEASE</version>
  71. <scope>system</scope>
  72. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-parameter-1.7-RELEASE.jar</systemPath>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.gagaframework</groupId>
  76. <artifactId>gagaframework-web-rest</artifactId>
  77. <version>1.7.1-RELEASE</version>
  78. <scope>system</scope>
  79. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-rest-1.7-RELEASE.jar</systemPath>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.gagaframework</groupId>
  83. <artifactId>gagaframework-web-util</artifactId>
  84. <version>1.7-RELEASE</version>
  85. <scope>system</scope>
  86. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-util-1.7-RELEASE.jar</systemPath>
  87. </dependency>
  88. <!-- \\\ WEB-INF lib -->
  89. </dependencies>
  90. <build>
  91. <finalName>${project.name}</finalName>
  92. <resources>
  93. <resource>
  94. <directory>src/main/java</directory>
  95. <includes>
  96. <include>**/*.xml</include>
  97. </includes>
  98. </resource>
  99. <resource>
  100. <directory>src/main/resources</directory>
  101. <includes>
  102. <include>**/*</include>
  103. </includes>
  104. </resource>
  105. </resources>
  106. </build>
  107. </project>