Skip to content

Commit

Permalink
Merge pull request #79 from MarketSquare/httpclient_update
Browse files Browse the repository at this point in the history
Httpclient update
  • Loading branch information
Hi-Fi authored Jan 9, 2022
2 parents 67ed47b + 1259b6f commit 62dd276
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions DEPENDENCIES.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
[INFO] Scanning for projects...
[INFO]
[INFO] -----< com.github.marketsquare:robotframework-httprequestlibrary >------
[INFO] Building robotframework-httprequestlibrary 0.0.18
[INFO] Building robotframework-httprequestlibrary 0.0.19
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-dependency-plugin:3.2.0:tree (default-cli) @ robotframework-httprequestlibrary ---
[INFO] com.github.marketsquare:robotframework-httprequestlibrary:jar:0.0.18
[INFO] com.github.marketsquare:robotframework-httprequestlibrary:jar:0.0.19
[INFO] +- org.robotframework:javalib-core:jar:2.0.3:compile
[INFO] | \- org.apache.commons:commons-collections4:jar:4.4:compile
[INFO] +- junit:junit:jar:4.13.2:test
[INFO] | \- org.hamcrest:hamcrest-core:jar:1.3:test
[INFO] +- com.github.hi-fi:httpclient:jar:0.0.7:compile
[INFO] | +- org.apache.httpcomponents:httpclient:jar:4.5.12:compile
[INFO] +- com.github.hi-fi:httpclient:jar:0.0.8:compile
[INFO] | +- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
[INFO] | | +- org.apache.httpcomponents:httpcore:jar:4.4.13:compile
[INFO] | | \- commons-codec:commons-codec:jar:1.11:compile
[INFO] | +- org.apache.httpcomponents:httpmime:jar:4.5.12:compile
[INFO] | \- org.apache.httpcomponents:httpclient-win:jar:4.5.12:compile
[INFO] | +- org.apache.httpcomponents:httpmime:jar:4.5.13:compile
[INFO] | \- org.apache.httpcomponents:httpclient-win:jar:4.5.13:compile
[INFO] | +- net.java.dev.jna:jna:jar:4.5.2:compile
[INFO] | \- net.java.dev.jna:jna-platform:jar:4.5.2:compile
[INFO] +- commons-io:commons-io:jar:2.11.0:compile
Expand All @@ -29,6 +29,6 @@
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1.116 s
[INFO] Finished at: 2022-01-08T20:30:47+02:00
[INFO] Total time: 0.929 s
[INFO] Finished at: 2022-01-09T17:00:59+02:00
[INFO] ------------------------------------------------------------------------
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ Robot Framework's library to test REST interfaces.
Library is mostly following structure of [Requests-library](https://github.com/bulkan/robotframework-requests).

* More information about this library can be found in the
[Keyword Documentation](https://repo1.maven.org/maven2/com/github/marketsquare/robotframework-httprequestlibrary/0.0.18/robotframework-httprequestlibrary-0.0.18.html).
[Keyword Documentation](https://repo1.maven.org/maven2/com/github/marketsquare/robotframework-httprequestlibrary/0.0.19/robotframework-httprequestlibrary-0.0.19.html).
* For keyword completion in RIDE you can download this
[Library Specs](https://repo1.maven.org/maven2/com/github/marketsquare/robotframework-httprequestlibrary/0.0.18/robotframework-httprequestlibrary-0.0.18.xml)
[Library Specs](https://repo1.maven.org/maven2/com/github/marketsquare/robotframework-httprequestlibrary/0.0.19/robotframework-httprequestlibrary-0.0.19.xml)
and place it in your PYTHONPATH.

Usage
Expand All @@ -20,18 +20,18 @@ your pom.xml:
<dependency>
<groupId>com.github.marketsquare</groupId>
<artifactId>robotframework-httprequestlibrary</artifactId>
<version>0.0.18</version>
<version>0.0.19</version>
</dependency>

With Gradle, library can be use by importing it as a dependency in build.gradle:

runtime('com.github.marketsquare:robotframework-httprequestlibrary:0.0.18')
runtime('com.github.marketsquare:robotframework-httprequestlibrary:0.0.19')

If you are not using any dependency management too, you can use the
[jar-with-dependencies](https://repo1.maven.org/maven2/com/github/marketsquare/robotframework-httprequestlibrary/0.0.18/robotframework-httprequestlibrary-0.0.18-jar-with-dependencies.jar),
[jar-with-dependencies](https://repo1.maven.org/maven2/com/github/marketsquare/robotframework-httprequestlibrary/0.0.19/robotframework-httprequestlibrary-0.0.19-jar-with-dependencies.jar),
which contains all required libraries. Running tests with that is done with command:

java -jar robotframework-httprequestlibrary-0.0.18-jar-with-dependencies.jar <test directory>
java -jar robotframework-httprequestlibrary-0.0.19-jar-with-dependencies.jar <test directory>

Library import in Robot tests can be done with:

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.marketsquare</groupId>
<artifactId>robotframework-httprequestlibrary</artifactId>
<version>0.0.19-SNAPSHOT</version>
<version>0.0.20-SNAPSHOT</version>
<packaging>jar</packaging>

<name>robotframework-httprequestlibrary</name>
Expand Down Expand Up @@ -62,7 +62,7 @@
<keywords.class>HttpRequestLibrary</keywords.class>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<powermock.version>1.6.5</powermock.version>
<httpclient.version>0.0.7</httpclient.version>
<httpclient.version>0.0.8</httpclient.version>
<robotframework.maven.plugin.version>2.1.0</robotframework.maven.plugin.version>
<robotframework.version>4.1.2</robotframework.version>
<environment>default</environment>
Expand Down

0 comments on commit 62dd276

Please sign in to comment.