-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsettings.gradle.kts
49 lines (45 loc) · 1.96 KB
/
settings.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
/*
* Copyright 2025, TeamDev. All rights reserved.
*
* Redistribution and use in source and/or binary forms, with or without
* modification, must retain the above copyright notice and the following
* disclaimer.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
rootProject.name = "JxBrowser-Examples"
/**
* Includes a module and sets custom project directory to it.
*/
val module: (String, String) -> Unit = { name, path ->
include(name)
project(":$name").projectDir = File(path)
}
include("examples")
// DOM changes
module("content-changes", "./tutorials/content-changes")
module("docker", "./tutorials/docker")
module("eclipse-rcp", "./tutorials/eclipse-rcp")
// Selenium integration
module("launcher", "./tutorials/selenium/launcher")
module("target-app", "./tutorials/selenium/target-app")
// Java web crawler
module("web-crawler", "./tutorials/web-crawler")
// Java media player
module("media-player", "./tutorials/media-player")
// JxBrowser logs redirection
module("jul-logs-redirect", "./tutorials/jul-logs-redirect")
module("html2png", "./tutorials/html2png")
module("serve-from-directory", "./tutorials/serve-from-directory")
module("js-java", "./tutorials/js-java")
module("crx-extensions", "./tutorials/crx-extensions")