Skip to content
This repository has been archived by the owner on Feb 9, 2023. It is now read-only.

Commit

Permalink
Updating release information
Browse files Browse the repository at this point in the history
  • Loading branch information
haroon-sheikh committed Aug 27, 2016
1 parent ea73aac commit 4192202
Show file tree
Hide file tree
Showing 2 changed files with 123 additions and 5 deletions.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,14 @@
# cucumber-jvm-extentreports
# cucumber-jvm-extentreports

A custom `cucumber-jvm` report formatter using [ExtentReports](http://extentreports.relevantcodes.com)

## Usage
If you are using a maven based project, you can directly add this library as a dependency:

```
<dependency>
<groupId>com.sitture</groupId>
<artifactId>cucumber-jvm-extentsreport</artifactId>
<version>1.0.0</version>
</dependency>
```
113 changes: 109 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,47 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.sitture</groupId>
<artifactId>cucumber-jvm-extentreports</artifactId>
<artifactId>cucumber-jvm-extentreport</artifactId>
<packaging>jar</packaging>
<version>1.0.0-SNAPSHOT</version>
<name>cucumber-jvm-extentreports</name>
<url>http://maven.apache.org</url>
<name>cucumber-jvm-extentreport</name>
<url>https://github.com/haroon-sheikh/cucumber-jvm-extentreport</url>
<description>A custom cucumber-jvm formatter using ExtentReports</description>

<properties>
<extentreports.version>2.41.1</extentreports.version>
<cucumber.version>1.2.4</cucumber.version>
<selenium.version>2.53.1</selenium.version>
</properties>

<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>

<issueManagement>
<url>https://github.com/haroon-sheikh/cucumber-jvm-extentreport/issues</url>
<system>GitHub Issues</system>
</issueManagement>

<scm>
<url>https://github.com/haroon-sheikh/cucumber-jvm-extentreport</url>
<connection>scm:git:git://github.com/haroon-sheikh/cucumber-jvm-extentreport.git</connection>
<developerConnection>scm:git:git@github.com/haroon-sheikh/cucumber-jvm-extentreport.git</developerConnection>
</scm>

<developers>
<developer>
<name>Haroon Sheikh</name>
<id>haroon-sheikh</id>
<url>https://github.com/haroon-sheikh</url>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>

<dependencies>
<dependency>
Expand All @@ -37,5 +67,80 @@
<scope>test</scope>
</dependency>
</dependencies>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<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>true</autoReleaseAfterClose>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</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>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

0 comments on commit 4192202

Please sign in to comment.