MVN

tech.sirwellington.alchemy : alchemy-thrift

Maven & Gradle

Jun 26, 2018
19 usages
1 stars

Part of the Alchemy Collection. Makes it Simple to work with Thrift in Java. Saves you from writing boiler-plate code, such as management of Clients, and serialization of Thrift Objects. This library also demonstrates how to incorporate thrift with maven, for incorporation into your continuous delivery and distribution of your thrift schemas.

<dependency>
    <groupId>tech.sirwellington.alchemy</groupId>
    <artifactId>alchemy-thrift</artifactId>
    <version>2.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of tech.sirwellington.alchemy : alchemy-thrift to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.1

All Versions

Choose a version of tech.sirwellington.alchemy : alchemy-thrift to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.1
alchemy-thrift-2.1
2.0
alchemy-thrift-2.0
1.0
alchemy-thrift-1.0
0.9.x
alchemy-thrift-0.9.1
0.9
alchemy-thrift-0.9

How to add a dependency to Maven

Add the following tech.sirwellington.alchemy : alchemy-thrift maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>tech.sirwellington.alchemy</groupId>
    <artifactId>alchemy-thrift</artifactId>
    <version>2.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following tech.sirwellington.alchemy : alchemy-thrift gradle dependency to your build.gradle file:

implementation 'tech.sirwellington.alchemy:alchemy-thrift:2.1'

Gradle Kotlin DSL: Add the following tech.sirwellington.alchemy : alchemy-thrift gradle kotlin dependency to your build.gradle.kts file:

implementation("tech.sirwellington.alchemy:alchemy-thrift:2.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following tech.sirwellington.alchemy : alchemy-thrift sbt scala dependency to your build.sbt file:

libraryDependencies += "tech.sirwellington.alchemy" % "alchemy-thrift" % "2.1"

Advertisement