MVN

org.apache.wink.example : HelloWorld

Maven & Gradle

Aug 26, 2013

Apache Wink Examples Apps :: HelloWorld

<dependency>
    <groupId>org.apache.wink.example</groupId>
    <artifactId>HelloWorld</artifactId>
    <version>1.4</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.apache.wink.example : HelloWorld to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.4

All Versions

Choose a version of org.apache.wink.example : HelloWorld to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.4
HelloWorld-1.4
1.3.x
HelloWorld-1.3.0
1.2.x
HelloWorld-1.2.1-incubating
HelloWorld-1.2.0-incubating
1.1.x
HelloWorld-1.1.3-incubating
HelloWorld-1.1.2-incubating
HelloWorld-1.1.1-incubating
1.1
HelloWorld-1.1-incubating
1.0
HelloWorld-1.0-incubating
0.1
HelloWorld-0.1-incubating

How to add a dependency to Maven

Add the following org.apache.wink.example : HelloWorld maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.apache.wink.example</groupId>
    <artifactId>HelloWorld</artifactId>
    <version>1.4</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.apache.wink.example : HelloWorld gradle dependency to your build.gradle file:

implementation 'org.apache.wink.example:HelloWorld:1.4'

Gradle Kotlin DSL: Add the following org.apache.wink.example : HelloWorld gradle kotlin dependency to your build.gradle.kts file:

implementation("org.apache.wink.example:HelloWorld:1.4")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.apache.wink.example : HelloWorld sbt scala dependency to your build.sbt file:

libraryDependencies += "org.apache.wink.example" % "HelloWorld" % "1.4"