pom.xml 4.0 KB

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