cigs-4厂 后端下片改造项目
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.
 
 
 
 

102 lines
3.6 KiB

  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>ym-pass</artifactId>
  7. <groupId>com.cnbm</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ym-gateway</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.cnbm</groupId>
  19. <artifactId>ym-common</artifactId>
  20. <version>1.0-SNAPSHOT</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.cnbm</groupId>
  24. <artifactId>ym-admin</artifactId>
  25. <version>1.0-SNAPSHOT</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.cnbm</groupId>
  29. <artifactId>ym-barcode</artifactId>
  30. <version>1.0-SNAPSHOT</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.cnbm</groupId>
  34. <artifactId>ym-basic</artifactId>
  35. <version>1.0-SNAPSHOT</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.cnbm</groupId>
  39. <artifactId>ym-schedule-task</artifactId>
  40. <version>1.0-SNAPSHOT</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.cnbm</groupId>
  44. <artifactId>ym-websocket</artifactId>
  45. <version>1.0-SNAPSHOT</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>io.springfox</groupId>
  49. <artifactId>springfox-boot-starter</artifactId>
  50. <version>3.0.0</version>
  51. <exclusions>
  52. <exclusion>
  53. <groupId>io.swagger</groupId>
  54. <artifactId>swagger-models</artifactId>
  55. </exclusion>
  56. </exclusions>
  57. </dependency>
  58. <dependency>
  59. <groupId>io.swagger</groupId>
  60. <artifactId>swagger-models</artifactId>
  61. <version>1.5.21</version>
  62. </dependency>
  63. </dependencies>
  64. <build>
  65. <finalName>${project.artifactId}</finalName>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-maven-plugin</artifactId>
  70. <version>2.5.12</version>
  71. </plugin>
  72. <plugin>
  73. <groupId>org.apache.maven.plugins</groupId>
  74. <artifactId>maven-surefire-plugin</artifactId>
  75. <configuration>
  76. <skipTests>true</skipTests>
  77. </configuration>
  78. </plugin>
  79. <plugin>
  80. <groupId>com.spotify</groupId>
  81. <artifactId>docker-maven-plugin</artifactId>
  82. <version>${docker.plugin.version}</version>
  83. <configuration>
  84. <imageName>ym-pass/${project.artifactId}</imageName>
  85. <dockerDirectory>${project.basedir}/</dockerDirectory>
  86. <resources>
  87. <resource>
  88. <targetPath>/</targetPath>
  89. <directory>${project.build.directory}</directory>
  90. <include>${project.build.finalName}.jar</include>
  91. </resource>
  92. </resources>
  93. </configuration>
  94. </plugin>
  95. </plugins>
  96. </build>
  97. </project>