-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
52 lines (46 loc) · 1.7 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
/*
* This build file was auto generated by running the Gradle 'init' task
* by 'neil' at '11/09/16 16:21' with Gradle 2.10
*
* This generated file contains a commented-out sample Java project to get you started.
* For more details take a look at the Java Quickstart chapter in the Gradle
* user guide available at https://docs.gradle.org/2.10/userguide/tutorial_java_projects.html
*/
buildscript {
repositories{
jcenter()
mavenCentral()
maven { url "http://repo.spring.io/milestone" }
maven { url "http://repo.spring.io/snapshot" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.1.RELEASE")
}
}
apply plugin: 'spring-boot'
apply plugin: 'java'
apply plugin: 'idea'
defaultTasks 'bootRun'
targetCompatibility = '1.8'
version = '1.0.0'
repositories {
jcenter()
mavenCentral()
maven{ url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
maven { url 'https://app.camunda.com/nexus/content/groups/public' }
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.13'
compile "org.springframework.boot:spring-boot-starter-data-jpa:1.4.0.RELEASE"
compile "org.springframework.boot:spring-boot-starter-web:1.4.0.RELEASE"
compile "org.springframework.boot:spring-boot-actuator:1.4.0.RELEASE"
compile "org.camunda.bpm.extension:camunda-bpm-spring-boot-starter-webapp:1.3.0"
compile group: 'org.camunda.bpm', name: 'camunda-bom', version: '7.5.0', ext: 'pom'
compile group: 'com.h2database', name: 'h2', version: '1.4.192'
compile 'org.postgresql:postgresql'
compile "org.flywaydb:flyway-core:4.1.2"
}
bootRun {
systemProperties = System.properties
}