cucumber-jvm-deps
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>info.cukes</groupId> <artifactId>cucumber-jvm-deps</artifactId> <version>1.0.5</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/maven-v4_0_0.xsd"> <parent> <artifactId>oss-parent</artifactId> <groupId>org.sonatype.oss</groupId> <version>7</version> <relativePath>../pom.xml/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>info.cukes</groupId> <artifactId>cucumber-jvm-deps</artifactId> <name>Cucumber-JVM Repackaged Dependencies</name> <version>1.0.5</version> <url>https://github.com/cucumber/cucumber-jvm-deps</url> <licenses> <license> <name>BSD License</name> <url>http://xstream.codehaus.org/license.html</url> <distribution>repo</distribution> <comments>The License used by XStream</comments> </license> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> <comments>The License used by Diffutils</comments> </license> </licenses> <scm> <connection>scm:git:git://github.com/cucumber/cucumber-jvm-deps.git</connection> <developerConnection>scm:git:git@github.com:cucumber/cucumber-jvm-deps.git</developerConnection> <tag>v1.0.5</tag> <url>git://github.com/cucumber/cucumber-jvm-deps.git</url> </scm> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>bind-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> <configuration> <forceCreation>true</forceCreation> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>2.4</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <createSourcesJar>true</createSourcesJar> <relocations> <relocation> <pattern>com.thoughtworks.xstream</pattern> <shadedPattern>cucumber.deps.com.thoughtworks.xstream</shadedPattern> </relocation> <relocation> <pattern>difflib</pattern> <shadedPattern>cucumber.deps.difflib</shadedPattern> </relocation> </relocations> <transformers> <transformer> <manifestEntries> <Bundle-ManifestVersion>2</Bundle-ManifestVersion> <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName> <Bundle-Version>${used.osgi.version}</Bundle-Version> <Bundle-Name>${project.name}</Bundle-Name> <Bundle-License>http://xstream.codehaus.org/license.html, http://www.apache.org/licenses/LICENSE-2.0</Bundle-License> <Export-Package>cucumber.deps.com.thoughtworks.xstream;version=${used.osgi.version},cucumber.deps.com.thoughtworks.xstream.annotations;version=${used.osgi.version},cucumber.deps.com.thoughtworks.xstream.converters;version=${used.osgi.version},cucumber.deps.com.thoughtworks.xstream.converters.reflection;version=${used.osgi.version},cucumber.deps.com.thoughtworks.xstream.core;version=${used.osgi.version},cucumber.deps.com.thoughtworks.xstream.io;version=${used.osgi.version},cucumber.deps.com.thoughtworks.xstream.mapper;version=${used.osgi.version},cucumber.deps.difflib;version=${used.osgi.version},cucumber.deps.com.thoughtworks.xstream.converters.extended;version=${used.osgi.version},cucumber.deps.com.thoughtworks.xstream.converters.enums;version=${used.osgi.version},cucumber.deps.com.thoughtworks.xstream.converters.basic;version=${used.osgi.version}</Export-Package> <DynamicImport-Package>*</DynamicImport-Package> </manifestEntries> </transformer> </transformers> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <includeDependencySources>true</includeDependencySources> <additionalparam>-Xdoclint:none</additionalparam> <failOnError>false</failOnError> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.2</version> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <useAgent>true</useAgent> </configuration> </execution> </executions> <configuration> <useAgent>true</useAgent> </configuration> </plugin> </plugins> </build> </profile> </profiles> <properties> <used.osgi.version>${project.version}</used.osgi.version> </properties> </project>