Skip to content
This repository was archived by the owner on Dec 3, 2025. It is now read-only.

Commit 8d4db7d

Browse files
author
Sebastian Krawczyk
authored
Update README.md
1 parent 710f08a commit 8d4db7d

File tree

1 file changed

+39
-1
lines changed

1 file changed

+39
-1
lines changed

README.md

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff 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
2866
All of the following extension values can be maintained but do not need to be used at all.

0 commit comments

Comments
 (0)