sql-type-testing
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>br.com.objectos</groupId>
<artifactId>sql-type-testing</artifactId>
<version>0.11.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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>br.com.objectos</groupId> <artifactId>sql-parent</artifactId> <version>0.11.1</version> </parent> <artifactId>sql-type-testing</artifactId> <name>objectos :: sql :: type :: testing</name> <properties> <jdbc.db>sakila</jdbc.db> </properties> <build> <plugins> <plugin> <groupId>br.com.objectos</groupId> <artifactId>db9-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>sql-maven-plugin</artifactId> <executions> <execution> <id>schema</id> <phase>none</phase> </execution> <execution> <id>sakila</id> <phase>process-test-resources</phase> <goals> <goal>execute</goal> </goals> <configuration> <delimiterType>row</delimiterType> <srcFiles> <srcFile>src/test/resources/sakila/sakila-schema.sql</srcFile> <srcFile>src/test/resources/sakila/category.sql</srcFile> </srcFiles> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>br.com.objectos</groupId> <artifactId>schema</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>br.com.objectos</groupId> <artifactId>testing</artifactId> </dependency> </dependencies> </project>