pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.qmth.themis.admin</groupId>
  6. <artifactId>themis-admin</artifactId>
  7. <version>1.2.6.1</version>
  8. <packaging>jar</packaging>
  9. <parent>
  10. <groupId>com.qmth.themis</groupId>
  11. <artifactId>themis-service</artifactId>
  12. <version>1.2.6.1</version>
  13. </parent>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.qmth.themis.mq</groupId>
  17. <artifactId>themis-mq</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. </dependency>
  23. <!-- <dependency>-->
  24. <!-- <groupId>org.springframework.boot</groupId>-->
  25. <!-- <artifactId>spring-boot-starter-data-mongodb</artifactId>-->
  26. <!-- </dependency>-->
  27. <!-- <dependency>-->
  28. <!-- <groupId>org.springframework.boot</groupId>-->
  29. <!-- <artifactId>spring-boot-starter-data-elasticsearch</artifactId>-->
  30. <!-- </dependency>-->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-websocket</artifactId>
  34. </dependency>
  35. </dependencies>
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-maven-plugin</artifactId>
  41. <version>2.6.2</version>
  42. <configuration>
  43. <includeSystemScope>true</includeSystemScope>
  44. </configuration>
  45. </plugin>
  46. <plugin>
  47. <groupId>com.spotify</groupId>
  48. <artifactId>dockerfile-maven-plugin</artifactId>
  49. <version>1.4.12</version>
  50. <configuration>
  51. <repository>registry.cn-shenzhen.aliyuncs.com/online_exam/admin</repository>
  52. <tag>${project.version}</tag>
  53. <contextDirectory>${project.baseDir}</contextDirectory>
  54. <useMavenSettingsForAuth>true</useMavenSettingsForAuth>
  55. <pullNewerImage>true</pullNewerImage>
  56. <buildArgs>
  57. <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
  58. </buildArgs>
  59. </configuration>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. </project>