Gradle offers two kinds of syntax to declare a dependency.
- Abbreviated:
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0-M1'
- Labeled:
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.9.0-M1'
Gradle offers two kinds of syntax to declare a dependency.
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0-M1'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.9.0-M1'