Skip to content

Instantly share code, notes, and snippets.

@diegograssato
Created May 4, 2019 00:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diegograssato/74f5d492e29a018f83558127593795be to your computer and use it in GitHub Desktop.
Save diegograssato/74f5d492e29a018f83558127593795be to your computer and use it in GitHub Desktop.
spring-boot
group 'br.com.missaodevops'
version '1.0-SNAPSHOT'
apply plugin: 'groovy'
apply plugin: 'java'
apply plugin: 'idea'
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
maven { url 'http://repo.jenkins-ci.org/releases/'}
maven { url 'http://updates.jenkins-ci.org/download/plugins/'}
maven { url 'http://jenkins-updates.cloudbees.com/download/plugins/'}
mavenCentral()
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.3.11'
testCompile group: 'junit', name: 'junit', version: '4.11'
compile 'org.jenkins-ci.main:jenkins-core:2.45'
}
awk -v prefix="compile 'org.jenkins-ci.plugins:" -v postfix="'" '{print prefix $0 postfix}' plugins.txt > dependencies.txt
https://piotrminkowski.wordpress.com/2017/06/26/monitoring-microservices-with-spring-boot-admin/
https://piotrminkowski.wordpress.com/2017/12/01/part-2-microservices-security-with-oauth2/
https://piotrminkowski.wordpress.com/2018/08/02/quick-guide-to-microservices-with-kubernetes-spring-boot-2-0-and-docker/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment