Skip to content

Commit

Permalink
Published pom.xml doesn't have proper metadada when using deprecated …
Browse files Browse the repository at this point in the history
…runtime gradle configuration
  • Loading branch information
chali authored and tgianos committed Jan 9, 2020
1 parent 18b53b6 commit b1a0b3b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -224,10 +224,10 @@ configure(javaProjects) {

testCompileOnly("com.google.code.findbugs:annotations")

testRuntime("javax.el:javax.el-api")
testRuntime("org.glassfish:javax.el")
testRuntime("org.junit.jupiter:junit-jupiter-engine")
testRuntime("org.junit.vintage:junit-vintage-engine")
testRuntimeOnly("javax.el:javax.el-api")
testRuntimeOnly("org.glassfish:javax.el")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine")
}

task removeGeneratedSources(type: Delete) {
Expand Down
8 changes: 4 additions & 4 deletions genie-web/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ dependencies {
* Runtime Dependencies
*******************************/

runtime("com.h2database:h2")
runtime("mysql:mysql-connector-java")
runtime("org.codehaus.groovy:groovy-all")
runtime("org.postgresql:postgresql")
runtimeOnly("com.h2database:h2")
runtimeOnly("mysql:mysql-connector-java")
runtimeOnly("org.codehaus.groovy:groovy-all")
runtimeOnly("org.postgresql:postgresql")

/*******************************
* Test Dependencies
Expand Down

0 comments on commit b1a0b3b

Please sign in to comment.