Skip to content

Commit 721452a

Browse files
committed
Use System.getProperty() instead
1 parent 919eee5 commit 721452a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencyResolutionManagement {
3030
url( rootProject.property( "mavenMirror" ) )
3131
}
3232
mavenCentral()
33-
if (System.env['JPA_PREVIEW'] != null) {
33+
if (System.getProperty('JPA_PREVIEW') != null) {
3434
// Needed for the RC versions of Jakarta Persistence
3535
maven {
3636
url "https://jakarta.oss.sonatype.org/content/repositories/releases/"

0 commit comments

Comments
 (0)