This repository was archived by the owner on Dec 3, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +39
-1
lines changed
Expand file tree Collapse file tree 1 file changed +39
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,45 @@ The following things can be managed by the plugin:
2222- Checking for connection to a specific WLAN - A check for a connection to a specific WLAN can be done
2323
2424# Integration into the project
25- //maintain steps for integrating into project
25+ ## Groovy
26+ ### Plugins DSL
27+ plugins {
28+ id "de.welt.apps.testdevicemanager" version "1.1"
29+ }
30+
31+ ### Legacy plugin application
32+ buildscript {
33+ repositories {
34+ maven {
35+ url "https://plugins.gradle.org/m2/ "
36+ }
37+ }
38+ dependencies {
39+ classpath "de.welt.apps:testdevicemanager:1.1"
40+ }
41+ }
42+
43+ apply plugin: "de.welt.apps.testdevicemanager"
44+
45+ ## Kotlin
46+ ### Plugins DSL
47+ plugins {
48+ id("de.welt.apps.testdevicemanager") version "1.1"
49+ }
50+
51+ ### Legacy plugin application
52+ buildscript {
53+ repositories {
54+ maven {
55+ url = uri("https://plugins.gradle.org/m2/ ")
56+ }
57+ }
58+ dependencies {
59+ classpath("de.welt.apps:testdevicemanager:1.1")
60+ }
61+ }
62+
63+ apply(plugin = "de.welt.apps.testdevicemanager")
2664
2765# Setup
2866All of the following extension values can be maintained but do not need to be used at all.
You can’t perform that action at this time.
0 commit comments