/* * Kotlin * * Copyright 2024-2025 MicroEJ Corp. * Use of this source code is governed by a BSD-style license that can be found with this software. */ plugins { alias(libs.plugins.application) } group = "com.example" version = "1.0.0-RC" microej { applicationEntryPoint = "com.example.ble_throughput_server.Main" architectureUsage = "prod" skippedCheckers = "readme,changelog,license, nullanalysis" } dependencies { implementation("ej.api:edc:1.3.5") implementation("ej.api:bon:1.4.3") implementation("ej.api:bluetooth:2.2.1") implementation("ej.library.iot:bluetooth-util:2.0.0") microejVee(project(":vee-port")) }