1234567891011121314151617181920212223242526272829 |
- <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>
- <groupId>com.zlt</groupId>
- <artifactId>txlcn-demo</artifactId>
- <version>2.7.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>txlcn-demo-spring-service-b</artifactId>
- <name>txlcn-demo-spring-service-b</name>
- <dependencies>
- <dependency>
- <groupId>com.zlt</groupId>
- <artifactId>txlcn-demo-common</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|