schemacrawler-derby
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-derby</artifactId>
<version>17.1.7</version>
</dependency><?xml version="1.0"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-parent</artifactId>
<version>17.1.7</version>
</parent>
<artifactId>schemacrawler-derby</artifactId>
<packaging>jar</packaging>
<name>SchemaCrawler for Apache Derby</name>
<dependencyManagement>
<dependencies>
<!-- SchemaCrawler library -->
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-library-bom</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler</artifactId>
</dependency>
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-commandline</artifactId>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derbyclient</artifactId>
<version>10.17.1.0</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-testdb</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-test-utility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-tools</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-commandline</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.17.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derbynet</artifactId>
<version>10.17.1.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
<manifestEntries>
<Author>Sualeh Fatehi sualeh@hotmail.com</Author>
<Copyright>Copyright (c) 2000-2026, Sualeh Fatehi</Copyright>
<Website>https://www.SchemaCrawler.com</Website>
<Automatic-Module-Name>us.fatehi.schemacrawler.derby</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>false</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>