2021-03-16 14:25:15 +01:00
plugins {
2023-01-03 17:39:50 +01:00
id 'org.springframework.boot' version '2.7.7'
2022-11-30 15:28:39 +01:00
id 'io.spring.dependency-management' version '1.1.0'
2021-03-16 14:25:15 +01:00
id 'java'
}
group = 'eu.openaire.urls_controller'
2021-11-09 22:59:27 +01:00
version = '1.0.0-SNAPSHOT'
2021-03-16 14:25:15 +01:00
sourceCompatibility = '1.8'
repositories {
mavenCentral ( )
2021-11-09 22:59:27 +01:00
maven {
2022-01-27 23:41:29 +01:00
name "omtd"
url "https://repo.openminted.eu/content/repositories/releases/"
2021-11-09 22:59:27 +01:00
}
maven {
name "pentaho-repo"
url "https://public.nexus.pentaho.org/content/groups/omni/"
}
2021-03-16 14:25:15 +01:00
}
dependencies {
2021-11-04 10:57:19 +01:00
runtimeOnly "org.springframework.boot:spring-boot-devtools"
2021-03-16 14:25:15 +01:00
2021-11-04 10:57:19 +01:00
implementation "org.springframework.boot:spring-boot-starter-web"
implementation ( "org.springframework.boot:spring-boot-starter-security" )
implementation ( "org.springframework.boot:spring-boot-starter-jdbc" )
implementation ( "org.springframework.boot:spring-boot-configuration-processor" )
implementation ( "org.springframework.security:spring-security-core" )
implementation ( "org.springframework.security:spring-security-web" )
implementation ( "org.springframework.security:spring-security-config" )
2021-09-09 14:56:37 +02:00
2022-06-27 20:41:32 +02:00
//implementation group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.11.5' // Use this in case we use auth-tokens later on.
2021-03-16 14:25:15 +01:00
2021-11-04 10:57:19 +01:00
// Enable the validation annotations.
2022-06-27 20:41:32 +02:00
//implementation group: 'jakarta.validation', name: 'jakarta.validation-api', version: '3.0.2'
2021-11-04 10:57:19 +01:00
2022-05-26 14:43:59 +02:00
implementation "org.projectlombok:lombok:1.18.24"
2021-11-04 10:57:19 +01:00
2021-05-18 16:23:20 +02:00
// https://mvnrepository.com/artifact/com.google.guava/guava
2022-03-28 13:29:31 +02:00
implementation group: 'com.google.guava' , name: 'guava' , version: '31.1-jre'
2021-03-16 14:25:15 +01:00
2021-12-23 23:25:50 +01:00
// https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
implementation group: 'org.apache.commons' , name: 'commons-lang3' , version: '3.12.0'
2023-01-10 12:34:54 +01:00
// https://mvnrepository.com/artifact/org.apache.commons/commons-compress
implementation 'org.apache.commons:commons-compress:1.22'
2023-01-10 14:58:23 +01:00
implementation 'io.minio:minio:8.4.6'
2021-11-30 17:23:27 +01:00
2021-11-09 22:59:27 +01:00
// https://mvnrepository.com/artifact/com.cloudera.impala/jdbc
2022-01-30 21:14:52 +01:00
implementation ( "com.cloudera.impala:jdbc:2.5.31" ) {
2022-11-10 16:18:21 +01:00
exclude group: 'org.apache.hive' , module: 'hive-exec'
exclude group: 'com.twitter' , module: 'parquet-hadoop-bundle'
exclude group: 'org.apache.parquet' , module: 'parquet-avro'
exclude group: 'org.apache.avro' , module: 'avro'
2022-01-30 21:14:52 +01:00
exclude group: 'org.slf4j' , module: 'slf4j-log4j12'
exclude group: 'org.apache.derby' , module: 'derby'
exclude group: 'org.eclipse.jetty.aggregate' , module: 'jetty-all'
2022-11-10 16:18:21 +01:00
exclude group: 'ch.qos.log4j' , module: 'log4j'
exclude group: 'ch.qos.log4j' , module: 'apache-log4j-extras'
// Vulnerable dependencies:
2022-01-30 21:14:52 +01:00
exclude group: 'log4j' , module: 'log4j'
2022-11-10 16:18:21 +01:00
exclude group: 'org.apache.ant' , module: 'ant'
exclude group: 'org.apache.thrift' , module: 'libthrift' // This is an older version (we add the updated one later).
exclude group: 'org.apache.hive' , module: 'hive-metastore'
// Avoid excluding 'org.apache.hive:hive-service', as this is needed and unfortunately, even adding a newer version separately, it introducing other vulnerable dependencies.
2022-01-30 21:14:52 +01:00
}
2021-03-16 14:25:15 +01:00
2022-11-10 16:18:21 +01:00
// https://mvnrepository.com/artifact/org.apache.parquet/parquet-avro
implementation ( 'org.apache.parquet:parquet-avro:1.12.3' )
// https://mvnrepository.com/artifact/org.apache.hadoop/hadoop-common
implementation ( 'org.apache.hadoop:hadoop-common:3.3.4' ) {
exclude group: 'org.apache.parquet' , module: 'parquet-avro'
exclude group: 'org.apache.avro' , module: 'avro'
exclude group: 'org.slf4j' , module: 'slf4j-api'
exclude group: 'org.slf4j' , module: 'slf4j-reload4j'
exclude group: 'ch.qos.reload4j' , module: 'reload4j'
// Vulnerable dependencies:
exclude group: 'com.google.protobuf' , module: 'protobuf-java'
exclude group: 'org.codehaus.jackson' , module: 'jackson-core-asl'
exclude group: 'org.codehaus.jackson' , module: 'jackson-mapper-asl'
2022-11-30 15:28:39 +01:00
exclude group: 'com.fasterxml.woodstox' , module: 'woodstox-core'
2022-11-10 16:18:21 +01:00
//exclude group: 'commons-collections', module: 'commons-collections' // This dependency is required in order for the program to run without errors.
}
// https://mvnrepository.com/artifact/org.apache.hadoop/hadoop-mapreduce-client-core
implementation ( 'org.apache.hadoop:hadoop-mapreduce-client-core:3.3.4' ) {
exclude group: 'org.apache.parquet' , module: 'parquet-avro'
exclude group: 'org.apache.avro' , module: 'avro'
exclude group: 'org.slf4j' , module: 'slf4j-api'
exclude group: 'org.slf4j' , module: 'slf4j-reload4j'
exclude group: 'ch.qos.reload4j' , module: 'reload4j'
// Vulnerable dependencies:
exclude group: 'com.google.protobuf' , module: 'protobuf-java'
exclude group: 'io.netty' , module: 'netty'
}
2022-11-30 15:28:39 +01:00
// Add back some updated version of the needed dependencies.
implementation 'org.apache.thrift:libthrift:0.17.0'
implementation 'com.fasterxml.woodstox:woodstox-core:6.4.0'
2022-11-10 16:18:21 +01:00
// https://mvnrepository.com/artifact/org.json/json
implementation 'org.json:json:20220924'
2022-12-07 12:48:00 +01:00
testImplementation 'org.springframework.security:spring-security-test'
2021-11-09 22:59:27 +01:00
testImplementation "org.springframework.boot:spring-boot-starter-test"
}
2022-11-10 16:18:21 +01:00
configurations . implementation {
exclude group: 'com.twitter' , module: 'parquet-hadoop-bundle'
}
2021-12-06 19:27:39 +01:00
// Set increased lower and upper limits for the java-execution.
2022-12-15 13:04:22 +01:00
tasks . withType ( JavaExec ) . configureEach {
2021-12-06 19:27:39 +01:00
jvmArgs = [ '-Xms512m' , '-Xmx8g' ]
}
2021-03-16 17:07:30 +01:00
test {
useJUnitPlatform ( )
2022-01-27 23:41:29 +01:00
}