pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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.backend</groupId>
  6. <artifactId>themis-backend</artifactId>
  7. <version>1.0.0</version>
  8. <packaging>jar</packaging>
  9. <parent>
  10. <groupId>com.qmth.themis</groupId>
  11. <artifactId>themis-service</artifactId>
  12. <version>1.0.0</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>com.qmth.themis.mq</groupId>
  25. <artifactId>themis-mq</artifactId>
  26. </dependency>
  27. <!-- <dependency>-->
  28. <!-- <groupId>org.springframework.boot</groupId>-->
  29. <!-- <artifactId>spring-boot-starter-data-mongodb</artifactId>-->
  30. <!-- </dependency>-->
  31. <!-- <dependency>-->
  32. <!-- <groupId>org.springframework.boot</groupId>-->
  33. <!-- <artifactId>spring-boot-starter-data-elasticsearch</artifactId>-->
  34. <!-- </dependency>-->
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-websocket</artifactId>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <plugins>
  42. <plugin>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-maven-plugin</artifactId>
  45. <configuration>
  46. <includeSystemScope>true</includeSystemScope>
  47. </configuration>
  48. </plugin>
  49. <plugin>
  50. <groupId>com.spotify</groupId>
  51. <artifactId>dockerfile-maven-plugin</artifactId>
  52. <version>1.4.12</version>
  53. <configuration>
  54. <repository>registry.cn-shenzhen.aliyuncs.com/themis/admin</repository>
  55. <tag>${project.version}</tag>
  56. <contextDirectory>${project.baseDir}</contextDirectory>
  57. <useMavenSettingsForAuth>true</useMavenSettingsForAuth>
  58. <pullNewerImage>true</pullNewerImage>
  59. <buildArgs>
  60. <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
  61. </buildArgs>
  62. </configuration>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. </project>