cdap-operational-stats-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.cdap.cdap</groupId> <artifactId>cdap-operational-stats-core</artifactId> <version>6.11.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright © 2016 Cask Data, Inc. 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. --> <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"> <parent> <artifactId>cdap</artifactId> <groupId>io.cdap.cdap</groupId> <version>6.11.0</version> </parent> <modelVersion>4.0.0</modelVersion> <properties> <slf4j.version>1.7.5</slf4j.version> </properties> <artifactId>cdap-operational-stats-core</artifactId> <name>CDAP Operational Stats Core</name> <dependencies> <dependency> <groupId>io.cdap.cdap</groupId> <artifactId>cdap-app-fabric</artifactId> <version>${project.version}</version> </dependency> <!-- Test Dependencies --> <dependency> <groupId>io.cdap.cdap</groupId> <artifactId>cdap-common</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>io.cdap.cdap</groupId> <artifactId>cdap-app-fabric</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.cdap.common</groupId> <artifactId>common-http</artifactId> </dependency> </dependencies> <profiles> <profile> <id>dist</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>jar</id> <phase>prepare-package</phase> <configuration combine.self="override"> <outputDirectory>${project.build.directory}</outputDirectory> <finalName>${project.groupId}.${project.build.finalName}</finalName> </configuration> <goals> <goal>jar</goal> </goals> </execution> <execution> <id>jar-sdk</id> <phase>prepare-package</phase> <configuration combine.self="override"> <outputDirectory>${project.build.directory}</outputDirectory> <finalName>${project.groupId}.${project.build.finalName}.sdk</finalName> </configuration> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>e2e-tests</id> <properties> <testSourceLocation>src/e2e-test/java</testSourceLocation> <TEST_RUNNER>TestRunner.java</TEST_RUNNER> </properties> <build> <testResources> <testResource> <directory>src/e2e-test/resources</directory> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.18.1</version> <configuration> <skipTests>true</skipTests> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>3.0.0-M5</version> <configuration> <includes> <include>${TEST_RUNNER}</include> </includes> <!--Start configuration to run TestRunners in parallel--> <parallel>classes</parallel> <!--Running TestRunner classes in parallel--> <threadCount>2</threadCount> <!--Number of classes to run in parallel--> <forkCount>2</forkCount> <!--Number of JVM processes --> <reuseForks>true</reuseForks> <!--End configuration to run TestRunners in parallel--> </configuration> <executions> <execution> <goals> <goal>integration-test</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>net.masterthought</groupId> <artifactId>maven-cucumber-reporting</artifactId> <version>5.5.0</version> <executions> <execution> <id>execution</id> <phase>verify</phase> <goals> <goal>generate</goal> </goals> <configuration> <projectName>Cucumber Reports</projectName> <!-- Replace with project name --> <outputDirectory>target/cucumber-reports/advanced-reports</outputDirectory> <buildNumber>1</buildNumber> <skip>false</skip> <inputDirectory>${project.build.directory}/cucumber-reports</inputDirectory> <jsonFiles> <!-- supports wildcard or name pattern --> <param>**/*.json</param> </jsonFiles> <!-- optional, defaults to outputDirectory if not specified --> <classificationDirectory>${project.build.directory}/cucumber-reports</classificationDirectory> <checkBuildResult>true</checkBuildResult> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>31.1-jre</version> </dependency> <dependency> <groupId>io.cdap.tests.e2e</groupId> <artifactId>cdap-e2e-framework</artifactId> <version>0.4.0</version> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.2.8</version> <scope>runtime</scope> </dependency> </dependencies> </profile> </profiles> </project>