forked from bitcoinj/bitcoinj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
45 lines (32 loc) · 1.25 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
/*
* Settings file for Gradle 7.3 or later.
* For building with Debian Gradle 4.4, use the settings-debian.gradle settings.
*/
import org.gradle.util.GradleVersion
// Minimum Gradle version for build
def minGradleVersion = GradleVersion.version("7.3")
rootProject.name = 'bitcoinj-parent'
if (GradleVersion.current() < minGradleVersion) {
throw new GradleScriptException("bitcoinj build requires Gradle ${minGradleVersion.version} or later", null)
}
if (!JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_17)) {
throw new GradleScriptException("bitcoinj build requires Java 17 or later", null)
}
include 'test-support'
project(':test-support').name = 'bitcoinj-test-support'
include 'base'
project(':base').name = 'bitcoinj-base'
include 'core'
project(':core').name = 'bitcoinj-core'
include 'tools'
project(':tools').name = 'bitcoinj-tools'
include 'wallettool'
project(':wallettool').name = 'bitcoinj-wallettool'
include 'examples'
project(':examples').name = 'bitcoinj-examples'
include 'wallettemplate'
project(':wallettemplate').name = 'bitcoinj-wallettemplate'
include 'integration-test'
project(':integration-test').name = 'bitcoinj-integration-test'
include 'examples-kotlin'
project(':examples-kotlin').name = 'bitcoinj-examples-kotlin'