pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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. <!-- Maven module core -->
  16. <dependency>
  17. <groupId>com.style24.core</groupId>
  18. <artifactId>style24-core</artifactId>
  19. </dependency>
  20. <!--// Maven module core -->
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-security</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.security</groupId>
  27. <artifactId>spring-security-test</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-mobile</artifactId>
  33. <version>1.5.22.RELEASE</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>nz.net.ultraq.thymeleaf</groupId>
  41. <artifactId>thymeleaf-layout-dialect</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>servlets.com</groupId>
  45. <artifactId>cos</artifactId>
  46. <version>05Nov2002</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>commons-fileupload</groupId>
  50. <artifactId>commons-fileupload</artifactId>
  51. <version>1.4</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>commons-io</groupId>
  55. <artifactId>commons-io</artifactId>
  56. <version>2.6</version>
  57. </dependency>
  58. <!-- /// WEB-INF lib -->
  59. <dependency>
  60. <groupId>com.gagaframework</groupId>
  61. <artifactId>gagaframework-web-core</artifactId>
  62. <version>1.7.1-RELEASE</version>
  63. <scope>system</scope>
  64. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-core-1.7.1-RELEASE.jar</systemPath>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.gagaframework</groupId>
  68. <artifactId>gagaframework-web-security</artifactId>
  69. <version>1.7.2-RELEASE</version>
  70. <scope>system</scope>
  71. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-security-1.7.2-RELEASE.jar</systemPath>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.gagaframework</groupId>
  75. <artifactId>gagaframework-web-parameter</artifactId>
  76. <version>1.7-RELEASE</version>
  77. <scope>system</scope>
  78. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-parameter-1.7-RELEASE.jar</systemPath>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.gagaframework</groupId>
  82. <artifactId>gagaframework-web-rest</artifactId>
  83. <version>1.7.1-RELEASE</version>
  84. <scope>system</scope>
  85. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-rest-1.7-RELEASE.jar</systemPath>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.gagaframework</groupId>
  89. <artifactId>gagaframework-web-util</artifactId>
  90. <version>1.7-RELEASE</version>
  91. <scope>system</scope>
  92. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-util-1.7-RELEASE.jar</systemPath>
  93. </dependency>
  94. <!--NICE-->
  95. <dependency>
  96. <groupId>com.NiceID</groupId>
  97. <artifactId>NiceID</artifactId>
  98. <version>1.0</version>
  99. <scope>system</scope>
  100. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/NiceID.jar</systemPath>
  101. </dependency>
  102. <!--//NICE-->
  103. <!-- \\\ WEB-INF lib -->
  104. </dependencies>
  105. <build>
  106. <finalName>${project.name}</finalName>
  107. <resources>
  108. <resource>
  109. <directory>src/main/java</directory>
  110. <includes>
  111. <include>**/*.xml</include>
  112. </includes>
  113. </resource>
  114. <resource>
  115. <directory>src/main/resources</directory>
  116. <includes>
  117. <include>**/*</include>
  118. </includes>
  119. </resource>
  120. </resources>
  121. </build>
  122. </project>