智能库房综合管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

117 lines
4.1 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>yxk_StoreroomSystem</artifactId>
  7. <groupId>com.storeroom</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>storeroom</artifactId>
  12. <name>库房管理</name>
  13. <properties>
  14. <maven.compiler.source>17</maven.compiler.source>
  15. <maven.compiler.target>17</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.storeroom</groupId>
  20. <artifactId>common</artifactId>
  21. <version>1.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>io.netty</groupId>
  25. <artifactId>netty-all</artifactId>
  26. <version>4.1.77.Final</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.ejlchina</groupId>
  30. <artifactId>okhttps-fastjson</artifactId>
  31. <version>3.5.2</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>cn.hutool</groupId>
  35. <artifactId>hutool-all</artifactId>
  36. <version>5.8.3</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.storeroom</groupId>
  40. <artifactId>logging</artifactId>
  41. <version>1.0</version>
  42. </dependency>
  43. <!-- <dependency>-->
  44. <!-- <groupId>com.netsdk</groupId>-->
  45. <!-- <artifactId>netsdk</artifactId>-->
  46. <!-- <version>1.0</version>-->
  47. <!-- <scope>system</scope>-->
  48. <!-- <systemPath>${pom.basedir}/src/main/resources/lib/netsdk.jar</systemPath>-->
  49. <!-- </dependency>-->
  50. <dependency>
  51. <groupId>com.AbsoluteLayout</groupId>
  52. <artifactId>AbsoluteLayout</artifactId>
  53. <version>1.0</version>
  54. <scope>system</scope>
  55. <systemPath>${pom.basedir}/src/main/resources/lib/AbsoluteLayout.jar</systemPath>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.jna</groupId>
  59. <artifactId>jna</artifactId>
  60. <version>1.0</version>
  61. <scope>system</scope>
  62. <systemPath>${pom.basedir}/src/main/resources/lib/jna.jar</systemPath>
  63. </dependency>
  64. <!-- <dependency>-->
  65. <!-- <groupId>com.jnaerator-runtime</groupId>-->
  66. <!-- <artifactId>jnaerator-runtime</artifactId>-->
  67. <!-- <version>1.0</version>-->
  68. <!-- <scope>system</scope>-->
  69. <!-- <systemPath>${pom.basedir}/src/main/resources/lib/jnaerator-runtime.jar</systemPath>-->
  70. <!-- </dependency>-->
  71. <dependency>
  72. <groupId>com.rt</groupId>
  73. <artifactId>rt</artifactId>
  74. <version>1.0</version>
  75. <scope>system</scope>
  76. <systemPath>${pom.basedir}/src/main/resources/lib/rt.jar</systemPath>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.swing-layout-1.0.3</groupId>
  80. <artifactId>swing-layout-1.0.3</artifactId>
  81. <version>1.0.3</version>
  82. <scope>system</scope>
  83. <systemPath>${pom.basedir}/src/main/resources/lib/swing-layout-1.0.3.jar</systemPath>
  84. </dependency>
  85. <dependency>
  86. <groupId>net.java.dev.jna</groupId>
  87. <artifactId>jna</artifactId>
  88. <version>5.12.1</version>
  89. </dependency>
  90. </dependencies>
  91. <build>
  92. <resources>
  93. <resource>
  94. <directory>${project.basedir}/lib</directory>
  95. <targetPath>BOOT-INF/lib/</targetPath>
  96. <includes>
  97. <include>**/*.jar</include>
  98. </includes>
  99. </resource>
  100. <resource>
  101. <directory>src/main/resources</directory>
  102. <targetPath>BOOT-INF/classes/</targetPath>
  103. </resource>
  104. </resources>
  105. </build>
  106. </project>