pom.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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.core</groupId>
  10. <artifactId>style24.core</artifactId>
  11. <packaging>jar</packaging>
  12. <name>style24.core</name>
  13. <description>STYLE24 Core</description>
  14. <dependencies>
  15. <!-- /// WEB-INF lib -->
  16. <dependency>
  17. <groupId>com.gagaframework</groupId>
  18. <artifactId>gagaframework-web-core</artifactId>
  19. <version>1.7.1-RELEASE</version>
  20. <scope>system</scope>
  21. <systemPath>${basedir}/lib/gagaframework-web-core-1.7.1-RELEASE.jar</systemPath>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.gagaframework</groupId>
  25. <artifactId>gagaframework-web-security</artifactId>
  26. <version>1.7.2-RELEASE</version>
  27. <scope>system</scope>
  28. <systemPath>${basedir}/lib/gagaframework-web-security-1.7.2-RELEASE.jar</systemPath>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.gagaframework</groupId>
  32. <artifactId>gagaframework-web-parameter</artifactId>
  33. <version>1.7-RELEASE</version>
  34. <scope>system</scope>
  35. <systemPath>${basedir}/lib/gagaframework-web-parameter-1.7-RELEASE.jar</systemPath>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.gagaframework</groupId>
  39. <artifactId>gagaframework-web-rest</artifactId>
  40. <version>1.7.1-RELEASE</version>
  41. <scope>system</scope>
  42. <systemPath>${basedir}/lib/gagaframework-web-rest-1.7-RELEASE.jar</systemPath>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.gagaframework</groupId>
  46. <artifactId>gagaframework-web-util</artifactId>
  47. <version>1.7-RELEASE</version>
  48. <scope>system</scope>
  49. <systemPath>${basedir}/lib/gagaframework-web-util-1.7-RELEASE.jar</systemPath>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.gagaframework</groupId>
  53. <artifactId>gagaframework-excel</artifactId>
  54. <version>1.7.1-RELEASE</version>
  55. <scope>system</scope>
  56. <systemPath>${basedir}/lib/gagaframework-excel-1.7.1-RELEASE.jar</systemPath>
  57. </dependency>
  58. <!-- \\\ WEB-INF lib -->
  59. </dependencies>
  60. <build>
  61. <finalName>${project.name}</finalName>
  62. <resources>
  63. <resource>
  64. <directory>src/main/java</directory>
  65. <includes>
  66. <include>**/*.xml</include>
  67. </includes>
  68. </resource>
  69. <resource>
  70. <directory>src/main/resources</directory>
  71. <includes>
  72. <include>**/*</include>
  73. </includes>
  74. </resource>
  75. </resources>
  76. </build>
  77. </project>