Adds missing files
This commit is contained in:
@@ -39,5 +39,5 @@ custom_gradle_template: false
|
||||
### The following properties are constant for most projects
|
||||
|
||||
main_site_url: https://spring.io
|
||||
projects_site_url: https://cloud.spring.io
|
||||
projects_site_url: https://projects.spring.io
|
||||
questions_url: https://spring.io/questions
|
||||
|
||||
17
_includes/build.gradle
Normal file
17
_includes/build.gradle
Normal file
@@ -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'
|
||||
}
|
||||
1
_includes/custom.js
Normal file
1
_includes/custom.js
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
17
_includes/pom.xml
Normal file
17
_includes/pom.xml
Normal file
@@ -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>
|
||||
Reference in New Issue
Block a user