2025-03-10 22:43:31 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								import org.apache.tools.ant.filters.ReplaceTokens
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2017-03-21 11:58:19 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								buildscript {
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-23 17:49:23 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.jdkVersionDefault = 17
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  ext.javaClassVersionDefault = 11
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2024-04-16 13:50:41 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  def springModules = ['mae-consumer', 'mce-consumer', 'pe-consumer']
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-23 17:49:23 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.jdkVersion = { p ->
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    // If Spring 6 is present, hard dependency on jdk17
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    if (p.configurations.any { it.getDependencies().any{
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      (it.getGroup().equals("org.springframework") && it.getVersion().startsWith("6."))
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      || (it.getGroup().equals("org.springframework.boot") && it.getVersion().startsWith("3.") && !it.getName().equals("spring-boot-starter-test"))
							 | 
						
					
						
							
								
									
										
										
										
											2024-04-16 13:50:41 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    }} || springModules.contains(p.name)) {
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-23 17:49:23 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								      return 17
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    } else {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      // otherwise we can use the preferred default which can be overridden with a property: -PjdkVersionDefault
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      return p.hasProperty('jdkVersionDefault') ? Integer.valueOf((String) p.getProperty('jdkVersionDefault')) : ext.jdkVersionDefault
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  ext.javaClassVersion = { p ->
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    // If Spring 6 is present, hard dependency on jdk17
							 | 
						
					
						
							
								
									
										
										
										
											2024-02-28 16:57:26 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    if (p.configurations.any { it.getDependencies().any {
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-23 17:49:23 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								      (it.getGroup().equals("org.springframework") && it.getVersion().startsWith("6."))
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								              || (it.getGroup().equals("org.springframework.boot") && it.getVersion().startsWith("3.") && !it.getName().equals("spring-boot-starter-test"))
							 | 
						
					
						
							
								
									
										
										
										
											2024-04-16 13:50:41 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    }} || springModules.contains(p.name)) {
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-23 17:49:23 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								      return 17
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    } else {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      // otherwise we can use the preferred default which can be overridden with a property: -PjavaClassVersionDefault
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      return p.hasProperty('javaClassVersionDefault') ? Integer.valueOf((String) p.getProperty('javaClassVersionDefault')) : ext.javaClassVersionDefault
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  }
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-02 20:49:34 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.junitJupiterVersion = '5.6.1'
							 | 
						
					
						
							
								
									
										
										
										
											2022-12-26 10:09:08 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  // Releases: https://github.com/linkedin/rest.li/blob/master/CHANGELOG.md
							 | 
						
					
						
							
								
									
										
										
										
											2025-08-23 20:18:29 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.pegasusVersion = '29.74.2'
							 | 
						
					
						
							
								
									
										
										
										
											2021-11-28 21:06:27 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.mavenVersion = '3.6.3'
							 | 
						
					
						
							
								
									
										
										
										
											2025-07-09 19:18:02 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.versionGradle = '8.14.3'
							 | 
						
					
						
							
								
									
										
										
										
											2025-08-20 21:04:21 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.springVersion = '6.2.10'
							 | 
						
					
						
							
								
									
										
										
										
											2025-05-01 14:40:49 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.springBootVersion = '3.4.5'
							 | 
						
					
						
							
								
									
										
										
										
											2025-08-27 17:03:56 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.springKafkaVersion = '3.3.8'
							 | 
						
					
						
							
								
									
										
										
										
											2025-04-18 12:57:01 -03:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.openTelemetryVersion = '1.49.0'
							 | 
						
					
						
							
								
									
										
										
										
											2025-01-23 10:45:40 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.neo4jVersion = '5.20.0'
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  ext.neo4jApocVersion = '5.20.0'
							 | 
						
					
						
							
								
									
										
										
										
											2025-06-15 10:52:16 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.testContainersVersion = '1.21.1'
							 | 
						
					
						
							
								
									
										
										
										
											2024-03-07 14:15:22 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.elasticsearchVersion = '2.11.1' // ES 7.10, Opensearch 1.x, 2.x
							 | 
						
					
						
							
								
									
										
										
										
											2025-05-24 13:42:10 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.jacksonVersion = '2.18.4'
							 | 
						
					
						
							
								
									
										
										
										
											2025-06-03 14:06:02 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.jettyVersion = '12.0.21'
							 | 
						
					
						
							
								
									
										
										
										
											2024-10-28 09:05:16 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  // see also datahub-frontend/play.gradle
							 | 
						
					
						
							
								
									
										
										
										
											2024-06-18 11:28:39 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.playVersion = '2.8.22'
							 | 
						
					
						
							
								
									
										
										
										
											2024-10-28 09:05:16 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.playScalaVersion = '2.13'
							 | 
						
					
						
							
								
									
										
										
										
											2024-11-27 17:05:37 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.akkaVersion = '2.6.21' // 2.7.0+ has incompatible license
							 | 
						
					
						
							
								
									
										
										
										
											2024-06-18 11:28:39 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.log4jVersion = '2.23.1'
							 | 
						
					
						
							
								
									
										
										
										
											2023-04-21 15:45:20 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.slf4jVersion = '1.7.36'
							 | 
						
					
						
							
								
									
										
										
										
											2025-04-12 15:34:17 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.logbackClassic = '1.5.18'
							 | 
						
					
						
							
								
									
										
										
										
											2024-08-23 10:26:42 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.hadoop3Version = '3.3.6'
							 | 
						
					
						
							
								
									
										
										
										
											2025-06-15 10:52:16 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.kafkaVersion = '8.0.0'
							 | 
						
					
						
							
								
									
										
										
										
											2023-11-14 19:00:22 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.hazelcastVersion = '5.3.6'
							 | 
						
					
						
							
								
									
										
										
										
											2024-09-16 18:37:36 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.ebeanVersion = '15.5.2'
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-06 11:02:42 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.googleJavaFormatVersion = '1.18.1'
							 | 
						
					
						
							
								
									
										
										
										
											2025-08-01 14:16:45 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.openLineageVersion = '1.33.0'
							 | 
						
					
						
							
								
									
										
										
										
											2024-03-01 16:31:21 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.logbackClassicJava8 = '1.2.12'
							 | 
						
					
						
							
								
									
										
										
										
											2025-03-06 11:55:57 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.awsSdk2Version = '2.30.33'
							 | 
						
					
						
							
								
									
										
										
										
											2025-07-08 12:40:24 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.micrometerVersion = '1.15.1'
							 | 
						
					
						
							
								
									
										
										
										
											2022-12-04 21:57:47 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2025-04-24 23:00:03 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ext.docker_registry = project.getProperties().getOrDefault("dockerRegistry", 'acryldata')
							 | 
						
					
						
							
								
									
										
										
										
											2022-12-29 03:38:36 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-31 20:51:14 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  apply from: './repositories.gradle'
							 | 
						
					
						
							
								
									
										
										
										
											2017-03-21 11:58:19 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  buildscript.repositories.addAll(project.repositories)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  dependencies {
							 | 
						
					
						
							
								
									
										
										
										
											2020-05-08 12:00:28 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    classpath 'com.linkedin.pegasus:gradle-plugins:' + pegasusVersion
							 | 
						
					
						
							
								
									
										
										
										
											2024-09-23 19:29:50 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    classpath 'com.github.node-gradle:gradle-node-plugin:7.0.2'
							 | 
						
					
						
							
								
									
										
										
										
											2023-10-18 13:45:46 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    classpath 'io.acryl.gradle.plugin:gradle-avro-plugin:0.2.0'
							 | 
						
					
						
							
								
									
										
										
										
											2022-04-19 16:42:41 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    classpath 'org.springframework.boot:spring-boot-gradle-plugin:' + springBootVersion
							 | 
						
					
						
							
								
									
										
										
										
											2022-01-20 00:48:09 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.30.0"
							 | 
						
					
						
							
								
									
										
										
										
											2023-09-01 09:06:01 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    classpath "com.palantir.gradle.gitversion:gradle-git-version:3.0.0"
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    classpath "org.gradle.playframework:gradle-playframework:0.14"
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    classpath "gradle.plugin.org.hidetake:gradle-swagger-generator-plugin:2.19.2"
							 | 
						
					
						
							
								
									
										
										
										
											2017-03-21 11:58:19 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								}
							 | 
						
					
						
							
								
									
										
										
										
											2016-10-19 17:08:07 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2022-01-11 15:00:57 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								plugins {
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  id 'com.gorylenko.gradle-git-properties' version '2.4.1'
							 | 
						
					
						
							
								
									
										
										
										
											2024-12-14 17:04:48 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  id 'com.gradleup.shadow' version '8.3.5' apply false
							 | 
						
					
						
							
								
									
										
										
										
											2023-10-29 16:26:05 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  id 'com.palantir.docker' version '0.35.0' apply false
							 | 
						
					
						
							
								
									
										
										
										
											2025-04-15 09:48:11 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  id 'com.avast.gradle.docker-compose' version '0.17.12'
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-06 11:02:42 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  id "com.diffplug.spotless" version "6.23.3"
							 | 
						
					
						
							
								
									
										
										
										
											2022-12-26 10:09:08 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  // https://blog.ltgt.net/javax-jakarta-mess-and-gradle-solution/
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  // TODO id "org.gradlex.java-ecosystem-capabilities" version "1.0"
							 | 
						
					
						
							
								
									
										
										
										
											2022-01-11 15:00:57 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								}
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2025-04-02 11:51:10 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								apply from: "gradle/docker/docker-utils.gradle"
							 | 
						
					
						
							
								
									
										
										
										
											2022-12-26 10:09:08 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-31 20:51:14 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								project.ext.spec = [
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'product' : [
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        'pegasus' : [
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								            'd2' : 'com.linkedin.pegasus:d2:' + pegasusVersion,
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								            'data' : 'com.linkedin.pegasus:data:' + pegasusVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2023-11-14 19:00:22 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								            'dataAvro': 'com.linkedin.pegasus:data-avro:' + pegasusVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2020-06-11 10:21:51 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								            'generator': 'com.linkedin.pegasus:generator:' + pegasusVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-31 20:51:14 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								            'restliCommon' : 'com.linkedin.pegasus:restli-common:' + pegasusVersion,
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								            'restliClient' : 'com.linkedin.pegasus:restli-client:' + pegasusVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-28 08:05:00 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								            'restliDocgen' : 'com.linkedin.pegasus:restli-docgen:' + pegasusVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-31 20:51:14 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								            'restliServer' : 'com.linkedin.pegasus:restli-server:' + pegasusVersion,
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								            'restliSpringBridge': 'com.linkedin.pegasus:restli-spring-bridge:' + pegasusVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2024-03-27 14:34:20 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								            'restliTestUtils' : 'com.linkedin.pegasus:restli-client-testutils:' + pegasusVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-31 20:51:14 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        ]
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    ]
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								]
							 | 
						
					
						
							
								
									
										
										
										
											2016-05-16 14:58:28 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-31 20:51:14 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								project.ext.externalDependency = [
							 | 
						
					
						
							
								
									
										
										
										
											2024-11-27 17:05:37 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'akkaHttp': "com.typesafe.akka:akka-http-core_$playScalaVersion:10.2.10", // max version due to licensing
							 | 
						
					
						
							
								
									
										
										
										
											2025-04-02 11:51:10 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'akkaParsing': "com.typesafe.akka:akka-parsing_$playScalaVersion:10.2.10", // akka-parsing is part of akka-http, so use akka http version
							 | 
						
					
						
							
								
									
										
										
										
											2024-11-27 17:05:37 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'akkaActor': "com.typesafe.akka:akka-actor_$playScalaVersion:$akkaVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'akkaStream': "com.typesafe.akka:akka-stream_$playScalaVersion:$akkaVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'akkaActorTyped': "com.typesafe.akka:akka-actor-typed_$playScalaVersion:$akkaVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'akkaSlf4j': "com.typesafe.akka:akka-slf4j_$playScalaVersion:$akkaVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'akkaJackson': "com.typesafe.akka:akka-serialization-jackson_$playScalaVersion:$akkaVersion",
							 | 
						
					
						
							
								
									
										
										
										
											2024-09-16 18:37:36 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'antlr4Runtime': 'org.antlr:antlr4-runtime:4.9.3',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'antlr4': 'org.antlr:antlr4:4.9.3',
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-28 13:32:04 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'assertJ': 'org.assertj:assertj-core:3.11.1',
							 | 
						
					
						
							
								
									
										
										
										
											2024-10-10 13:01:22 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'avro': 'org.apache.avro:avro:1.11.4',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'avroCompiler': 'org.apache.avro:avro-compiler:1.11.4',
							 | 
						
					
						
							
								
									
										
										
										
											2025-03-06 11:55:57 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'awsGlueSchemaRegistrySerde': 'software.amazon.glue:schema-registry-serde:1.1.23',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'awsMskIamAuth': 'software.amazon.msk:aws-msk-iam-auth:2.3.0',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'awsS3': "software.amazon.awssdk:s3:$awsSdk2Version",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'awsSecretsManagerJdbc': 'com.amazonaws.secretsmanager:aws-secretsmanager-jdbc:1.0.15',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'awsPostgresIamAuth': 'software.amazon.jdbc:aws-advanced-jdbc-wrapper:2.5.4',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'awsRds':"software.amazon.awssdk:rds:$awsSdk2Version",
							 | 
						
					
						
							
								
									
										
										
										
											2025-05-01 20:22:47 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'azureIdentityExtensions': 'com.azure:azure-identity-extensions:1.2.2',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'azureIdentity': 'com.azure:azure-identity:1.15.4',
							 | 
						
					
						
							
								
									
										
										
										
											2023-11-14 19:00:22 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'cacheApi': 'javax.cache:cache-api:1.1.0',
							 | 
						
					
						
							
								
									
										
										
										
											2022-09-18 18:04:47 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'commonsCli': 'commons-cli:commons-cli:1.5.0',
							 | 
						
					
						
							
								
									
										
										
										
											2024-10-04 16:31:56 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'commonsIo': 'commons-io:commons-io:2.17.0',
							 | 
						
					
						
							
								
									
										
										
										
											2025-08-04 19:40:57 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'commonsText': 'org.apache.commons:commons-text:1.14.0',
							 | 
						
					
						
							
								
									
										
										
										
											2023-11-16 18:39:36 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'caffeine': 'com.github.ben-manes.caffeine:caffeine:3.1.8',
							 | 
						
					
						
							
								
									
										
										
										
											2022-04-26 01:29:24 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'datastaxOssNativeProtocol': 'com.datastax.oss:native-protocol:1.5.1',
							 | 
						
					
						
							
								
									
										
										
										
											2025-07-08 06:24:37 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'datastaxOssCore': 'org.apache.cassandra:java-driver-core:4.19.0',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'datastaxOssQueryBuilder': 'org.apache.cassandra:java-driver-query-builder:4.19.0',
							 | 
						
					
						
							
								
									
										
										
										
											2025-07-08 12:40:24 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'micrometerPrometheus': "io.micrometer:micrometer-registry-prometheus:$micrometerVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'micrometerJmx': "io.micrometer:micrometer-registry-jmx:$micrometerVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'micrometerObserve': "io.micrometer:micrometer-observation:$micrometerVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'micrometerOtelBridge': "io.micrometer:micrometer-tracing-bridge-otel:1.5.1",
							 | 
						
					
						
							
								
									
										
										
										
											2023-09-02 19:25:44 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'ebean': 'io.ebean:ebean:' + ebeanVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2024-09-16 18:37:36 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'ebeanTest': 'io.ebean:ebean-test:' + ebeanVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2023-09-02 19:25:44 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'ebeanAgent': 'io.ebean:ebean-agent:' + ebeanVersion,
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'ebeanDdl': 'io.ebean:ebean-ddl-generator:' + ebeanVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2024-09-16 18:37:36 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'ebeanQueryBean': 'io.ebean:querybean-generator:' + ebeanVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2023-09-21 13:01:55 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'elasticSearchRest': 'org.opensearch.client:opensearch-rest-high-level-client:' + elasticsearchVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-31 20:51:14 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'findbugsAnnotations': 'com.google.code.findbugs:annotations:3.0.1',
							 | 
						
					
						
							
								
									
										
										
										
											2025-07-08 12:40:24 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'graphqlJava': 'com.graphql-java:graphql-java:22.3',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'graphqlJavaScalars': 'com.graphql-java:graphql-java-extended-scalars:22.0',
							 | 
						
					
						
							
								
									
										
										
										
											2025-06-13 21:49:02 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'gson': 'com.google.code.gson:gson:2.12.0',
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-11 13:44:06 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'guice': 'com.google.inject:guice:7.0.0',
							 | 
						
					
						
							
								
									
										
										
										
											2024-02-28 16:57:26 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'guicePlay': 'com.google.inject:guice:5.0.1', // Used for frontend while still on old Play version
							 | 
						
					
						
							
								
									
										
										
										
											2024-03-07 14:15:22 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'guava': 'com.google.guava:guava:32.1.3-jre',
							 | 
						
					
						
							
								
									
										
										
										
											2023-09-21 13:01:55 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'h2': 'com.h2database:h2:2.2.224',
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-14 01:30:51 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'hadoopCommon':'org.apache.hadoop:hadoop-common:2.7.2',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'hadoopMapreduceClient':'org.apache.hadoop:hadoop-mapreduce-client-core:2.7.2',
							 | 
						
					
						
							
								
									
										
										
										
											2023-04-21 12:30:23 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    "hadoopClient": "org.apache.hadoop:hadoop-client:$hadoop3Version",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    "hadoopCommon3":"org.apache.hadoop:hadoop-common:$hadoop3Version",
							 | 
						
					
						
							
								
									
										
										
										
											2023-08-17 01:58:52 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'hazelcast':"com.hazelcast:hazelcast:$hazelcastVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'hazelcastSpring':"com.hazelcast:hazelcast-spring:$hazelcastVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'hazelcastTest':"com.hazelcast:hazelcast:$hazelcastVersion:tests",
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-31 20:51:14 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'hibernateCore': 'org.hibernate:hibernate-core:5.2.16.Final',
							 | 
						
					
						
							
								
									
										
										
										
											2025-04-12 15:34:17 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'httpClient': 'org.apache.httpcomponents.client5:httpclient5:5.4.3',
							 | 
						
					
						
							
								
									
										
										
										
											2021-06-03 13:24:33 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'iStackCommons': 'com.sun.istack:istack-commons-runtime:4.0.1',
							 | 
						
					
						
							
								
									
										
										
										
											2025-05-24 13:42:10 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								     // The jacksonBom controls the version of other jackson modules, pin the version once
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								     // implementation platform(externalDependency.jacksonBom)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'jacksonBom': "com.fasterxml.jackson:jackson-bom:$jacksonVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'jacksonJDK8': 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'jacksonDataPropertyFormat': 'com.fasterxml.jackson.dataformat:jackson-dataformat-properties',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'jacksonCore': 'com.fasterxml.jackson.core:jackson-core',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'jacksonDataBind': 'com.fasterxml.jackson.core:jackson-databind',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'jacksonJsr310': 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'jacksonDataFormatYaml': 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml',
							 | 
						
					
						
							
								
									
										
										
										
											2022-12-01 16:43:15 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'woodstoxCore': 'com.fasterxml.woodstox:woodstox-core:6.4.0',
							 | 
						
					
						
							
								
									
										
										
										
											2020-09-11 13:04:21 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'javatuples': 'org.javatuples:javatuples:1.2',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'javaxInject' : 'javax.inject:javax.inject:1',
							 | 
						
					
						
							
								
									
										
										
										
											2022-05-03 19:38:05 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'javaxValidation' : 'javax.validation:validation-api:2.0.1.Final',
							 | 
						
					
						
							
								
									
										
										
										
											2024-04-16 13:50:41 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'jakartaValidation': 'jakarta.validation:jakarta.validation-api:3.1.0-M2',
							 | 
						
					
						
							
								
									
										
										
										
											2024-03-07 14:15:22 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'jerseyCore': 'org.glassfish.jersey.core:jersey-client:2.41',
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-31 20:51:14 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'jerseyGuava': 'org.glassfish.jersey.bundles.repackaged:jersey-guava:2.25.1',
							 | 
						
					
						
							
								
									
										
										
										
											2025-01-23 10:45:40 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'jettySecurity': "org.eclipse.jetty:jetty-security:$jettyVersion",
							 | 
						
					
						
							
								
									
										
										
										
											2022-12-01 16:43:15 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'jettyClient': "org.eclipse.jetty:jetty-client:$jettyVersion",
							 | 
						
					
						
							
								
									
										
										
										
											2025-01-23 10:45:40 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'jettyJmx': "org.eclipse.jetty:jetty-jmx:$jettyVersion",
							 | 
						
					
						
							
								
									
										
										
										
											2023-04-11 14:50:04 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'jettison': 'org.codehaus.jettison:jettison:1.5.4',
							 | 
						
					
						
							
								
									
										
										
										
											2022-03-11 12:13:00 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'jgrapht': 'org.jgrapht:jgrapht-core:1.5.1',
							 | 
						
					
						
							
								
									
										
										
										
											2022-10-05 16:53:38 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'jna': 'net.java.dev.jna:jna:5.12.1',
							 | 
						
					
						
							
								
									
										
										
										
											2024-05-08 20:39:31 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'jsonPatch': 'jakarta.json:jakarta.json-api:2.1.3',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'jsonPathImpl': 'org.eclipse.parsson:parsson:1.1.6',
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-31 20:51:14 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'jsonSimple': 'com.googlecode.json-simple:json-simple:1.1.1',
							 | 
						
					
						
							
								
									
										
										
										
											2025-02-13 14:50:09 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'jsonSmart': 'net.minidev:json-smart:2.5.2',
							 | 
						
					
						
							
								
									
										
										
										
											2023-11-14 19:00:22 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'json': 'org.json:json:20231013',
							 | 
						
					
						
							
								
									
										
										
										
											2024-04-18 15:03:41 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'jsonSchemaValidator': 'com.github.java-json-tools:json-schema-validator:2.2.14',
							 | 
						
					
						
							
								
									
										
										
										
											2023-07-19 20:09:14 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'junit': 'junit:junit:4.13.2',
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-02 20:49:34 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'junitJupiterApi': "org.junit.jupiter:junit-jupiter-api:$junitJupiterVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'junitJupiterParams': "org.junit.jupiter:junit-jupiter-params:$junitJupiterVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'junitJupiterEngine': "org.junit.jupiter:junit-jupiter-engine:$junitJupiterVersion",
							 | 
						
					
						
							
								
									
										
										
										
											2020-09-09 16:37:47 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    // avro-serde includes dependencies for `kafka-avro-serializer` `kafka-schema-registry-client` and `avro`
							 | 
						
					
						
							
								
									
										
										
										
											2024-03-07 14:15:22 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'kafkaAvroSerde': "io.confluent:kafka-streams-avro-serde:$kafkaVersion",
							 | 
						
					
						
							
								
									
										
										
										
											2025-01-16 13:48:48 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'kafkaAvroSerializer': "io.confluent:kafka-avro-serializer:$kafkaVersion",
							 | 
						
					
						
							
								
									
										
										
										
											2024-03-07 14:15:22 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'kafkaClients': "org.apache.kafka:kafka-clients:$kafkaVersion-ccs",
							 | 
						
					
						
							
								
									
										
										
										
											2025-04-21 16:39:26 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'snappy': 'org.xerial.snappy:snappy-java:1.1.10.7',
							 | 
						
					
						
							
								
									
										
										
										
											2022-12-04 21:57:47 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'logbackClassic': "ch.qos.logback:logback-classic:$logbackClassic",
							 | 
						
					
						
							
								
									
										
										
										
											2024-03-01 16:31:21 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'logbackClassicJava8' : "ch.qos.logback:logback-classic:$logbackClassicJava8",
							 | 
						
					
						
							
								
									
										
										
										
											2022-12-04 21:57:47 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'slf4jApi': "org.slf4j:slf4j-api:$slf4jVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'log4jCore': "org.apache.logging.log4j:log4j-core:$log4jVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'log4jApi': "org.apache.logging.log4j:log4j-api:$log4jVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'log4j12Api': "org.slf4j:log4j-over-slf4j:$slf4jVersion",
							 | 
						
					
						
							
								
									
										
										
										
											2022-12-08 20:27:51 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'log4j2Api': "org.apache.logging.log4j:log4j-to-slf4j:$log4jVersion",
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'lombok': 'org.projectlombok:lombok:1.18.30',
							 | 
						
					
						
							
								
									
										
										
										
											2020-07-22 19:39:58 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'mariadbConnector': 'org.mariadb.jdbc:mariadb-java-client:2.6.0',
							 | 
						
					
						
							
								
									
										
										
										
											2021-11-28 21:06:27 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'mavenArtifact': "org.apache.maven:maven-artifact:$mavenVersion",
							 | 
						
					
						
							
								
									
										
										
										
											2022-05-17 13:37:45 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'mixpanel': 'com.mixpanel:mixpanel-java:1.4.4',
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'mockito': 'org.mockito:mockito-core:4.11.0',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'mockitoInline': 'org.mockito:mockito-inline:4.11.0',
							 | 
						
					
						
							
								
									
										
										
										
											2024-02-29 16:11:04 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'mockServer': 'org.mock-server:mockserver-netty:5.11.2',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'mockServerClient': 'org.mock-server:mockserver-client-java:5.11.2',
							 | 
						
					
						
							
								
									
										
										
										
											2025-01-09 12:08:30 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'mysqlConnector': 'com.mysql:mysql-connector-j:8.4.0',
							 | 
						
					
						
							
								
									
										
										
										
											2025-07-08 12:40:24 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'testContainersNeo4j': 'org.testcontainers:neo4j:' + testContainersVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2022-10-02 23:16:45 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'neo4jJavaDriver': 'org.neo4j.driver:neo4j-java-driver:' + neo4jVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'neo4jApocCore': 'org.neo4j.procedure:apoc-core:' + neo4jApocVersion,
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'neo4jApocCommon': 'org.neo4j.procedure:apoc-common:' + neo4jApocVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2022-10-03 22:38:09 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'opentelemetryApi': 'io.opentelemetry:opentelemetry-api:' + openTelemetryVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2025-01-29 11:30:44 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'opentelemetrySdk': 'io.opentelemetry:opentelemetry-sdk:' + openTelemetryVersion,
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'opentelemetrySdkTrace': 'io.opentelemetry:opentelemetry-sdk-trace:' + openTelemetryVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2025-04-04 11:51:10 -03:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'opentelemetrySdkMetrics': 'io.opentelemetry:opentelemetry-sdk-metrics:' + openTelemetryVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2025-01-29 11:30:44 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'opentelemetryAutoConfig': 'io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:' + openTelemetryVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2025-03-14 17:09:26 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'opentelemetryExporter': 'io.opentelemetry:opentelemetry-exporter-otlp:' + openTelemetryVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2025-04-04 11:51:10 -03:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'openTelemetryExporterLogging': 'io.opentelemetry:opentelemetry-exporter-logging:' + openTelemetryVersion,
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'openTelemetryExporterCommon': 'io.opentelemetry:opentelemetry-exporter-otlp-common:' + openTelemetryVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2025-04-18 12:57:01 -03:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'opentelemetryAnnotations': 'io.opentelemetry.instrumentation:opentelemetry-instrumentation-annotations:2.15.0',
							 | 
						
					
						
							
								
									
										
										
										
											2022-03-14 23:18:27 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'opentracingJdbc':'io.opentracing.contrib:opentracing-jdbc:0.2.15',
							 | 
						
					
						
							
								
									
										
										
										
											2025-05-07 16:28:43 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'parquet': 'org.apache.parquet:parquet-avro:1.15.2',
							 | 
						
					
						
							
								
									
										
										
										
											2023-11-14 19:00:22 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'parquetHadoop': 'org.apache.parquet:parquet-hadoop:1.13.1',
							 | 
						
					
						
							
								
									
										
										
										
											2020-09-25 14:05:29 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'picocli': 'info.picocli:picocli:4.5.0',
							 | 
						
					
						
							
								
									
										
										
										
											2024-10-28 09:05:16 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'playCache': "com.typesafe.play:play-cache_$playScalaVersion:$playVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'playCaffeineCache': "com.typesafe.play:play-caffeine-cache_$playScalaVersion:$playVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'playWs': "com.typesafe.play:play-ahc-ws-standalone_$playScalaVersion:2.1.10",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'playDocs': "com.typesafe.play:play-docs_$playScalaVersion:$playVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'playGuice': "com.typesafe.play:play-guice_$playScalaVersion:$playVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'playJavaJdbc': "com.typesafe.play:play-java-jdbc_$playScalaVersion:$playVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'playAkkaHttpServer': "com.typesafe.play:play-akka-http-server_$playScalaVersion:$playVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'playServer': "com.typesafe.play:play-server_$playScalaVersion:$playVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'playTest': "com.typesafe.play:play-test_$playScalaVersion:$playVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'playFilters': "com.typesafe.play:filters-helpers_$playScalaVersion:$playVersion",
							 | 
						
					
						
							
								
									
										
										
										
											2025-07-14 19:54:46 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'pac4j': 'org.pac4j:pac4j-oidc:6.1.2',
							 | 
						
					
						
							
								
									
										
										
										
											2024-10-28 09:05:16 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'playPac4j': "org.pac4j:play-pac4j_$playScalaVersion:12.0.0-PLAY2.8",
							 | 
						
					
						
							
								
									
										
										
										
											2025-06-12 12:14:07 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'postgresql': 'org.postgresql:postgresql:42.7.7',
							 | 
						
					
						
							
								
									
										
										
										
											2024-09-20 14:06:31 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'protobuf': 'com.google.protobuf:protobuf-java:3.25.5',
							 | 
						
					
						
							
								
									
										
										
										
											2023-11-14 19:00:22 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'grpcProtobuf': 'io.grpc:grpc-protobuf:1.53.0',
							 | 
						
					
						
							
								
									
										
										
										
											2022-11-30 17:05:01 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'rangerCommons': 'org.apache.ranger:ranger-plugins-common:2.3.0',
							 | 
						
					
						
							
								
									
										
										
										
											2025-06-13 21:53:27 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'reflections': 'org.reflections:reflections:0.9.12',
							 | 
						
					
						
							
								
									
										
										
										
											2021-10-13 18:53:47 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'resilience4j': 'io.github.resilience4j:resilience4j-retry:1.7.1',
							 | 
						
					
						
							
								
									
										
										
										
											2020-09-11 13:04:21 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'rythmEngine': 'org.rythmengine:rythm-engine:1.3.0',
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-11 13:44:06 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'servletApi': 'jakarta.servlet:jakarta.servlet-api:6.0.0',
							 | 
						
					
						
							
								
									
										
										
										
											2024-02-12 14:08:50 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'shiroCore': 'org.apache.shiro:shiro-core:1.13.0',
							 | 
						
					
						
							
								
									
										
										
										
											2023-04-13 12:01:51 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'snakeYaml': 'org.yaml:snakeyaml:2.0',
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'sparkSql' : 'org.apache.spark:spark-sql_2.12:3.0.3',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'sparkHive' : 'org.apache.spark:spark-hive_2.12:3.0.3',
							 | 
						
					
						
							
								
									
										
										
										
											2022-04-19 16:42:41 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'springBeans': "org.springframework:spring-beans:$springVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'springContext': "org.springframework:spring-context:$springVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'springCore': "org.springframework:spring-core:$springVersion",
							 | 
						
					
						
							
								
									
										
										
										
											2025-06-21 15:41:12 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'springDocUI': 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.9',
							 | 
						
					
						
							
								
									
										
										
										
											2022-04-19 16:42:41 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'springJdbc': "org.springframework:spring-jdbc:$springVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'springWeb': "org.springframework:spring-web:$springVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'springWebMVC': "org.springframework:spring-webmvc:$springVersion",
							 | 
						
					
						
							
								
									
										
										
										
											2022-11-15 20:03:11 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'springBootTest': "org.springframework.boot:spring-boot-starter-test:$springBootVersion",
							 | 
						
					
						
							
								
									
										
										
										
											2022-04-19 16:42:41 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'springBoot': "org.springframework.boot:spring-boot:$springBootVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'springBootAutoconfigure': "org.springframework.boot:spring-boot-autoconfigure:$springBootVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'springBootStarterWeb': "org.springframework.boot:spring-boot-starter-web:$springBootVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'springBootStarterJetty': "org.springframework.boot:spring-boot-starter-jetty:$springBootVersion",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'springBootStarterCache': "org.springframework.boot:spring-boot-starter-cache:$springBootVersion",
							 | 
						
					
						
							
								
									
										
										
										
											2023-09-07 17:09:52 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'springBootStarterValidation': "org.springframework.boot:spring-boot-starter-validation:$springBootVersion",
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-11 13:44:06 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'springKafka': "org.springframework.kafka:spring-kafka:$springKafkaVersion",
							 | 
						
					
						
							
								
									
										
										
										
											2022-04-19 16:42:41 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'springActuator': "org.springframework.boot:spring-boot-starter-actuator:$springBootVersion",
							 | 
						
					
						
							
								
									
										
										
										
											2025-04-12 15:34:17 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'springRetry': "org.springframework.retry:spring-retry:2.0.11",
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'swaggerAnnotations': 'io.swagger.core.v3:swagger-annotations:2.2.30',
							 | 
						
					
						
							
								
									
										
										
										
											2023-10-02 12:08:37 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'swaggerCli': 'io.swagger.codegen.v3:swagger-codegen-cli:3.0.46',
							 | 
						
					
						
							
								
									
										
										
										
											2025-04-12 15:34:17 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'swaggerCore': 'io.swagger.core.v3:swagger-core:2.2.30',
							 | 
						
					
						
							
								
									
										
										
										
											2025-06-21 15:41:12 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'swaggerParser': 'io.swagger.parser.v3:swagger-parser:2.1.27',
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-23 17:49:23 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'springBootAutoconfigureJdk11': 'org.springframework.boot:spring-boot-autoconfigure:2.7.18',
							 | 
						
					
						
							
								
									
										
										
										
											2023-09-21 13:01:55 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'testng': 'org.testng:testng:7.8.0',
							 | 
						
					
						
							
								
									
										
										
										
											2022-10-05 16:53:38 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'testContainers': 'org.testcontainers:testcontainers:' + testContainersVersion,
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'testContainersJunit': 'org.testcontainers:junit-jupiter:' + testContainersVersion,
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'testContainersPostgresql':'org.testcontainers:postgresql:' + testContainersVersion,
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'testContainersElasticsearch': 'org.testcontainers:elasticsearch:' + testContainersVersion,
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'testContainersCassandra': 'org.testcontainers:cassandra:' + testContainersVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2023-05-01 13:18:41 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'testContainersKafka': 'org.testcontainers:kafka:' + testContainersVersion,
							 | 
						
					
						
							
								
									
										
										
										
											2025-06-15 10:52:16 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'testContainersOpenSearch': 'org.opensearch:opensearch-testcontainers:2.1.3',
							 | 
						
					
						
							
								
									
										
										
										
											2022-02-03 23:24:11 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'typesafeConfig':'com.typesafe:config:1.4.1',
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-14 01:30:51 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'wiremock':'com.github.tomakehurst:wiremock:2.10.0',
							 | 
						
					
						
							
								
									
										
										
										
											2024-09-24 11:09:55 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'zookeeper': 'org.apache.zookeeper:zookeeper:3.8.4',
							 | 
						
					
						
							
								
									
										
										
										
											2024-02-29 16:11:04 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'wire': 'com.squareup.wire:wire-compiler:3.7.1',
							 | 
						
					
						
							
								
									
										
										
										
											2023-06-07 18:42:19 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'charle':  'com.charleskorn.kaml:kaml:0.53.0',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'jline':'jline:jline:1.4.1',
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'jetbrains':' org.jetbrains.kotlin:kotlin-stdlib:1.6.0',
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-08 14:20:03 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'annotationApi': 'javax.annotation:javax.annotation-api:1.3.2',
							 | 
						
					
						
							
								
									
										
										
										
											2024-04-16 13:50:41 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'jakartaAnnotationApi': 'jakarta.annotation:jakarta.annotation-api:3.0.0',
							 | 
						
					
						
							
								
									
										
										
										
											2024-05-09 14:56:03 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'classGraph': 'io.github.classgraph:classgraph:4.8.172',
							 | 
						
					
						
							
								
									
										
										
										
											2025-01-10 00:45:09 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    'mustache': 'com.github.spullara.mustache.java:compiler:0.9.14',
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    'javaxMail': 'com.sun.mail:jakarta.mail:1.6.7'
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-31 20:51:14 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								]
							 | 
						
					
						
							
								
									
										
										
										
											2017-03-21 11:58:19 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-31 20:51:14 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								allprojects {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  apply plugin: 'idea'
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  apply plugin: 'eclipse'
							 | 
						
					
						
							
								
									
										
										
										
											2022-12-26 10:09:08 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  // apply plugin: 'org.gradlex.java-ecosystem-capabilities'
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2024-02-07 17:03:22 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  tasks.withType(Test).configureEach { task -> if (task.project.name != "metadata-io") {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      // https://docs.gradle.org/current/userguide/performance.html
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2024-02-07 17:03:22 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								      if (project.configurations.getByName("testImplementation").getDependencies()
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								              .any { it.getName().contains("testng") }) {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        useTestNG()
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      }
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-23 17:49:23 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  /**
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								   * If making changes to this section also see the sections for pegasus below
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								   * which use project.plugins.hasPlugin('pegasus')
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								   **/
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  if (!project.plugins.hasPlugin('pegasus') && (project.plugins.hasPlugin('java')
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								          || project.plugins.hasPlugin('java-library')
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-23 17:49:23 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								          || project.plugins.hasPlugin('application'))) {
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    java {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      toolchain {
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-23 17:49:23 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        languageVersion = JavaLanguageVersion.of(jdkVersion(project))
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								      }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    compileJava {
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-23 17:49:23 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								      options.release = javaClassVersion(project)
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    }
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-23 17:49:23 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    tasks.withType(JavaCompile).configureEach {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      javaCompiler = javaToolchains.compilerFor {
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-23 17:49:23 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        languageVersion = JavaLanguageVersion.of(jdkVersion(project))
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								      }
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-11 13:44:06 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								      // Puts parameter names into compiled class files, necessary for Spring 6
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      options.compilerArgs.add("-parameters")
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    tasks.withType(JavaExec).configureEach {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      javaLauncher = javaToolchains.launcherFor {
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-23 17:49:23 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        languageVersion = JavaLanguageVersion.of(jdkVersion(project))
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								      }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    }
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-23 17:49:23 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  // not duplicated, need to set this outside and inside afterEvaluate
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  afterEvaluate {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    /**
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								     * If making changes to this section also see the sections for pegasus below
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								     * which use project.plugins.hasPlugin('pegasus')
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								     **/
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    if (!project.plugins.hasPlugin('pegasus') && (project.plugins.hasPlugin('java')
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								            || project.plugins.hasPlugin('java-library')
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								            || project.plugins.hasPlugin('application'))) {
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      compileJava {
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-23 17:49:23 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        options.release = javaClassVersion(project)
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								      }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      tasks.withType(JavaExec).configureEach {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        javaLauncher = javaToolchains.launcherFor {
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-23 17:49:23 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								          languageVersion = JavaLanguageVersion.of(jdkVersion(project))
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  }
							 | 
						
					
						
							
								
									
										
										
										
											2024-11-26 14:03:22 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2021-06-28 17:04:12 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								}
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2022-12-06 23:52:41 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								configure(subprojects.findAll {! it.name.startsWith('spark-lineage')}) {
							 | 
						
					
						
							
								
									
										
										
										
											2021-06-24 23:00:55 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  configurations.all {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    exclude group: "io.netty", module: "netty"
							 | 
						
					
						
							
								
									
										
										
										
											2022-12-01 16:43:15 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    exclude group: "log4j", module: "log4j"
							 | 
						
					
						
							
								
									
										
										
										
											2022-11-30 17:05:01 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    exclude group: "com.vaadin.external.google", module: "android-json"
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    exclude group: "org.slf4j", module: "slf4j-reload4j"
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    exclude group: "org.slf4j", module: "slf4j-log4j12"
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    exclude group: "org.slf4j", module: "slf4j-nop"
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    exclude group: "org.slf4j", module: "slf4j-ext"
							 | 
						
					
						
							
								
									
										
										
										
											2024-12-16 19:55:59 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    exclude group: "org.codehaus.jackson", module: "jackson-mapper-asl"
							 | 
						
					
						
							
								
									
										
										
										
											2025-01-10 00:45:09 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    exclude group: "javax.mail", module: "mail"
							 | 
						
					
						
							
								
									
										
										
										
											2025-04-18 21:32:05 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    exclude group: 'org.glassfish', module: 'javax.json'
							 | 
						
					
						
							
								
									
										
										
										
											2025-06-27 23:47:26 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    exclude group: 'org.glassfish', module: 'jakarta.json'
							 | 
						
					
						
							
								
									
										
										
										
											2025-07-09 19:25:42 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    exclude group: 'com.typesafe.play', module: 'shaded-asynchttpclient'
							 | 
						
					
						
							
								
									
										
										
										
											2025-07-10 19:18:33 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    exclude group: "com.typesafe.akka", module: "akka-protobuf-v3_$playScalaVersion"
							 | 
						
					
						
							
								
									
										
										
										
											2025-07-25 18:57:25 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    exclude group: 'com.typesafe.play', module: 'shaded-oauth'
							 | 
						
					
						
							
								
									
										
										
										
											2025-08-15 23:46:47 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    exclude group: 'commons-httpclient', module: 'commons-httpclient'
							 | 
						
					
						
							
								
									
										
										
										
											2025-08-13 21:24:33 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    exclude group: 'commons-collections', module: 'commons-collections'
							 | 
						
					
						
							
								
									
										
										
										
											2025-08-23 20:18:29 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    exclude group: 'commons-lang', module: 'commons-lang'
							 | 
						
					
						
							
								
									
										
										
										
											2025-06-27 23:47:26 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    
							 | 
						
					
						
							
								
									
										
										
										
											2025-06-06 17:38:24 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    // Tomcat excluded for jetty
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    exclude group: 'org.apache.tomcat.embed', module: 'tomcat-embed-el'
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
							 | 
						
					
						
							
								
									
										
										
										
											2024-09-16 18:37:36 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    resolutionStrategy.force externalDependency.antlr4Runtime
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    resolutionStrategy.force externalDependency.antlr4
							 | 
						
					
						
							
								
									
										
										
										
											2025-01-10 20:46:45 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    resolutionStrategy.force 'org.apache.mina:mina-core:2.2.4'
							 | 
						
					
						
							
								
									
										
										
										
											2025-07-14 19:54:38 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    resolutionStrategy.force 'org.mozilla:rhino:1.7.12'
							 | 
						
					
						
							
								
									
										
										
										
											2025-07-25 19:48:06 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    resolutionStrategy.force 'commons-beanutils:commons-beanutils:1.11.0'
							 | 
						
					
						
							
								
									
										
										
										
											2025-08-13 21:24:33 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    resolutionStrategy.force 'org.apache.commons:commons-collections4:4.5.0'
							 | 
						
					
						
							
								
									
										
										
										
											2025-08-23 20:18:29 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    resolutionStrategy.force 'org.apache.commons:commons-lang3:3.18.0'
							 | 
						
					
						
							
								
									
										
										
										
											2025-01-23 10:45:40 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    resolutionStrategy {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      force "org.eclipse.jetty:jetty-security:${jettyVersion}"
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      force "org.eclipse.jetty:jetty-server:${jettyVersion}"
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      force "org.eclipse.jetty:jetty-ee10-servlet:${jettyVersion}"
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      force "org.eclipse.jetty:jetty-ee10-webapp:${jettyVersion}"
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      force "org.eclipse.jetty:jetty-xml:${jettyVersion}"
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    }
							 | 
						
					
						
							
								
									
										
										
										
											2021-06-24 23:00:55 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  }
							 | 
						
					
						
							
								
									
										
										
										
											2022-01-11 14:55:21 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								}
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2025-03-10 22:43:31 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								apply plugin: 'com.gorylenko.gradle-git-properties'
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								gitProperties {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  keys = ['git.commit.id','git.commit.id.describe','git.commit.time']
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  // using any tags (not limited to annotated tags) for "git.commit.id.describe" property
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  // see http://ajoberstar.org/grgit/grgit-describe.html for more info about the describe method and available parameters
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  // 'it' is an instance of org.ajoberstar.grgit.Grgit
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  customProperty 'git.commit.id.describe', { it.describe(tags: true) }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  gitPropertiesResourceDir = rootProject.buildDir
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  failOnNoGitDirectory = false
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								}
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								def gitPropertiesGenerated = false
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								apply from: 'gradle/versioning/versioning-global.gradle'
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								tasks.register("generateGitPropertiesGlobal", com.gorylenko.GenerateGitPropertiesTask) {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  doFirst {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    if (!gitPropertiesGenerated) {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      println "Generating git.properties"
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      gitPropertiesGenerated = true
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    } else {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      // Skip actual execution if already run
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      onlyIf { false }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								}
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2022-01-11 14:55:21 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								subprojects {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2023-09-01 09:06:01 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  apply plugin: 'maven-publish'
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-06 11:02:42 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  apply plugin: 'com.diffplug.spotless'
							 | 
						
					
						
							
								
									
										
										
										
											2022-01-11 15:00:57 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2025-03-10 22:43:31 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  def gitPropertiesTask = tasks.register("copyGitProperties", Copy) {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    dependsOn rootProject.tasks.named("generateGitPropertiesGlobal")
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    def sourceFile = file("${rootProject.buildDir}/git.properties")
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    from sourceFile
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    into "$project.buildDir/resources/main"
							 | 
						
					
						
							
								
									
										
										
										
											2022-01-11 15:00:57 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  }
							 | 
						
					
						
							
								
									
										
										
										
											2022-01-11 14:55:21 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  plugins.withType(JavaPlugin).configureEach {
							 | 
						
					
						
							
								
									
										
										
										
											2025-03-10 22:43:31 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    project.tasks.named(JavaPlugin.CLASSES_TASK_NAME).configure{
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      dependsOn gitPropertiesTask
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    }
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-03 17:16:16 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    if (project.name == 'datahub-web-react') {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      return
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    }
							 | 
						
					
						
							
								
									
										
										
										
											2025-03-10 22:43:31 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    /* TODO: evaluate ignoring jar timestamps for increased caching (compares checksum instead)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    jar {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      preserveFileTimestamps = false
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    }*/
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-03 17:16:16 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2020-02-21 11:53:45 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    dependencies {
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								      implementation externalDependency.annotationApi
							 | 
						
					
						
							
								
									
										
										
										
											2021-06-28 17:04:12 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								      constraints {
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-06 11:02:42 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        implementation("com.google.googlejavaformat:google-java-format:$googleJavaFormatVersion")
							 | 
						
					
						
							
								
									
										
										
										
											2025-08-21 15:26:50 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        implementation('io.netty:netty-all:4.1.124.Final')
							 | 
						
					
						
							
								
									
										
										
										
											2024-10-04 16:31:56 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        implementation('org.apache.commons:commons-compress:1.27.1')
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        implementation('org.apache.velocity:velocity-engine-core:2.4')
							 | 
						
					
						
							
								
									
										
										
										
											2022-03-22 15:21:55 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        implementation('org.hibernate:hibernate-validator:6.0.20.Final')
							 | 
						
					
						
							
								
									
										
										
										
											2023-02-20 00:02:05 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        implementation("com.fasterxml.jackson.core:jackson-databind:$jacksonVersion")
							 | 
						
					
						
							
								
									
										
										
										
											2022-12-01 16:43:15 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        implementation("com.fasterxml.jackson.core:jackson-dataformat-cbor:$jacksonVersion")
							 | 
						
					
						
							
								
									
										
										
										
											2024-10-04 16:31:56 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        implementation(externalDependency.commonsIo)
							 | 
						
					
						
							
								
									
										
										
										
											2024-10-11 11:52:52 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        implementation(externalDependency.protobuf)
							 | 
						
					
						
							
								
									
										
										
										
											2021-06-28 17:04:12 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								      }
							 | 
						
					
						
							
								
									
										
										
										
											2020-02-21 11:53:45 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    }
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-06 11:02:42 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    spotless {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      java {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        googleJavaFormat()
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        target project.fileTree(project.projectDir) {
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								          include 'src/**/*.java'
							 | 
						
					
						
							
								
									
										
										
										
											2024-10-28 09:05:16 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								          include 'app/**/*.java'
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          include 'test/**/*.java'
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								          exclude 'src/**/resources/'
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          exclude 'src/**/generated/'
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          exclude 'src/**/mainGeneratedDataTemplate/'
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          exclude 'src/**/mainGeneratedRest/'
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          exclude 'src/renamed/avro/'
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          exclude 'src/test/sample-test-plugins/'
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-06 11:02:42 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    }
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    if (project.plugins.hasPlugin('pegasus')) {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      dependencies {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        dataTemplateCompile spec.product.pegasus.data
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        dataTemplateCompile externalDependency.annotationApi // support > jdk8
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        restClientCompile spec.product.pegasus.restliClient
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      }
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-23 17:49:23 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      java {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        toolchain {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          languageVersion = JavaLanguageVersion.of(jdkVersion(project))
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      compileJava {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        options.release = javaClassVersion(project)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      tasks.withType(JavaCompile).configureEach {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        javaCompiler = javaToolchains.compilerFor {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          languageVersion = JavaLanguageVersion.of(jdkVersion(project))
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        // Puts parameter names into compiled class files, necessary for Spring 6
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        options.compilerArgs.add("-parameters")
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      tasks.withType(JavaExec).configureEach {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        javaLauncher = javaToolchains.launcherFor {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          languageVersion = JavaLanguageVersion.of(jdkVersion(project))
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      }
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-06 11:02:42 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    afterEvaluate {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      def spotlessJavaTask = tasks.findByName('spotlessJava')
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      def processTask = tasks.findByName('processResources')
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      if (processTask != null) {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        spotlessJavaTask.dependsOn processTask
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      def compileJavaTask = tasks.findByName('compileJava')
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      if (compileJavaTask != null) {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        spotlessJavaTask.dependsOn compileJavaTask
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      }
							 | 
						
					
						
							
								
									
										
										
										
											2020-05-07 15:59:16 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    }
							 | 
						
					
						
							
								
									
										
										
										
											2020-02-21 11:53:45 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-31 20:51:14 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  afterEvaluate {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    if (project.plugins.hasPlugin('pegasus')) {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      dependencies {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        dataTemplateCompile spec.product.pegasus.data
							 | 
						
					
						
							
								
									
										
										
										
											2023-12-15 13:28:33 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        dataTemplateCompile externalDependency.annotationApi // support > jdk8
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-31 20:51:14 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        restClientCompile spec.product.pegasus.restliClient
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      }
							 | 
						
					
						
							
								
									
										
										
										
											2024-01-23 17:49:23 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      compileJava {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        options.release = javaClassVersion(project)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      tasks.withType(JavaExec).configureEach {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        javaLauncher = javaToolchains.launcherFor {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          languageVersion = JavaLanguageVersion.of(jdkVersion(project))
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      }
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-31 20:51:14 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    }
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-22 04:51:02 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  }
							 | 
						
					
						
							
								
									
										
										
										
											2020-07-22 19:43:30 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								}
							 | 
						
					
						
							
								
									
										
										
										
											2024-12-14 17:04:48 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								wrapper {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  gradleVersion = project.versionGradle
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  distributionType = Wrapper.DistributionType.ALL
							 | 
						
					
						
							
								
									
										
										
										
											2025-07-09 19:18:02 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  distributionSha256Sum = 'ed1a8d686605fd7c23bdf62c7fc7add1c5b23b2bbc3721e661934ef4a4911d7c'
							 | 
						
					
						
							
								
									
										
										
										
											2024-12-14 17:04:48 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								}
							 | 
						
					
						
							
								
									
										
										
										
											2025-04-16 16:55:51 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								tasks.register('format') {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  dependsOn(':datahub-web-react:graphqlPrettierWrite')
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  dependsOn(':datahub-web-react:githubActionsPrettierWrite')
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  dependsOn(':datahub-web-react:mdPrettierWrite')
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  dependsOn('spotlessApply')
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								}
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								tasks.register('formatChanged') {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  dependsOn(':datahub-web-react:graphqlPrettierWriteChanged')
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  dependsOn(':datahub-web-react:githubActionsPrettierWriteChanged')
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  dependsOn(':datahub-web-react:mdPrettierWriteChanged')
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  dependsOn('spotlessApply')
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								}
							 |