12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.qmth.themis.backend</groupId>
- <artifactId>themis-backend</artifactId>
- <version>1.0.0</version>
- <packaging>jar</packaging>
- <parent>
- <groupId>com.qmth.themis</groupId>
- <artifactId>themis-service</artifactId>
- <version>1.0.0</version>
- </parent>
- <dependencies>
- <dependency>
- <groupId>com.qmth.themis.mq</groupId>
- <artifactId>themis-mq</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>com.qmth.themis.mq</groupId>
- <artifactId>themis-mq</artifactId>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.springframework.boot</groupId>-->
- <!-- <artifactId>spring-boot-starter-data-mongodb</artifactId>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.springframework.boot</groupId>-->
- <!-- <artifactId>spring-boot-starter-data-elasticsearch</artifactId>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-websocket</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <includeSystemScope>true</includeSystemScope>
- </configuration>
- </plugin>
- <plugin>
- <groupId>com.spotify</groupId>
- <artifactId>dockerfile-maven-plugin</artifactId>
- <version>1.4.12</version>
- <configuration>
- <repository>registry.cn-shenzhen.aliyuncs.com/themis/admin</repository>
- <tag>${project.version}</tag>
- <contextDirectory>${project.baseDir}</contextDirectory>
- <useMavenSettingsForAuth>true</useMavenSettingsForAuth>
- <pullNewerImage>true</pullNewerImage>
- <buildArgs>
- <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
- </buildArgs>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|