Skip to content

Commit

Permalink
release 1.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
BelAn97 committed Sep 3, 2020
1 parent e7cd843 commit 5971e6e
Show file tree
Hide file tree
Showing 7 changed files with 136 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.1.8
* fixes for using several identical service instances

## 1.1.7
* fixes authentication overwritten with empty scheme

Expand Down
4 changes: 2 additions & 2 deletions jdi-dark-bdd-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.epam.jdi</groupId>
<artifactId>jdi-dark-bdd-tests</artifactId>
<name>JDI Dark BDD Tests</name>
<version>1.1.7</version>
<version>1.1.8</version>

<properties>
<includeTags>@smoke</includeTags>
Expand All @@ -20,7 +20,7 @@
<allure.common.version>2.13.1</allure.common.version>
<junit.version>4.12</junit.version>
<surefire.version>2.22.1</surefire.version>
<jdi.dark.bdd.version>1.1.7</jdi.dark.bdd.version>
<jdi.dark.bdd.version>1.1.8</jdi.dark.bdd.version>
</properties>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions jdi-dark-bdd/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
<name>JDI Dark BDD</name>
<description>BDD add-in for JDI Dark</description>
<url>http://jdi.epam.com/</url>
<version>1.1.7</version>
<version>1.1.8</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<cucumber.version>4.8.1</cucumber.version>
<junit.version>4.13</junit.version>
<testng.version>7.1.0</testng.version>
<jdi.dark.version>1.1.7</jdi.dark.version>
<jdi.dark.version>1.1.8</jdi.dark.version>
</properties>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions jdi-dark-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>

<groupId>com.epam.jdi</groupId>
<version>1.1.7</version>
<version>1.1.8</version>
<artifactId>jdi-dark-tests</artifactId>
<name>JDI Dark Tests</name>

Expand All @@ -27,7 +27,7 @@
<dependency>
<groupId>com.epam.jdi</groupId>
<artifactId>jdi-dark</artifactId>
<version>1.1.7</version>
<version>1.1.8</version>
</dependency>
<dependency>
<groupId>com.epam.jdi</groupId>
Expand Down
2 changes: 1 addition & 1 deletion jdi-dark-ws/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<dependency>
<groupId>com.epam.jdi</groupId>
<artifactId>jdi-dark</artifactId>
<version>1.1.7</version>
<version>1.1.8</version>
</dependency>
<dependency>
<groupId>javax.websocket</groupId>
Expand Down
126 changes: 125 additions & 1 deletion jdi-dark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,34 @@

<groupId>com.epam.jdi</groupId>
<artifactId>jdi-dark</artifactId>
<version>1.1.7</version>
<version>1.1.8</version>
<name>JDI Dark</name>
<description>Test automation framework for web service testing powered by REST Assured.</description>
<url>http://jdi.epam.com/</url>
<packaging>jar</packaging>

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

<scm>
<connection>scm:https://github.com/jdi-testing</connection>
<developerConnection>scm:https://github.com/jdi-testing</developerConnection>
<url>https://github.com/jdi-testing</url>
</scm>

<developers>
<developer>
<id>romaniovlev</id>
<name>Roman Iovlev</name>
<email>roman.iovlev.jdi@gmail.com</email>
<timezone>UTC+3</timezone>
</developer>
</developers>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -95,7 +119,107 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<executions>
<execution>
<phase>deploy</phase>
</execution>
</executions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>

<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>sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<configuration>
<passphrase>${gpg.passhprase}</passphrase>
<gpgArguments>
<arg>--no-tty</arg>
</gpgArguments>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>

<groupId>com.epam.jdi</groupId>
<version>1.1.7</version>
<version>1.1.8</version>
<artifactId>jdi-dark-project</artifactId>
<name>JDI Dark Project</name>
<packaging>pom</packaging>
Expand Down

0 comments on commit 5971e6e

Please sign in to comment.