Skip to content

Commit c19c63a

Browse files
committed
release 1.0.2
1 parent e18d771 commit c19c63a

File tree

4 files changed

+9
-70
lines changed

4 files changed

+9
-70
lines changed

Readme.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
## extentreports-cucumber3-adapter
1+
[![Maven Central](https://img.shields.io/maven-central/v/com.aventstack/extentreports-cucumber3-adapter.svg?maxAge=300)](http://search.maven.org/#search|ga|1|g:"com.aventstack")
2+
3+
## Extent Framework Cucumber3 Adapter
24

35
### Docs
46

@@ -11,7 +13,7 @@ See `src/test` for examples.
1113
To begin using the adapter, add the com.aventstack.extentreports.cucumber.adapter.ExtentCucumberAdapter plugin to the runner.
1214

1315
```java
14-
`@RunWith(Cucumber.class)
16+
@RunWith(Cucumber.class)
1517
@CucumberOptions(plugin = {"com.aventstack.extentreports.cucumber.adapter.ExtentCucumberAdapter:"})
1618
public class RunCukesTest {
1719
// ..
@@ -20,4 +22,4 @@ public class RunCukesTest {
2022

2123
### License
2224

23-
extentreports-cucumber3-adapter is MIT licensed.
25+
MIT license

pom-nexus.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>com.aventstack</groupId>
55
<artifactId>extentreports-cucumber3-adapter</artifactId>
6-
<version>1.0.1</version>
6+
<version>1.0.2</version>
77
<name>extentreports-cucumber3-adapter</name>
88
<url>http://extentreports.com</url>
99
<description>Cucumber-JVM 3 adapter for Extent Framework</description>
@@ -41,7 +41,7 @@
4141
<dependency>
4242
<groupId>com.aventstack</groupId>
4343
<artifactId>extentreports</artifactId>
44-
<version>4.0.5</version>
44+
<version>4.0.6</version>
4545
</dependency>
4646
<dependency>
4747
<groupId>io.cucumber</groupId>

pom.xml

Lines changed: 2 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>com.aventstack</groupId>
55
<artifactId>extentreports-cucumber3-adapter</artifactId>
6-
<version>1.0.1</version>
6+
<version>1.0.2</version>
77
<name>extentreports-cucumber3-adapter</name>
88
<url>http://extentreports.com</url>
99
<description>Cucumber-JVM 3 adapter for Extent Framework</description>
@@ -41,7 +41,7 @@
4141
<dependency>
4242
<groupId>com.aventstack</groupId>
4343
<artifactId>extentreports</artifactId>
44-
<version>4.0.5</version>
44+
<version>4.0.6</version>
4545
</dependency>
4646
<dependency>
4747
<groupId>io.cucumber</groupId>
@@ -88,71 +88,9 @@
8888
<artifactId>maven-resources-plugin</artifactId>
8989
<version>2.7</version>
9090
</plugin>
91-
<plugin>
92-
<groupId>org.apache.maven.plugins</groupId>
93-
<artifactId>maven-gpg-plugin</artifactId>
94-
<version>1.6</version>
95-
<executions>
96-
<execution>
97-
<id>sign-artifacts</id>
98-
<phase>verify</phase>
99-
<goals>
100-
<goal>sign</goal>
101-
</goals>
102-
</execution>
103-
</executions>
104-
</plugin>
10591
</plugins>
10692
</build>
10793

108-
<profiles>
109-
<profile>
110-
<id>release-sign-artifacts</id>
111-
<activation>
112-
<property>
113-
<name>performRelease</name>
114-
<value>true</value>
115-
</property>
116-
</activation>
117-
<properties>
118-
<gpg.keyname>7A7DAF8A</gpg.keyname> <!-- GPG Key ID to use for signing -->
119-
<release.username>anshooarora</release.username> <!-- username for our svn repository -->
120-
</properties>
121-
<build>
122-
<resources>
123-
</resources>
124-
<plugins>
125-
<plugin>
126-
<groupId>org.apache.maven.plugins</groupId>
127-
<artifactId>maven-source-plugin</artifactId>
128-
<version>2.3</version>
129-
<executions>
130-
<execution>
131-
<id>attach-sources</id>
132-
<goals>
133-
<goal>jar</goal>
134-
</goals>
135-
</execution>
136-
</executions>
137-
</plugin>
138-
<plugin>
139-
<groupId>org.apache.maven.plugins</groupId>
140-
<artifactId>maven-javadoc-plugin</artifactId>
141-
<version>2.3</version>
142-
<executions>
143-
<execution>
144-
<id>attach-javadocs</id>
145-
<goals>
146-
<goal>jar</goal>
147-
</goals>
148-
</execution>
149-
</executions>
150-
</plugin>
151-
</plugins>
152-
</build>
153-
</profile>
154-
</profiles>
155-
15694
<distributionManagement>
15795
<snapshotRepository>
15896
<id>ossrh</id>

src/main/java/com/aventstack/extentreports/cucumber/adapter/ExtentCucumberAdapter.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
import com.aventstack.extentreports.MediaEntityBuilder;
1818
import com.aventstack.extentreports.Status;
1919
import com.aventstack.extentreports.gherkin.model.Asterisk;
20-
import com.aventstack.extentreports.gherkin.model.Given;
2120
import com.aventstack.extentreports.markuputils.MarkupHelper;
2221
import com.aventstack.extentreports.service.ExtentService;
2322

0 commit comments

Comments
 (0)