1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?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>data-metadata-service-parent</artifactId>
- <groupId>cn.datax</groupId>
- <version>2.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <version>2.0.0</version>
- <artifactId>data-metadata-service</artifactId>
- <dependencies>
- <!--web 模块-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- <exclusions>
- <exclusion>
- <artifactId>spring-boot-starter-tomcat</artifactId>
- <groupId>org.springframework.boot</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-undertow</artifactId>
- </dependency>
- <!--配置中心客户端 -->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-config</artifactId>
- </dependency>
- <dependency>
- <groupId>org.mapstruct</groupId>
- <artifactId>mapstruct</artifactId>
- <version>${mapstruct.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.mapstruct</groupId>
- <artifactId>mapstruct-processor</artifactId>
- <version>${mapstruct.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>cn.datax</groupId>
- <artifactId>datax-common-mybatis</artifactId>
- <version>2.0.0</version>
- </dependency>
- <dependency>
- <groupId>cn.datax</groupId>
- <artifactId>datax-common-redis</artifactId>
- <version>2.0.0</version>
- </dependency>
- <dependency>
- <groupId>cn.datax</groupId>
- <artifactId>datax-common-security</artifactId>
- <version>2.0.0</version>
- </dependency>
- <dependency>
- <groupId>cn.datax</groupId>
- <artifactId>datax-common-database</artifactId>
- <version>2.0.0</version>
- </dependency>
- <dependency>
- <groupId>cn.datax</groupId>
- <artifactId>datax-common-log</artifactId>
- <version>2.0.0</version>
- </dependency>
- <dependency>
- <groupId>cn.datax</groupId>
- <artifactId>data-metadata-service-api</artifactId>
- <version>2.0.0</version>
- </dependency>
- <dependency>
- <groupId>cn.datax</groupId>
- <artifactId>datax-common-office</artifactId>
- <version>2.0.0</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|