Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Description: Gradle file for spring boot sample
Submitted on December 18, 2014 at 08:57 AM

Section 1 (Groovy)

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'

version = '1.0'
group = 'mh.dev.blog'
description = 'bootstrap-spring-boot'

project.ext {
	springBootVersion = '1.2.0'
}

repositories {
    mavenLocal()
    mavenCentral()
    maven { url "http://repo.spring.io/libs-snapshot" }
}

dependencies {
    compile("org.springframework.boot:spring-boot-starter:$springBootVersion")
    compile("org.springframework.boot:spring-boot-starter-data-jpa:$springBootVersion")
	compile("org.apache.commons:commons-lang3:3.2.1")
	compile("com.google.guava:guava:16.0.1")
    compile("org.yaml:snakeyaml:1.13")
    compile("mysql:mysql-connector-java:5.1.28")
    compile("cn.guoyukun.jdbc:oracle-ojdbc6:11.2.0.3.0")
}

task wrapper(type: Wrapper) {
    gradleVersion = '1.10'
}