-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
39 lines (36 loc) · 1.21 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
plugins {
id("java")
}
group = "io.github.areebgillani"
version = "1.0-SNAPSHOT"
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_17
}
repositories {
mavenCentral()
// To include Boost libraries
maven("https://jitpack.io")
mavenLocal()
}
dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.2")
// Core Vertx libraries
implementation("io.vertx:vertx-web:4.4.5")
implementation("io.vertx:vertx-config:4.4.5")
implementation("io.vertx:vertx-core:4.4.5")
// Boost libraries
implementation("com.github.Areeb-Gillani:vertx-boost-db:0.0.4")
implementation("com.github.Areeb-Gillani:vertx-boost:0.0.15")
// For database inclusion
implementation("io.vertx:vertx-sql-client-templates:4.4.5")
implementation("io.vertx:vertx-mysql-client:4.4.5")
// To generate mapper from @DataObject annotation
compileOnly("io.vertx:vertx-codegen:4.4.5")
annotationProcessor("io.vertx:vertx-codegen:4.4.5:processor")
annotationProcessor("io.vertx:vertx-sql-client-templates:4.4.5")
}
tasks.getByName<Test>("test") {
useJUnitPlatform()
}