forked from MicroEJ/Example-Java-Widget
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
72 lines (71 loc) · 2.99 KB
/
settings.gradle.kts
File metadata and controls
72 lines (71 loc) · 2.99 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
* Kotlin
*
* Copyright 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.
*/
rootProject.name = "widget-examples"
pluginManagement {
repositories {
/* MicroEJ Central repository for Maven/Gradle modules */
maven {
name = "microEJCentral"
url = uri("https://repository.microej.com/modules")
}
/* MicroEJ Forge Central repository for Maven/Gradle modules */
maven {
name = "microEJForgeCentral"
url = uri("https://forge.microej.com/artifactory/microej-central-repository-release")
}
/* MicroEJ Developer repository for Maven/Gradle modules */
maven {
name = "microEJForgeDeveloper"
url = uri("https://forge.microej.com/artifactory/microej-developer-repository-release")
}
/* MicroEJ SDK 6 repository for Maven/Gradle modules */
maven {
name = "microEJForgeSDK6"
url = uri("https://forge.microej.com/artifactory/microej-sdk6-repository-release/")
}
/* MicroEJ Central repository for Ivy modules */
ivy {
name = "microEJCentralIvy"
url = uri("https://repository.microej.com/modules")
patternLayout {
artifact("[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier])(.[ext])")
ivy("[organisation]/[module]/[revision]/ivy-[revision].xml")
setM2compatible(true)
}
}
/* MicroEJ Forge Central repository for Ivy modules */
ivy {
name = "microEJForgeCentralIvy"
url = uri("https://forge.microej.com/artifactory/microej-central-repository-release")
patternLayout {
artifact("[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier])(.[ext])")
ivy("[organisation]/[module]/[revision]/ivy-[revision].xml")
setM2compatible(true)
}
}
/* MicroEJ Developer repository for Ivy modules */
ivy {
name = "microEJForgeDeveloperIvy"
url = uri("https://forge.microej.com/artifactory/microej-developer-repository-release")
patternLayout {
artifact("[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier])(.[ext])")
ivy("[organisation]/[module]/[revision]/ivy-[revision].xml")
setM2compatible(true)
}
}
/* MicroEJ SDK 6 repository for Ivy modules */
ivy {
name = "microEJForgeSDK6Ivy"
url = uri("https://forge.microej.com/artifactory/microej-sdk6-repository-release/")
patternLayout {
artifact("[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier])(.[ext])")
ivy("[organisation]/[module]/[revision]/ivy-[revision].xml")
setM2compatible(true)
}
}
}
}