<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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.10.1</version>
        <configuration>
          <source>8</source>
          <target>8</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <parent>
    <groupId>com.fizzgate</groupId>
    <artifactId>fizz-aggregate</artifactId>
    <version>3.0.0</version>
    <relativePath>../pom.xml</relativePath>
  </parent>
  <artifactId>fizz-aggregate-spring-boot-starter</artifactId>
  
  <name>fizz-aggregate-spring-boot-starter</name>
  <!--<url>https://www.fizzgate.com</url>-->


  <dependencies>
    <dependency>
      <groupId>com.fizzgate</groupId>
      <artifactId>fizz-aggregate-web</artifactId>
      <version>${project.version}</version>
    </dependency>
  </dependencies>
</project>
