# Maven Gradle Repo Guide - Apache Maven ```xml CUBETIQ Directory https://nexus.kh.cubetiqs.com/repository/maven/ false CUBETIQ Directory Snapshots https://nexus.kh.cubetiqs.com/repository/maven-snapshots/ true ``` - Gradle Groovy DSL ```groovy repositories { maven { url "https://nexus.kh.cubetiqs.com/repository/maven/" } maven { url "https://nexus.kh.cubetiqs.com/repository/maven-snapshots/" } } ``` - Gradle Kotlin DSL ```kotlin repositories { maven("https://nexus.kh.cubetiqs.com/repository/maven/") maven("https://nexus.kh.cubetiqs.com/repository/maven-snapshots/") } ```