-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle.kts
57 lines (48 loc) · 1.86 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
* Kotlin
*
* Copyright 2023-2024 MicroEJ Corp. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be found with this software.
*/
group = "com.microej.example.iot"
version = "5.1.0"
plugins {
id("com.microej.gradle.application") version "0.17.0"
}
dependencies {
/*
* Put your project dependencies here. An example of project dependency declaration is provided below:
*
* implementation("[org]:[otherArtifact]:[M.m.p]")
* e.g.: implementation("ej.library.runtime:basictool:1.7.0")
*/
//Core libraries.
implementation("ej.api:edc:1.3.5")
implementation("ej.api:bon:1.4.3")
implementation("ej.api:net:1.1.4")
implementation("ej.api:ssl:2.2.3")
//Addon Libraries used for the example.
implementation("ej.library.runtime:service:1.1.1")
implementation("ej.library.iot:net-util:1.2.0")
implementation("ej.library.iot:android-connectivity:1.2.0")
implementation("ej.library.eclasspath:logging:1.2.1")
implementation("ej.library.iot:micropaho:1.0.0")
implementation("ej.api:trace:1.1.1")
//This is used in case the application is run in standalone, in a multiapp firmware, the Connectivity Manager is provided by the firmware.
implementation("ej.library.iot:connectivity:2.1.0")
implementation("ej.library.iot:sntpclient:1.1.1")
/*
* Put your test dependencies here. An example of test dependency declaration is provided below:
*
* testImplementation("[org]:[otherArtifact]:[M.m.p]")
* e.g.: testImplementation("ej.library.test:junit:1.7.1")
*/
/*
* To use a VEE Port published in an artifact repository use this VEE Port dependency.
*/
microejVee("com.microej.veeport.st.stm32f7508-dk:M5QNX_eval:2.2.0")
}
microej {
applicationEntryPoint = "com.microej.example.iot.mqtt.Main"
skippedCheckers = "nullanalysis"
}