2018-01-24 10:30:13 -05:00
|
|
|
/*
|
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
|
* or more contributor license agreements. See the NOTICE file
|
|
|
|
|
* distributed with this work for additional information
|
|
|
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
|
|
|
* to you under the Apache License, Version 2.0 (the
|
|
|
|
|
* "License"); you may not use this file except in compliance
|
|
|
|
|
* with the License. You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing,
|
|
|
|
|
* software distributed under the License is distributed on an
|
|
|
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
|
* KIND, either express or implied. See the License for the
|
|
|
|
|
* specific language governing permissions and limitations
|
|
|
|
|
* under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// Using the legacy plugin classpath for Clover so it can be loaded optionally
|
|
|
|
|
buildscript {
|
2021-02-04 14:13:24 -05:00
|
|
|
// strictly enforce the minimum version of Java required to build and fail fast
|
|
|
|
|
if (JavaVersion.current() < JavaVersion.VERSION_1_8) {
|
|
|
|
|
throw new GradleException("The java version used is ${JavaVersion.current()}, but must be at least ${JavaVersion.VERSION_1_8}")
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-24 10:30:13 -05:00
|
|
|
repositories {
|
2019-01-22 09:22:04 -05:00
|
|
|
mavenCentral()
|
2018-01-24 10:30:13 -05:00
|
|
|
google()
|
|
|
|
|
gradlePluginPortal()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2024-10-01 03:40:20 -04:00
|
|
|
classpath 'com.bmuschko:gradle-clover-plugin:3.0.7'
|
2018-01-24 10:30:13 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
plugins {
|
2022-03-11 04:55:13 +01:00
|
|
|
id 'java-library'
|
2022-05-12 00:20:37 +08:00
|
|
|
id 'maven-publish'
|
2018-01-24 10:30:13 -05:00
|
|
|
id 'signing'
|
2022-05-19 03:03:07 +08:00
|
|
|
id 'pmd'
|
2023-04-14 11:02:43 +08:00
|
|
|
id 'com.github.johnrengelman.shadow' version '8.1.1'
|
2023-12-07 09:03:04 -08:00
|
|
|
id "com.github.spotbugs" version "5.2.5"
|
2026-02-01 06:03:00 +00:00
|
|
|
id "com.diffplug.spotless" version "8.2.1"
|
2018-01-24 10:30:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
description = 'Apache Thrift Java Library'
|
|
|
|
|
|
|
|
|
|
defaultTasks 'build'
|
|
|
|
|
|
|
|
|
|
// Version components for this project
|
|
|
|
|
group = property('thrift.groupid')
|
|
|
|
|
|
|
|
|
|
if (Boolean.parseBoolean(project.release)) {
|
2019-01-22 09:22:04 -05:00
|
|
|
version = property('thrift.version')
|
2018-01-24 10:30:13 -05:00
|
|
|
} else {
|
2019-01-22 09:22:04 -05:00
|
|
|
version = property('thrift.version') + '-SNAPSHOT'
|
2018-01-24 10:30:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Keeping the rest of the build logic in functional named scripts for clarity
|
|
|
|
|
apply from: 'gradle/environment.gradle'
|
|
|
|
|
apply from: 'gradle/sourceConfiguration.gradle'
|
|
|
|
|
apply from: 'gradle/generateTestThrift.gradle'
|
|
|
|
|
apply from: 'gradle/unitTests.gradle'
|
|
|
|
|
apply from: 'gradle/cloverCoverage.gradle'
|
|
|
|
|
apply from: 'gradle/functionalTests.gradle'
|
|
|
|
|
apply from: 'gradle/publishing.gradle'
|
|
|
|
|
apply from: 'gradle/codeQualityChecks.gradle'
|