MVN

cd.connect.tiles : tile-release

Maven & Gradle

Oct 07, 2017

tile-release · This is the foundation tile of all other releases for the platform. It defines how a Maven project is to be released to Central and what plugins must run (and pass) for this to happen. Other tiles will build on this one.

<dependency>
    <groupId>cd.connect.tiles</groupId>
    <artifactId>tile-release</artifactId>
    <version>1.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of cd.connect.tiles : tile-release to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.3

All Versions

Choose a version of cd.connect.tiles : tile-release to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.3
tile-release-1.3
1.2
tile-release-1.2
1.1
tile-release-1.1

How to add a dependency to Maven

Add the following cd.connect.tiles : tile-release maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>cd.connect.tiles</groupId>
    <artifactId>tile-release</artifactId>
    <version>1.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following cd.connect.tiles : tile-release gradle dependency to your build.gradle file:

implementation 'cd.connect.tiles:tile-release:1.3'

Gradle Kotlin DSL: Add the following cd.connect.tiles : tile-release gradle kotlin dependency to your build.gradle.kts file:

implementation("cd.connect.tiles:tile-release:1.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following cd.connect.tiles : tile-release sbt scala dependency to your build.sbt file:

libraryDependencies += "cd.connect.tiles" % "tile-release" % "1.3"