<?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/maven-v4_0_0.xsd">
  <parent>
    <artifactId>parent</artifactId>
    <groupId>com.buschmais.jqassistant.plugin</groupId>
    <version>1.12.0</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.buschmais.jqassistant.plugin</groupId>
  <artifactId>rdbms</artifactId>
  <name>jQAssistant RDBMS Plugin</name>
  <version>1.12.0</version>
  <description>Plugin for jQAssistant to be able to scan and to
        analyze RDBMS structures.</description>
  <url>https://jqassistant.org/</url>
  <licenses>
    <license>
      <name>GNU General Public License, v3</name>
      <url>https://www.gnu.org/licenses/gpl-3.0.html</url>
    </license>
  </licenses>
  <scm>
    <connection>scm:git:git@github.com:jqassistant/jqa-rdbms-plugin.git</connection>
    <developerConnection>scm:git:git@github.com:jqassistant/jqa-rdbms-plugin.git</developerConnection>
    <url>https://github.com/jqassistant/jqa-rdbms-plugin</url>
  </scm>
  <organization>
    <name>jQAssistant Development Team</name>
    <url>https://jqassistant.org</url>
  </organization>
  <build>
    <plugins>
      <plugin>
        <groupId>org.jvnet.jaxb2.maven2</groupId>
        <artifactId>maven-jaxb2-plugin</artifactId>
      </plugin>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>shade</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <shadedArtifactAttached>false</shadedArtifactAttached>
          <dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
          <artifactSet>
            <includes>
              <include>us.fatehi:schemacrawler*</include>
            </includes>
          </artifactSet>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <repositories>
    <repository>
      <snapshots />
      <id>sonatype-nexus-snapshots</id>
      <name>Sonatype Nexus Snapshots</name>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </repository>
  </repositories>
  <dependencies>
    <dependency>
      <groupId>com.buschmais.jqassistant.plugin</groupId>
      <artifactId>common</artifactId>
      <version>1.12.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.buschmais.jqassistant.plugin</groupId>
      <artifactId>java</artifactId>
      <version>1.12.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.buschmais.jqassistant.core</groupId>
      <artifactId>test</artifactId>
      <version>1.12.0</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>plugin</artifactId>
          <groupId>com.buschmais.jqassistant.core</groupId>
        </exclusion>
        <exclusion>
          <artifactId>configuration</artifactId>
          <groupId>com.buschmais.jqassistant.core</groupId>
        </exclusion>
        <exclusion>
          <artifactId>store</artifactId>
          <groupId>com.buschmais.jqassistant.core</groupId>
        </exclusion>
        <exclusion>
          <artifactId>analysis</artifactId>
          <groupId>com.buschmais.jqassistant.core</groupId>
        </exclusion>
        <exclusion>
          <artifactId>mockito-junit-jupiter</artifactId>
          <groupId>org.mockito</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.buschmais.jqassistant.plugin</groupId>
      <artifactId>common</artifactId>
      <version>1.12.0</version>
      <type>test-jar</type>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.assertj</groupId>
      <artifactId>assertj-core</artifactId>
      <version>3.22.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-engine</artifactId>
      <version>5.9.0-M1</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>junit-platform-engine</artifactId>
          <groupId>org.junit.platform</groupId>
        </exclusion>
        <exclusion>
          <artifactId>junit-jupiter-api</artifactId>
          <groupId>org.junit.jupiter</groupId>
        </exclusion>
        <exclusion>
          <artifactId>apiguardian-api</artifactId>
          <groupId>org.apiguardian</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-params</artifactId>
      <version>5.9.0-M1</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>junit-jupiter-api</artifactId>
          <groupId>org.junit.jupiter</groupId>
        </exclusion>
        <exclusion>
          <artifactId>apiguardian-api</artifactId>
          <groupId>org.apiguardian</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.junit.vintage</groupId>
      <artifactId>junit-vintage-engine</artifactId>
      <version>5.9.0-M1</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>junit</artifactId>
          <groupId>junit</groupId>
        </exclusion>
        <exclusion>
          <artifactId>junit-platform-engine</artifactId>
          <groupId>org.junit.platform</groupId>
        </exclusion>
        <exclusion>
          <artifactId>apiguardian-api</artifactId>
          <groupId>org.apiguardian</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>java-hamcrest</artifactId>
      <version>2.0.0.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-simple</artifactId>
      <version>1.8.0-beta4</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.8.0-beta4</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.hsqldb</groupId>
      <artifactId>hsqldb</artifactId>
      <version>2.3.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.buschmais.jqassistant</groupId>
      <artifactId>asciidoctor-utilities</artifactId>
      <version>1.12.0</version>
      <type>zip</type>
      <classifier>xsl</classifier>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.buschmais.jqassistant.neo4jserver</groupId>
      <artifactId>neo4jv3</artifactId>
      <version>1.12.0</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>bootstrap</artifactId>
          <groupId>com.buschmais.jqassistant.neo4jserver</groupId>
        </exclusion>
        <exclusion>
          <artifactId>xo.neo4j.embedded</artifactId>
          <groupId>com.buschmais.xo</groupId>
        </exclusion>
        <exclusion>
          <artifactId>neo4j</artifactId>
          <groupId>org.neo4j</groupId>
        </exclusion>
        <exclusion>
          <artifactId>neo4j-server</artifactId>
          <groupId>org.neo4j.app</groupId>
        </exclusion>
        <exclusion>
          <artifactId>tika-core</artifactId>
          <groupId>org.apache.tika</groupId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>us.fatehi</groupId>
        <artifactId>schemacrawler</artifactId>
        <version>${us.fatehi.schemacrawler.version}</version>
      </dependency>
      <dependency>
        <groupId>us.fatehi</groupId>
        <artifactId>schemacrawler-db2</artifactId>
        <version>${us.fatehi.schemacrawler.version}</version>
      </dependency>
      <dependency>
        <groupId>us.fatehi</groupId>
        <artifactId>schemacrawler-derby</artifactId>
        <version>${us.fatehi.schemacrawler.version}</version>
        <exclusions>
          <exclusion>
            <artifactId>derbyclient</artifactId>
            <groupId>org.apache.derby</groupId>
          </exclusion>
        </exclusions>
      </dependency>
      <dependency>
        <groupId>us.fatehi</groupId>
        <artifactId>schemacrawler-hsqldb</artifactId>
        <version>${us.fatehi.schemacrawler.version}</version>
        <exclusions>
          <exclusion>
            <artifactId>hsqldb</artifactId>
            <groupId>org.hsqldb</groupId>
          </exclusion>
        </exclusions>
      </dependency>
      <dependency>
        <groupId>us.fatehi</groupId>
        <artifactId>schemacrawler-mysql</artifactId>
        <version>${us.fatehi.schemacrawler.version}</version>
        <exclusions>
          <exclusion>
            <artifactId>mysql-connector-java</artifactId>
            <groupId>mysql</groupId>
          </exclusion>
        </exclusions>
      </dependency>
      <dependency>
        <groupId>us.fatehi</groupId>
        <artifactId>schemacrawler-oracle</artifactId>
        <version>${us.fatehi.schemacrawler.version}</version>
      </dependency>
      <dependency>
        <groupId>us.fatehi</groupId>
        <artifactId>schemacrawler-postgresql</artifactId>
        <version>${us.fatehi.schemacrawler.version}</version>
        <exclusions>
          <exclusion>
            <artifactId>postgresql</artifactId>
            <groupId>org.postgresql</groupId>
          </exclusion>
        </exclusions>
      </dependency>
      <dependency>
        <groupId>us.fatehi</groupId>
        <artifactId>schemacrawler-sqlite</artifactId>
        <version>${us.fatehi.schemacrawler.version}</version>
        <exclusions>
          <exclusion>
            <artifactId>sqlite-jdbc</artifactId>
            <groupId>org.xerial</groupId>
          </exclusion>
        </exclusions>
      </dependency>
      <dependency>
        <groupId>us.fatehi</groupId>
        <artifactId>schemacrawler-sqlserver</artifactId>
        <version>${us.fatehi.schemacrawler.version}</version>
        <exclusions>
          <exclusion>
            <artifactId>jtds</artifactId>
            <groupId>net.sourceforge.jtds</groupId>
          </exclusion>
        </exclusions>
      </dependency>
      <dependency>
        <groupId>us.fatehi</groupId>
        <artifactId>schemacrawler-sybaseiq</artifactId>
        <version>${us.fatehi.schemacrawler.version}</version>
      </dependency>
      <dependency>
        <groupId>org.hsqldb</groupId>
        <artifactId>hsqldb</artifactId>
        <version>2.3.2</version>
        <scope>test</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <properties>
    <us.fatehi.schemacrawler.version>11.02.01</us.fatehi.schemacrawler.version>
    <jqa-plugin-common.version>1.12.0</jqa-plugin-common.version>
    <jqa-java-plugin.version>1.12.0</jqa-java-plugin.version>
  </properties>
</project>
