Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 8 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,27 @@
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>us.fatehi</groupId>
<artifactId>schemacrawler-database-plugins-parent</artifactId>
<artifactId>schemacrawler-parent</artifactId>
<version>17.1.4</version>
<relativePath>./schemacrawler-database-plugins-parent/pom.xml</relativePath>
</parent>
<artifactId>schemacrawler-database-plugins-aggregator</artifactId>
<packaging>pom</packaging>

<name>SchemaCrawler Database Plugins [Aggregator]</name>
<description>Additional SchemaCrawler Database Plugins - Aggregator Project</description>
<url>https://github.com/schemacrawler/SchemaCrawler-Database-Plugins</url>

<scm>
<url>https://github.com/schemacrawler/SchemaCrawler-Database-Plugins</url>
<connection>scm:git:git://github.com/schemacrawler/SchemaCrawler-Database-Plugins.git</connection>
<developerConnection>scm:git:ssh://git@github.com:schemacrawler/SchemaCrawler-Database-Plugins.git</developerConnection>
</scm>


<modules>
<module>schemacrawler-sapiq</module>
<module>schemacrawler-timesten</module>
<module>schemacrawler-hana</module>
<module>schemacrawler-trino</module>
<module>schemacrawler-cassandra</module>
<module>schemacrawler-derby</module>
<module>schemacrawler-access</module>
<module>schemacrawler-database-plugins-distrib</module>
<module>schemacrawler-derby</module>
<module>schemacrawler-access</module>
<module>schemacrawler-database-plugins-distrib</module>
</modules>

</project>
84 changes: 68 additions & 16 deletions schemacrawler-access/pom.xml
Original file line number Diff line number Diff line change
@@ -1,27 +1,32 @@
<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">
<?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-database-plugins-parent</artifactId>
<artifactId>schemacrawler-parent</artifactId>
<version>17.1.4</version>
<relativePath>../schemacrawler-database-plugins-parent/pom.xml</relativePath>
</parent>

<artifactId>schemacrawler-access</artifactId>
<packaging>jar</packaging>

<name>SchemaCrawler for Microsoft Access</name>
<description>SchemaCrawler database plugin for Microsoft Access</description>
<url>https://github.com/schemacrawler/SchemaCrawler-Database-Plugins</url>

<scm>
<url>https://github.com/schemacrawler/SchemaCrawler-Database-Plugins</url>
<connection>scm:git:git://github.com/schemacrawler/SchemaCrawler-Database-Plugins.git</connection>
<developerConnection>scm:git:ssh://git@github.com:schemacrawler/SchemaCrawler-Database-Plugins.git</developerConnection>
</scm>


<dependencies>

<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-commandline</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.github.spannm</groupId>
<artifactId>ucanaccess</artifactId>
Expand All @@ -34,10 +39,57 @@
</exclusions>
</dependency>


<!-- Test dependencies -->
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-testdb</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-test-utility</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-tools</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-commandline</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<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-2025, Sualeh Fatehi</Copyright>
<Website>https://www.SchemaCrawler.com</Website>
<Automatic-Module-Name>us.fatehi.schemacrawler.access</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
Expand All @@ -47,4 +99,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
85 changes: 68 additions & 17 deletions schemacrawler-cassandra/pom.xml
Original file line number Diff line number Diff line change
@@ -1,45 +1,96 @@
<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">
<?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-database-plugins-parent</artifactId>
<artifactId>schemacrawler-parent</artifactId>
<version>17.1.4</version>
<relativePath>../schemacrawler-database-plugins-parent/pom.xml</relativePath>
</parent>

<artifactId>schemacrawler-cassandra</artifactId>
<packaging>jar</packaging>

<name>SchemaCrawler for Cassandra</name>
<description>SchemaCrawler database plugin for Cassandra</description>
<url>https://github.com/schemacrawler/SchemaCrawler-Database-Plugins</url>

<scm>
<url>https://github.com/schemacrawler/SchemaCrawler-Database-Plugins</url>
<connection>scm:git:git://github.com/schemacrawler/SchemaCrawler-Database-Plugins.git</connection>
<developerConnection>scm:git:ssh://git@github.com:schemacrawler/SchemaCrawler-Database-Plugins.git</developerConnection>
</scm>


<dependencies>


<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-commandline</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>com.ing.data</groupId>
<artifactId>cassandra-jdbc-wrapper</artifactId>
<version>4.16.1</version>
<scope>test</scope>
</dependency>


<!-- Test dependencies -->
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-testdb</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-test-utility</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-tools</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-commandline</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-cassandra</artifactId>
<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-2025, Sualeh Fatehi</Copyright>
<Website>https://www.SchemaCrawler.com</Website>
<Automatic-Module-Name>us.fatehi.schemacrawler.cassandra</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
Expand All @@ -49,4 +100,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
4 changes: 0 additions & 4 deletions schemacrawler-database-plugins-distrib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@
<artifactId>schemacrawler-database-plugins-distrib</artifactId>
<packaging>pom</packaging>
<name>SchemaCrawler Database Plugins Distribution</name>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>

<!--
Expand Down
Loading
Loading