-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.gradle.kts
48 lines (41 loc) · 1.64 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
/*
* 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.foundation.microui"
version = "4.1.0"
plugins {
id("com.microej.gradle.application") version "0.15.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")
*/
implementation("ej.api:edc:1.3.5")
implementation("ej.api:bon:1.4.3")
implementation("ej.api:microui:3.4.0")
/*
* 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")
/*
* To use a local VEE Port, uncomment the property below, set the path of the platform to use and comment the published microejVee dependency (see above).
* To use an Archived VEE Port, point the path directly to the Archive instead of a source folder: "C:\\path\\to\\my\\veePort\\file.zip".
*/
// microejVee(files("C:\\path\\to\\my\\veePort\\source"))
}
microej {
applicationMainClass = "com.microej.example.foundation.microui.led.ExampleLeds"
skippedCheckers = "nullanalysis"
}