-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsettings.gradle
84 lines (75 loc) · 2.23 KB
/
settings.gradle
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
73
74
75
76
77
78
79
80
81
82
83
84
pluginManagement {
plugins {
id('org.sonarqube') version '3.2.0'
id('org.openjfx.javafxplugin') version '0.0.10'
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
}
}
buildCache {
local {
directory = file("$rootDir/.gradle/build-cache")
removeUnusedEntriesAfterDays = 30
}
}
buildscript {
repositories {
maven {
setUrl('https://plugins.gradle.org/m2/')
}
mavenCentral()
}
dependencies {
classpath "org.openjfx:javafx-plugin:0.0.10"
}
}
rootProject.name = 'slideshowfx'
include 'slideshowfx-app',
'slideshowfx-content-extension',
'slideshowfx-documentation',
'slideshowfx-engines',
'slideshowfx-global-configuration',
'slideshowfx-hosting-connector',
'slideshowfx-icons',
'slideshowfx-logs',
'slideshowfx-markup',
'slideshowfx-plugin',
'slideshowfx-plugin-manager',
'slideshowfx-server',
'slideshowfx-setup',
'slideshowfx-snippet-executor',
'slideshowfx-style',
'slideshowfx-ui-controls',
'slideshowfx-utils',
// Content extension plugin
'slideshowfx-alert-extension',
'slideshowfx-code-extension',
'slideshowfx-image-extension',
'slideshowfx-link-extension',
'slideshowfx-quiz-extension',
'slideshowfx-quote-extension',
'slideshowfx-sequence-diagram-extension',
'slideshowfx-shape-extension',
'slideshowfx-snippet-extension',
// Hosting connector plugins
'slideshowfx-box-hosting-connector',
'slideshowfx-drive-hosting-connector',
'slideshowfx-dropbox-hosting-connector',
// Markup plugins
'slideshowfx-asciidoctor',
'slideshowfx-html',
'slideshowfx-markdown',
'slideshowfx-textile',
// Snippet executor plugins
'slideshowfx-go-executor',
'slideshowfx-golo-executor',
'slideshowfx-groovy-executor',
'slideshowfx-java-executor',
'slideshowfx-javascript-executor',
'slideshowfx-kotlin-executor',
'slideshowfx-ruby-executor',
'slideshowfx-rust-executor',
'slideshowfx-scala-executor'