Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ buildscript {
npmRepository = 'https://npm.pkg.github.com'
}
repositories {
maven { url 'https://plugins.gradle.org/m2/' }
maven { url = 'https://plugins.gradle.org/m2/' }
}

dependencies {
Expand Down Expand Up @@ -243,13 +243,13 @@ allprojects {
trimTrailingWhitespace()
}

lineEndings 'UNIX'
lineEndings = 'UNIX'
}

// Configuration for Gradle license plug-in
// https://github.com/hierynomus/license-gradle-plugin
license {
header rootProject.file("$rootDir/APACHE_LICENSETEXT.md")
header = rootProject.file("$rootDir/APACHE_LICENSETEXT.md")
excludes([
"**/gradlew*",
"**/git.properties",
Expand All @@ -266,7 +266,7 @@ allprojects {
"**/avro/**/*.java",
"**/org/apache/fineract/client/**/*.java"
])
strictCheck true
strictCheck = true
}

licenseReport {
Expand Down Expand Up @@ -535,7 +535,7 @@ configure(project.fineractJavaProjects) {
}
}

lineEndings 'UNIX'
lineEndings = 'UNIX'
}

// If we are running Gradle within Eclipse to enhance classes,
Expand Down Expand Up @@ -722,7 +722,7 @@ configure(project.fineractJavaProjects) {
}

testlogger {
logLevel 'quiet'
logLevel = 'quiet'
}

// Configuration for spotbugs plugin
Expand Down Expand Up @@ -842,9 +842,9 @@ configure(project.fineractPublishProjects) {
publishing {
publications {
mavenJava(MavenPublication) {
groupId 'org.apache.fineract'
artifactId project.name
version "${project.version}-SNAPSHOT"
groupId = 'org.apache.fineract'
artifactId = project.name
version = "${project.version}-SNAPSHOT"

from components.java

Expand Down Expand Up @@ -881,11 +881,11 @@ configure(project.fineractPublishProjects) {
def stagingUrl = 'https://repository.apache.org/content/repositories/snapshots'

maven {
name 'apache'
url hasProperty('fineract.release.version') ? releaseUrl : stagingUrl
name = 'apache'
url = hasProperty('fineract.release.version') ? releaseUrl : stagingUrl
credentials {
username "${findProperty('fineract.config.username')}"
password "${findProperty('fineract.config.password')}"
username = "${findProperty('fineract.config.username')}"
password = "${findProperty('fineract.config.password')}"
}
}
}
Expand All @@ -903,7 +903,7 @@ configure(project.fineractPublishProjects) {
apply plugin: 'org.cyclonedx.bom'

cyclonedxBom {
projectType = "application"
projectType = 'APPLICATION'
includeBomSerialNumber = true
includeLicenseText = true
}
Expand Down
12 changes: 6 additions & 6 deletions fineract-doc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,12 @@ task copyDiagrams(type: Copy) {
asciidoctor {
languages 'en'

baseDir 'src/docs'
sourceDir 'src/docs'
baseDir = 'src/docs'
sourceDir = 'src/docs'
sources {
include('index.adoc')
}
outputDir 'build/docs/html'
outputDir = 'build/docs/html'

logging.captureStandardError LogLevel.INFO

Expand All @@ -112,12 +112,12 @@ asciidoctor {
asciidoctorPdf {
languages 'en'

baseDir 'src/docs'
sourceDir 'src/docs'
baseDir = 'src/docs'
sourceDir = 'src/docs'
sources {
include('index.adoc')
}
outputDir 'build/docs/pdf'
outputDir = 'build/docs/pdf'

logging.captureStandardError LogLevel.INFO

Expand Down
6 changes: 3 additions & 3 deletions fineract-war/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ dependencies {
}

tasks.withType(Tar) {
compression Compression.GZIP
compression = Compression.GZIP
archiveExtension = 'tar.gz'

// Enable caching for all tar tasks
Expand Down Expand Up @@ -185,5 +185,5 @@ tasks.named('srcDistTar') {
}

// Disable zip distributions as they're not needed
binaryDistZip.enabled false
srcDistZip.enabled false
binaryDistZip.enabled = false
srcDistZip.enabled = false
2 changes: 1 addition & 1 deletion integration-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dependencies {
}

cargo {
containerId "tomcat10x"
containerId = "tomcat10x"

// looks like Cargo doesn't detect the WAR file automatically in the multi-module setup
deployable {
Expand Down
2 changes: 1 addition & 1 deletion oauth2-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dependencies {
}

cargo {
containerId "tomcat10x"
containerId = "tomcat10x"

// looks like Cargo doesn't detect the WAR file automatically in the multi-module setup
deployable {
Expand Down
Loading