-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
50 lines (42 loc) · 2.36 KB
/
Copy pathbuild.gradle
File metadata and controls
50 lines (42 loc) · 2.36 KB
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
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java Library project to get you started.
* For more details take a look at the Java Libraries chapter in the Gradle
* User Manual available at https://docs.gradle.org/6.3/userguide/java_library_plugin.html
*/
plugins { id "org.springframework.boot" version "2.1.3.RELEASE" } // this should be first line
apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'maven'
apply plugin: 'application'
group = 'EventManagementProject'
description = "EventManagementProject"
mainClassName = "eventManagement.App"
sourceCompatibility = 11
targetCompatibility = 11
repositories {
mavenCentral()
maven { url "https://repo.maven.apache.org/maven2" }
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
compile group: 'org.springframework.boot', name: 'spring-boot-gradle-plugin', version:'2.1.3.RELEASE'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version:'2.1.3.RELEASE'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa', version:'2.1.3.RELEASE'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-actuator', version:'2.1.3.RELEASE'
testCompile group: 'org.springframework.boot', name: 'spring-boot-starter-test', version:'2.1.3.RELEASE'
compile group: 'javax.xml.bind', name: 'jaxb-api', version:'2.3.1'
compile group: 'javax.activation', name: 'activation', version:'1.1.1'
compile group: 'com.auth0', name: 'java-jwt', version:'3.8.1'
compile group: 'org.json', name: 'json', version:'20180813'
compile group: 'org.hsqldb', name: 'hsqldb', version:'2.4.1'
compile(group: 'mysql', name: 'mysql-connector-java', version:'8.0.15') { exclude(module: 'protobuf-java')}
compile group: 'io.opentracing.contrib', name: 'opentracing-spring-web-autoconfigure', version:'0.0.2'
compile group: 'com.uber.jaeger', name: 'jaeger-core', version:'0.18.0'
compile group: 'io.micrometer', name: 'micrometer-registry-prometheus', version:'1.1.3'
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
implementation 'com.google.guava:guava:28.2-jre'
// Use JUnit test framework
testImplementation 'junit:junit:4.12'
}