pom.xml 2.7 KB

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