tdrules-client-rdb
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.giis-uniovi</groupId> <artifactId>tdrules-client-rdb</artifactId> <version>4.6.1</version> </dependency>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.github.giis-uniovi</groupId> <artifactId>tdrules</artifactId> <version>4.6.1</version> </parent> <artifactId>tdrules-client-rdb</artifactId> <packaging>jar</packaging> <name>tdrules-client-rdb</name> <description>Client api to generate the data store schema from a live JDBC connection</description> <url>http://github.com/giis-uniovi/tdrules</url> <organization> <name>Software Engineering Research Group (GIIS) - Universidad de Oviedo, ES</name> <url>http://giis.uniovi.es/</url> </organization> <dependencies> <dependency> <groupId>io.github.giis-uniovi</groupId> <artifactId>tdrules-model</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.github.giis-uniovi</groupId> <artifactId>tdrules-store-rdb</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>io.github.javiertuya</groupId> <artifactId>portable-java</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.github.javiertuya</groupId> <artifactId>visual-assert</artifactId> </dependency> <dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>mssql-jdbc</artifactId> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> </plugins> </build> </project>