<?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.gitlab.summer-cattle</groupId>
    <artifactId>cattle-build</artifactId>
    <version>0.0.1</version>
  </parent>
  <groupId>com.gitlab.summer-cattle</groupId>
  <artifactId>cattle-commons</artifactId>
  <version>0.0.1</version>
  <packaging>pom</packaging>
  <name>${project.artifactId}</name>
  <description>Cattle Framework Commons Component parent pom, managing plugins and dependencies for Cattle Framework Commons Component projects</description>
  <url>https://gitlab.com/summer-cattle/cattle-commons</url>
  <organization>
    <name>Summer Cattle Team</name>
    <url>https://gitlab.com/summer-cattle</url>
  </organization>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0</url>
      <comments>Copyright 2014-2015 the original author or authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.</comments>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>juhua</id>
      <name>juhua</name>
      <organization>Summer Cattle Team</organization>
      <organizationUrl>https://gitlab.com/summer-cattle</organizationUrl>
      <roles>
        <role>developer</role>
      </roles>
    </developer>
  </developers>
  <modules>
    <module>cattle-commons-dependencies</module>
    <module>cattle-commons-public</module>
    <module>cattle-commons-utils</module>
    <module>cattle-commons-db</module>
    <module>cattle-commons-quartz</module>
    <module>cattle-commons-webmvc</module>
    <module>cattle-commons-webflux</module>
    <module>cattle-commons-db-datasource</module>
  </modules>
  <scm>
    <connection>scm:git:ssh://gitlab.com/summer-cattle/cattle-commons.git</connection>
    <developerConnection>scm:git:ssh://git@gitlab.com:summer-cattle/cattle-commons.git</developerConnection>
    <url>https://gitlab.com/summer-cattle/cattle-commons</url>
  </scm>
  <properties>
    <cattle-commons.version>0.0.1</cattle-commons.version>
  </properties>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>com.gitlab.summer-cattle</groupId>
        <artifactId>cattle-commons-dependencies</artifactId>
        <version>${cattle-commons.version}</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
      </plugin>
      <plugin>
        <artifactId>maven-source-plugin</artifactId>
      </plugin>
    </plugins>
  </build>
</project>
