arcade-connectors-test-coverage-aggregator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.arcadeanalytics</groupId>
<artifactId>arcade-connectors-test-coverage-aggregator</artifactId>
<version>1.0.13</version>
</dependency><!--
#%L
Arcade Connectors
%%
Copyright (C) 2018 - 2020 ArcadeData
%%
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
#L%
-->
<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>com.arcadeanalytics</groupId>
<artifactId>arcade-connectors-parent</artifactId>
<version>1.0.13</version>
<relativePath>../</relativePath>
</parent>
<artifactId>arcade-connectors-test-coverage-aggregator</artifactId>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<!-- Jacoco prepare-agent builds some command-line params without -->
<!-- which jacoco will not instrument. Hence it is important to add -->
<!-- those command-line params here (${argLine} holds those params) -->
<argLine>${argLine} -Xms256m -Xmx2048m</argLine>
<forkCount>1</forkCount>
<runOrder>random</runOrder>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.arcadeanalytics</groupId>
<artifactId>arcade-connectors-neo4j3</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.arcadeanalytics</groupId>
<artifactId>arcade-connectors-orientdb2</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.arcadeanalytics</groupId>
<artifactId>arcade-connectors-orientdb3</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.arcadeanalytics</groupId>
<artifactId>arcade-connectors-gremlin</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.arcadeanalytics</groupId>
<artifactId>arcade-connectors-rdbms</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.arcadeanalytics</groupId>
<artifactId>arcade-connectors-common</artifactId>
<version>${project.parent.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.arcadeanalytics</groupId>
<artifactId>arcade-connectors-data</artifactId>
<version>${project.parent.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>