Skip to content

Commit

Permalink
Gradle warning fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyazelenko committed Jan 31, 2025
1 parent 467942d commit f130f28
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ subprojects {
def aeronLoggingAgent = project.file("../aeron-agent/build/libs/aeron-agent-${aeronVersion}.jar").absolutePath

tasks.register('slowTest', Test) {
group 'verification'
group = 'verification'
dependsOn ':aeron-agent:jar'

maxParallelForks = 1
Expand All @@ -292,7 +292,7 @@ subprojects {
}

tasks.register('bindingsTest', Test) {
group 'verification'
group = 'verification'
dependsOn ':aeron-agent:jar'

maxParallelForks = 1
Expand All @@ -308,7 +308,7 @@ subprojects {
}

tasks.register('topologyTest', Test) {
group 'verification'
group = 'verification'
maxParallelForks = 1
useJUnitPlatform {
includeTags 'topology'
Expand Down Expand Up @@ -1403,7 +1403,7 @@ tasks.register('tarTestLogs', Tar) {
dependsOn tasks.named('copyTestLogs')
archiveBaseName.set('test_logs')
from 'build/test_logs'
compression Compression.BZIP2
compression = Compression.BZIP2
}

def isNonStable = { String version ->
Expand Down

0 comments on commit f130f28

Please sign in to comment.