<?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">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>ca.twoducks</groupId>
    <artifactId>bom-parent</artifactId>
    <version>1.5-wik</version>
  </parent>

  <groupId>ca.twoducks</groupId>
  <artifactId>bom-child</artifactId>
  <name>Child</name>

  <description>A child module.</description>
  <url>https://github.com/ken-duck/example_java_project</url>
  <scm>
    <connection>scm:git:git://github.com/ken-duck/example_java_project.git</connection>
    <developerConnection>scm:git:ssh://github.com:ken-duck/example_java_project.git</developerConnection>
    <url>https://github.com/ken-duck/example_java_project/tree/main</url>
  </scm>

  <licenses>
    <license>
      <name>The Apache License, Version 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
    <license>
      <name>MIT License</name>
      <url>https://www.opensource.org/licenses/mit-license.php</url>
    </license>
  </licenses>

  <developers>
    <developer>
      <name>Ken Duck</name>
      <email>kduck@sonatype.com</email>
      <organization>Sonatype</organization>
      <organizationUrl>https://www.sonatype.com</organizationUrl>
    </developer>
  </developers>


  <properties>
    <maven.compiler.source>11</maven.compiler.source>
    <maven.compiler.target>11</maven.compiler.target>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>ca.twoducks</groupId>
        <artifactId>bom-bom</artifactId>
        <version>1.5-wik</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>

  <dependencies>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-lang3</artifactId>
    </dependency>
  </dependencies>

</project>