MVN

org.simple4j : WSClient

Maven & Gradle

Nov 22, 2019
0 stars

WSClient · This is a simple Web Service Client library to call wide variety of web service behind HTTP. In theory it can support any interface or payload. On the request side, to convert java object to HTTP request components (URL, headers, body), templating is used which allows it to call XML, JSON, SOAP, REST or anyother custom interface. On the response side, it uses pluggable parser and a mapper to only extract the fields that are of interest for the client program. The parser currently supports JSON and XML and returns a collections tree.

<dependency>
    <groupId>org.simple4j</groupId>
    <artifactId>WSClient</artifactId>
    <version>1.1.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.simple4j : WSClient to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.1.2

All Versions

Choose a version of org.simple4j : WSClient to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.1.x
WSClient-1.1.2
WSClient-1.1.1
WSClient-1.1.0
1.0.x
WSClient-1.0.0

How to add a dependency to Maven

Add the following org.simple4j : WSClient maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.simple4j</groupId>
    <artifactId>WSClient</artifactId>
    <version>1.1.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.simple4j : WSClient gradle dependency to your build.gradle file:

implementation 'org.simple4j:WSClient:1.1.2'

Gradle Kotlin DSL: Add the following org.simple4j : WSClient gradle kotlin dependency to your build.gradle.kts file:

implementation("org.simple4j:WSClient:1.1.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.simple4j : WSClient sbt scala dependency to your build.sbt file:

libraryDependencies += "org.simple4j" % "WSClient" % "1.1.2"

Advertisement