pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. <!-- 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-thymeleaf</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>nz.net.ultraq.thymeleaf</groupId>
  37. <artifactId>thymeleaf-layout-dialect</artifactId>
  38. </dependency>
  39. <!-- /// WEB-INF lib -->
  40. <dependency>
  41. <groupId>com.gagaframework</groupId>
  42. <artifactId>gagaframework-web-core</artifactId>
  43. <version>1.7.1-RELEASE</version>
  44. <scope>system</scope>
  45. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-core-1.7.1-RELEASE.jar</systemPath>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.gagaframework</groupId>
  49. <artifactId>gagaframework-web-security</artifactId>
  50. <version>1.7.2-RELEASE</version>
  51. <scope>system</scope>
  52. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-security-1.7.2-RELEASE.jar</systemPath>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.gagaframework</groupId>
  56. <artifactId>gagaframework-web-parameter</artifactId>
  57. <version>1.7-RELEASE</version>
  58. <scope>system</scope>
  59. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-parameter-1.7-RELEASE.jar</systemPath>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.gagaframework</groupId>
  63. <artifactId>gagaframework-web-rest</artifactId>
  64. <version>1.7.1-RELEASE</version>
  65. <scope>system</scope>
  66. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-rest-1.7-RELEASE.jar</systemPath>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.gagaframework</groupId>
  70. <artifactId>gagaframework-web-util</artifactId>
  71. <version>1.7-RELEASE</version>
  72. <scope>system</scope>
  73. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-util-1.7-RELEASE.jar</systemPath>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.gagaframework</groupId>
  77. <artifactId>gagaframework-excel</artifactId>
  78. <version>1.7.1-RELEASE</version>
  79. <scope>system</scope>
  80. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-excel-1.7.1-RELEASE.jar</systemPath>
  81. </dependency>
  82. <!-- \\\ WEB-INF lib -->
  83. </dependencies>
  84. <build>
  85. <finalName>${project.name}</finalName>
  86. <resources>
  87. <resource>
  88. <directory>src/main/java</directory>
  89. <includes>
  90. <include>**/*.xml</include>
  91. </includes>
  92. </resource>
  93. <resource>
  94. <directory>src/main/resources</directory>
  95. <includes>
  96. <include>**/*</include>
  97. </includes>
  98. </resource>
  99. </resources>
  100. </build>
  101. </project>