-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
62 lines (57 loc) · 1.85 KB
/
build.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
import org.ajoberstar.gradle.git.release.opinion.Strategies
buildscript {
repositories {
jcenter()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "com.netflix.nebula:nebula-kotlin-plugin:1.2.51"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:0.9.17"
classpath "gradle.plugin.org.jmailen.gradle:kotlinter-gradle:1.12.0"
classpath "com.netflix.nebula:nebula-release-plugin:6.3.5"
classpath "com.netflix.nebula:nebula-publishing-plugin:8.1.2"
classpath "com.netflix.nebula:nebula-bintray-plugin:3.5.5"
classpath "com.ferranpons:twitter-gradle-plugin:1.0.2"
classpath "org.jbake:jbake-gradle-plugin:1.2.0"
classpath "org.ajoberstar:gradle-git:1.7.2"
classpath "com.netflix.nebula:gradle-contacts-plugin:3.0.1"
classpath 'com.netflix.nebula:gradle-info-plugin:3.+'
}
}
allprojects {
apply plugin: 'nebula.release'
release {
// Let the default versioning strategy be the maven style -SNAPSHOT, instead of nebula's devSnapshot
defaultVersionStrategy = Strategies.SNAPSHOT
}
group 'com.tylerthrailkill'
description "Extensions to the Axon Framework"
}
subprojects {
repositories {
mavenCentral()
mavenLocal()
jcenter()
}
configurations {
compileClasspath {
resolutionStrategy.activateDependencyLocking()
}
runtimeClasspath {
resolutionStrategy.activateDependencyLocking()
}
testCompileClasspath {
resolutionStrategy.activateDependencyLocking()
}
testRuntimeClasspath {
resolutionStrategy.activateDependencyLocking()
}
}
}
/*
buildScan {
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
termsOfServiceAgree = 'yes'
publishAlways()
}
*/