12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>service</artifactId>
- <groupId>com.atguigu.tingshu</groupId>
- <version>1.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>service-order</artifactId>
- <packaging>jar</packaging>
- <version>1.0</version>
- <properties>
- <skipTests>true</skipTests>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.atguigu.tingshu</groupId>
- <artifactId>rabbit-util</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.atguigu.tingshu</groupId>
- <artifactId>service-account-client</artifactId>
- <version>1.0</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>${project.artifactId}</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- <repositories>
- <!-- 下载mybatis-plus SNAPSHOT 版本所需仓库 -->
- <repository>
- <id>ossrh</id>
- <name>OSS Snapshot repository</name>
- <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
- <releases>
- <enabled>false</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </repository>
- </repositories>
- </project>
|