zucchini
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.comcast.zucchini</groupId>
<artifactId>zucchini</artifactId>
<version>2.3.2</version>
</dependency><?xml version="1.0"?>
<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>
<groupId>com.comcast.zucchini</groupId>
<artifactId>zucchini</artifactId>
<version>2.3.2</version>
<name>(Comcast) ${project.artifactId}</name>
<inceptionYear>2014</inceptionYear>
<description>Add parallelization to Cucumber</description>
<url>http://comcast.github.io/${project.artifactId}/</url>
<licenses>
<license>
<name>Apache License</name>
<distribution>repo</distribution>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<organization>
<name>Comcast</name>
</organization>
<developers>
<developer>
<name>Clark Malmgren</name>
<organization>GrubHub</organization>
</developer>
<developer>
<name>Matt Barbour</name>
<organization>Comcast</organization>
</developer>
<developer>
<name>Dmitry Jerusalimsky</name>
<organization>Comcast</organization>
</developer>
<developer>
<name>Andrew Benton</name>
<organization>Comcast</organization>
</developer>
</developers>
<properties>
<!-- Compilation Info -->
<java.compile.version>1.7</java.compile.version>
<!-- Dependency Versions -->
<slf4j.version>1.6.4</slf4j.version>
<logback.version>1.1.2</logback.version>
<cucumber.version>1.2.4</cucumber.version>
<cucumber.reporting.version>3.2.0</cucumber.reporting.version>
<testng.version>6.8.8</testng.version>
<!-- Plugin Versions -->
<maven.source.plugin.version>2.3</maven.source.plugin.version>
<maven.javadoc.plugin.version>2.10.1</maven.javadoc.plugin.version>
<maven.plugin.license.version>2.11</maven.plugin.license.version>
<maven.gpg.version>1.6</maven.gpg.version>
<!-- Release Control -->
<autoReleaseAfterClose>false</autoReleaseAfterClose>
<!-- Github Info -->
<git.url>github.com</git.url>
<git.repo>${project.artifactId}</git.repo>
<git.org>Comcast</git.org>
</properties>
<scm>
<connection>scm:git:git@${git.url}:${git.org}/${git.repo}.git</connection>
<developerConnection>scm:git:git@${git.url}:${git.org}/${git.repo}.git</developerConnection>
<url>https://${git.url}/${git.org}/${git.repo}</url>
<tag>zucchini-2.3.2</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.9.1</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-resource</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>${project.basedir}</directory>
<includes>
<include>LICENSE.txt</include>
<include>NOTICE.txt</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${java.compile.version}</source>
<target>${java.compile.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven.source.plugin.version}</version>
<executions>
<execution>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${maven.plugin.license.version}</version>
<configuration>
<header>LICENSE_TEMPLATE.txt</header>
<properties>
<owner>Comcast Cable Communications Management, LLC</owner>
</properties>
<excludes>
<exclude>README.md</exclude>
<exclude>NOTICE.txt</exclude>
<exclude>LICENSE.txt</exclude>
<exclude>CONTRIBUTING.txt</exclude>
<exclude>.travis.yml</exclude>
<exclude>pom.xml</exclude>
<exclude>src/test/resources/**</exclude>
</excludes>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>Version Transform</id>
<phase>compile</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/classes</outputDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.plugin.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven.gpg.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>${autoReleaseAfterClose}</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-java</artifactId>
<version>${cucumber.version}</version>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-testng</artifactId>
<version>${cucumber.version}</version>
</dependency>
<dependency>
<groupId>net.masterthought</groupId>
<artifactId>cucumber-reporting</artifactId>
<version>${cucumber.reporting.version}</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
</dependency>
</dependencies>
</project>