schemacrawler-api
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>us.fatehi</groupId> <artifactId>schemacrawler-api</artifactId> <version>16.25.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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 https://maven.apache.org/maven-v4_0_0.xsd"> <parent> <artifactId>schemacrawler-parent</artifactId> <groupId>us.fatehi</groupId> <version>16.25.2</version> <relativePath>../schemacrawler-parent/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>schemacrawler-api</artifactId> <packaging>jar</packaging> <name>SchemaCrawler API</name> <dependencies> <dependency> <groupId>us.fatehi</groupId> <artifactId>schemacrawler-utility</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>us.fatehi</groupId> <artifactId>schemacrawler-utility</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>us.fatehi</groupId> <artifactId>schemacrawler-testdb</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>create-test-jar</id> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> </project>