stream-utils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.conductor</groupId>
<artifactId>stream-utils</artifactId>
<version>1.3.1</version>
</dependency><?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>
<groupId>com.conductor</groupId>
<artifactId>conductor-oss-pom</artifactId>
<version>0.1.0</version>
</parent>
<artifactId>stream-utils</artifactId>
<name>${project.artifactId}</name>
<version>1.3.1</version>
<description>A set of stream utilities for Java 8 Streams</description>
<url>https://github.com/Conductor/stream-utils</url>
<developers>
<developer>
<id>bshai</id>
<name>Benjamin Shai</name>
<email>bshai@conductor.com</email>
<organization>Conductor, Inc.</organization>
<organizationUrl>http://www.conductor.com</organizationUrl>
<roles>
<role>owner</role>
<role>developer</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:Conductor/stream-utils.git</connection>
<developerConnection>scm:git:git@github.com:Conductor/stream-utils.git</developerConnection>
<tag>stream-utils-1.3.1</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/Conductor/stream-utils/issues</url>
</issueManagement>
<properties>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<!--Dependency versions -->
<jacoco-maven-plugin.version>0.7.9</jacoco-maven-plugin.version>
<junit.version>4.12</junit.version>
<mockito.version>1.10.19</mockito.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>code-coverage</id>
<activation>
<property>
<name>env.JENKINS_HOME</name>
</property>
</activation>
<properties>
<jacoco.haltOnFailure>true</jacoco.haltOnFailure>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
<executions>
<execution>
<id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>default-report</id>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>