<?xml version="1.0" encoding="UTF-8"?> <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> <relativePath>../parent/pom.xml</relativePath> <groupId>org.bitbucket.bradleysmithllc.etlunit</groupId> <artifactId>parent</artifactId> <version>3.4.4</version> </parent> <artifactId>etlunit-execute</artifactId> <packaging>jar</packaging> <name>etlunit-execute</name> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <profiles> <profile> <id>sonar</id> <activation> <activeByDefault>false</activeByDefault> </activation> <properties> <sonar.host.url>http://build04:9000</sonar.host.url> <sonar.jdbc.url>jdbc:postgresql://localhost/sonar</sonar.jdbc.url> <sonar.jdbc.driver>org.postgresql.Driver</sonar.jdbc.driver> <sonar.jdbc.username>sonar</sonar.jdbc.username> <sonar.jdbc.password>sonar</sonar.jdbc.password> </properties> </profile> </profiles> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>etlunit-core</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>etlunit-core-integration-test</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>etlunit-log-assertion</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>${project.groupId}</groupId> <artifactId>etlunit-feature-compiler</artifactId> <version>${project.version}</version> <executions> <execution> <id>generate-sources</id> <phase>generate-sources</phase> <goals> <goal>generate-gson-proxies</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>org.bitbucket.bradleysmithllc.etlunit</groupId> <artifactId>etlunit-execute</artifactId> <version>3.4.4</version> </dependency>
org.bitbucket.bradleysmithllc.etlunit:etlunit-execute:3.4.4