pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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.scm</groupId>
  10. <artifactId>style24.scm</artifactId>
  11. <packaging>war</packaging>
  12. <name>style24.scm</name>
  13. <description>STYLE24 SCM</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.1-RELEASE</version>
  37. <scope>system</scope>
  38. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-core-1.7.1-RELEASE.jar</systemPath>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.gagaframework</groupId>
  42. <artifactId>gagaframework-web-security</artifactId>
  43. <version>1.7.1-RELEASE</version>
  44. <scope>system</scope>
  45. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-security-1.7.1-RELEASE.jar</systemPath>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.gagaframework</groupId>
  49. <artifactId>gagaframework-web-parameter</artifactId>
  50. <version>1.7-RELEASE</version>
  51. <scope>system</scope>
  52. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-parameter-1.7-RELEASE.jar</systemPath>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.gagaframework</groupId>
  56. <artifactId>gagaframework-web-rest</artifactId>
  57. <version>1.7.1-RELEASE</version>
  58. <scope>system</scope>
  59. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-rest-1.7-RELEASE.jar</systemPath>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.gagaframework</groupId>
  63. <artifactId>gagaframework-web-util</artifactId>
  64. <version>1.7-RELEASE</version>
  65. <scope>system</scope>
  66. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-util-1.7-RELEASE.jar</systemPath>
  67. </dependency>
  68. <!-- \\\ WEB-INF lib -->
  69. </dependencies>
  70. <build>
  71. <finalName>${project.name}</finalName>
  72. <resources>
  73. <resource>
  74. <directory>src/main/java</directory>
  75. <includes>
  76. <include>**/*.xml</include>
  77. </includes>
  78. </resource>
  79. <resource>
  80. <directory>src/main/resources</directory>
  81. <includes>
  82. <include>**/*</include>
  83. </includes>
  84. </resource>
  85. </resources>
  86. </build>
  87. </project>