> ##### Groovy DSL First, add the repository ```groovy repositories { maven { url 'https://repo.nevets.tech/repository/maven-public/' } } ``` Then, add the OSQL4J dependency: ```groovy dependencies { implementation "tech.nevets.osql4j:OSQL4J:1.0.1" } ``` If you want to provide your own jdbc driver dependencies, use the provided no-deps dependency ```groovy dependencies { implementation "tech.nevets.osql4j:OSQL4J:1.0.1:no-deps" } ``` > #### Kotlin DSL First, add the repository ```kotlin repositories { maven("https://repo.nevets.tech/repository/maven-public/") } ``` Then, add the OSQL4J dependency: ```kotlin dependencies { implementation("tech.nevets.osql4j:OSQL4J:1.0.1") } ``` If you want to provide your own jdbc driver dependencies, use the provided no-deps dependency ```kotlin dependencies { implementation("tech.nevets.osql4j:OSQL4J:1.0.1:no-deps") } ```
First, add the repository
```xml