<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.dtyunxi.cube.starter</groupId>
    <artifactId>cube-starter-code-enhance</artifactId>
    <version>2.6.1-RC-SNAPSHOT</version>
  </parent>
  <groupId>com.dtyunxi.cube.starter</groupId>
  <artifactId>cube-code-enhance-maven-plugin</artifactId>
  <version>2.6.1-RC-SNAPSHOT</version>
  <packaging>maven-plugin</packaging>
  <description>cube代码增强-扫描和字节码修改maven插件</description>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0</url>
    </license>
  </licenses>
  <dependencies>
    <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-starter-openfeign</artifactId>
    </dependency>
    <dependency>
      <groupId>com.dtyunxi.cube.starter</groupId>
      <artifactId>cube-code-enhance-annotation</artifactId>
    </dependency>
    <dependency>
      <groupId>com.dtyunxi.cube.starter</groupId>
      <artifactId>cube-code-enhance-domain-event</artifactId>
    </dependency>
    <dependency>
      <groupId>com.dtyunxi.cube</groupId>
      <artifactId>cube-starter-mq</artifactId>
    </dependency>
    <dependency>
      <groupId>com.dtyunxi.cube</groupId>
      <artifactId>yundt-cube-commons</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-plugin-api</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.maven.plugin-tools</groupId>
      <artifactId>maven-plugin-annotations</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-core</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-lang3</artifactId>
    </dependency>
    <dependency>
      <groupId>com.github.javaparser</groupId>
      <artifactId>javaparser-symbol-solver-core</artifactId>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
    </dependency>
    <dependency>
      <groupId>io.swagger</groupId>
      <artifactId>swagger-annotations</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-collections4</artifactId>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.dataformat</groupId>
      <artifactId>jackson-dataformat-yaml</artifactId>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-plugin-plugin</artifactId>
      </plugin>
    </plugins>
  </build>
</project>
