-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
52 lines (46 loc) · 1.22 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
buildscript {
ext {
springDependencyManagementPluginVersion = '1.0.7.RELEASE'
}
repositories {
mavenCentral()
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
dependencies {
classpath "io.spring.gradle:dependency-management-plugin:$springDependencyManagementPluginVersion"
}
}
allprojects {
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'maven-publish'
group = 'io.rsocket.spring.boot'
version = '0.0.2.BUILD-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
maven { url 'https://oss.jfrog.org/oss-snapshot-local' }
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
ext {
springBootDependenciesVersion = "2.2.0.RC1"
rSocketVersion = "1.0.0-RC5"
}
dependencyManagement {
imports {
mavenBom "org.springframework.boot:spring-boot-dependencies:$springBootDependenciesVersion"
mavenBom "io.rsocket:rsocket-bom:$rSocketVersion"
}
}
publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
}
}