4 changed files with 36 additions and 1 deletions
@ -0,0 +1,17 @@
@@ -0,0 +1,17 @@
|
||||
buildscript { |
||||
dependencies { |
||||
classpath "io.spring.gradle:dependency-management-plugin:0.5.2.RELEASE" |
||||
} |
||||
} |
||||
|
||||
apply plugin: "io.spring.dependency-management" |
||||
|
||||
dependencyManagement { |
||||
imports { |
||||
mavenBom '{@= groupId @}:spring-cloud-commons-dependencies:{@= version @}' |
||||
} |
||||
} |
||||
|
||||
dependencies { |
||||
compile '{@= groupId @}:spring-cloud-starter' |
||||
} |
@ -0,0 +1,17 @@
@@ -0,0 +1,17 @@
|
||||
<dependencyManagement> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>{@= groupId @}</groupId> |
||||
<artifactId>spring-cloud-commons-dependencies</artifactId> |
||||
<version>{@= version @}</version> |
||||
<type>pom</type> |
||||
<scope>import</scope> |
||||
</dependency> |
||||
</dependencies> |
||||
</dependencyManagement> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>{@= groupId @}</groupId> |
||||
<artifactId>spring-cloud-starter</artifactId> |
||||
</dependency> |
||||
</dependencies> |
Loading…
Reference in new issue