DataCleaner-monitor-ui
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.eobjects.datacleaner</groupId>
<artifactId>DataCleaner-monitor-ui</artifactId>
<version>5.1.5.3</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>org.eobjects.datacleaner</groupId>
<artifactId>DataCleaner-monitor</artifactId>
<version>5.1.5.3</version>
</parent>
<artifactId>DataCleaner-monitor-ui</artifactId>
<packaging>war</packaging>
<properties>
<dockerTomcatPort>8080</dockerTomcatPort>
</properties>
<build>
<testResources>
<testResource>
<directory>src/test/resources</directory>
<filtering>true</filtering>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwt.version}</version>
<configuration>
<!-- GWT uses ASM v5 and we have v4 on classpath. This flag avoids the
conflict during GWT compile -->
<gwtSdkFirstInClasspath>true</gwtSdkFirstInClasspath>
</configuration>
<executions>
<execution>
<!-- GWT plugin, used to compile JavaScript -->
<id>gwt-compile</id>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<sourceLevel>1.7</sourceLevel> <!-- 1.6 or 1.7 -->
</configuration>
</execution>
<execution>
<!-- Run GwtTestCases with the gwt driver -->
<id>gwt-test</id>
<goals>
<goal>test</goal>
</goals>
<configuration>
<includes>**/GwtTest*.java</includes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<!-- Delete directories created by GWT eclipse plugin on clean -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<filesets>
<fileset>
<directory>src/main/webapp/log</directory>
<followSymlinks>false</followSymlinks>
</fileset>
<fileset>
<directory>src/main/webapp/dashboard</directory>
<followSymlinks>false</followSymlinks>
</fileset>
<fileset>
<directory>src/main/webapp/wizard</directory>
<followSymlinks>false</followSymlinks>
</fileset>
<fileset>
<directory>src/main/webapp/scheduling</directory>
<followSymlinks>false</followSymlinks>
</fileset>
<fileset>
<directory>src/main/webapp/query</directory>
<followSymlinks>false</followSymlinks>
</fileset>
<fileset>
<directory>src/main/webapp/datastores</directory>
<followSymlinks>false</followSymlinks>
</fileset>
<fileset>
<directory>src/main/webapp/WEB-INF/deploy</directory>
<followSymlinks>false</followSymlinks>
</fileset>
<fileset>
<directory>src/main/webapp/WEB-INF/lib</directory>
<followSymlinks>false</followSymlinks>
</fileset>
<fileset>
<directory>src/main/gwt-unitCache</directory>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<!-- Don't run GwtTestCases with regular unittest driver -->
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*GwtTest.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<!-- Always create source jar, so projects may enrich base GWT functionality -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jboss.tattletale</groupId>
<artifactId>tattletale-maven</artifactId>
<configuration>
<source>${project.build.directory}/${project.build.finalName}/WEB-INF/lib</source>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<!-- Quick profile to make GWT compilation work faster (in development) -->
<id>quick</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwt.version}</version>
<configuration>
<draftCompile>true</draftCompile>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>integration-test</id>
<build>
<plugins>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.19.1</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.15.16</version>
<configuration>
<logDate>default</logDate>
<autoPull>true</autoPull>
<images>
<image>
<name>datacleaner-monitor</name>
<build>
<dockerFileDir>${project.build.directory}/test-classes</dockerFileDir>
<assembly>
<descriptor>${project.build.directory}/test-classes/assembly.xml</descriptor>
</assembly>
</build>
<run>
<ports>
<port>${dockerTomcatPort}:8080</port>
</ports>
<wait>
<url>http://${docker.host.address}:${dockerTomcatPort}</url>
<time>300000</time>
</wait>
</run>
</image>
</images>
</configuration>
<executions>
<execution>
<id>start</id>
<phase>pre-integration-test</phase>
<goals>
<goal>build</goal>
<goal>start</goal>
</goals>
</execution>
<execution>
<id>stop</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<!-- GWT -->
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwt.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.googlecode.gflot</groupId>
<artifactId>gflot</artifactId>
<version>3.3.0</version>
<scope>provided</scope>
</dependency>
<!-- log4j-over-slf4j to ensure compatibility when we exclude log4j -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
</dependency>
<!-- DataCleaner monitor dependencies -->
<dependency>
<groupId>org.eobjects.datacleaner</groupId>
<artifactId>DataCleaner-monitor-widgets</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eobjects.datacleaner</groupId>
<artifactId>DataCleaner-monitor-services</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eobjects.datacleaner</groupId>
<artifactId>DataCleaner-monitor-documentation</artifactId>
<version>${project.version}</version>
</dependency>
<!--Hadoop dependencies -->
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-hdfs</artifactId>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-launcher_2.11</artifactId>
</dependency>
<!-- DataCleaner monitor extensions -->
<dependency>
<groupId>org.eobjects.datacleaner</groupId>
<artifactId>DataCleaner-monitor-completeness-analysis-wizard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eobjects.datacleaner</groupId>
<artifactId>DataCleaner-monitor-copy-data-wizard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eobjects.datacleaner</groupId>
<artifactId>DataCleaner-monitor-csv-datastore-wizard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eobjects.datacleaner</groupId>
<artifactId>DataCleaner-monitor-excel-datastore-wizard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eobjects.datacleaner</groupId>
<artifactId>DataCleaner-monitor-jdbc-datastore-wizards</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eobjects.datacleaner</groupId>
<artifactId>DataCleaner-monitor-pentaho-job-engine</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eobjects.datacleaner</groupId>
<artifactId>DataCleaner-monitor-quick-analysis-wizard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eobjects.datacleaner</groupId>
<artifactId>DataCleaner-monitor-salesforce-datastore-wizard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eobjects.datacleaner</groupId>
<artifactId>DataCleaner-monitor-sugarcrm-datastore-wizard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eobjects.datacleaner</groupId>
<artifactId>DataCleaner-monitor-referencedata-wizards</artifactId>
<version>${project.version}</version>
</dependency>
<!-- JDBC drivers -->
<dependency>
<groupId>net.sourceforge.jtds</groupId>
<artifactId>jtds</artifactId>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
<dependency>
<groupId>org.apache.hive</groupId>
<artifactId>hive-jdbc</artifactId>
</dependency>
<!-- Logging -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
<!-- JSF -->
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.faces</artifactId>
<version>2.2.11</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
<artifactId>javax.faces-api</artifactId>
<version>2.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>el-impl</artifactId>
<version>2.2</version>
<scope>provided</scope>
</dependency>
<!-- Pretty faces - URL rewriting for JSF 2.x -->
<dependency>
<groupId>org.ocpsoft.rewrite</groupId>
<artifactId>rewrite-servlet</artifactId>
</dependency>
<!-- Servlet+JSP dependencies -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>javax.servlet.jsp-api</artifactId>
<scope>provided</scope>
</dependency>
<!-- JSTL -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
<scope>runtime</scope>
</dependency>
<!-- Jetty used for dev mode testing -->
<dependency>
<groupId>org.eclipse.jetty.aggregate</groupId>
<artifactId>jetty-all-server</artifactId>
<version>8.1.18.v20150929</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>asm</groupId>
<artifactId>asm</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>5.0.3</version>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<version>3.0.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>