47 lines
1.3 KiB
Groovy
47 lines
1.3 KiB
Groovy
/*
|
|
* This file was generated by the Gradle 'init' task.
|
|
*/
|
|
|
|
plugins {
|
|
id 'java'
|
|
id 'maven-publish'
|
|
id 'war'
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
maven {
|
|
url = uri('https://repo.maven.apache.org/maven2/')
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.postgresql:postgresql:42.2.23'
|
|
implementation 'org.apache.olingo:odata-server-api:4.8.0'
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.11.1'
|
|
implementation 'org.apache.olingo:odata-commons-api:4.8.0'
|
|
implementation 'org.apache.olingo:odata-commons-core:4.8.0'
|
|
implementation 'org.slf4j:slf4j-api:1.7.11'
|
|
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.11.4'
|
|
implementation 'com.google.code.gson:gson:2.8.7'
|
|
runtimeOnly 'mysql:mysql-connector-java:8.0.23'
|
|
runtimeOnly 'org.apache.olingo:odata-server-core:4.8.0'
|
|
runtimeOnly 'org.slf4j:slf4j-simple:1.7.7'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
|
|
providedCompile 'javax.servlet:javax.servlet-api:4.0.1'
|
|
}
|
|
|
|
group = 'org.reso'
|
|
version = '1.0'
|
|
description = 'RESOservice'
|
|
java.sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
publishing {
|
|
publications {
|
|
maven(MavenPublication) {
|
|
from(components.java)
|
|
}
|
|
}
|
|
}
|