pom.xml 4.0 KB

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