Skip to content

Commit

Permalink
build(frontend): Drop unnecessary DB-related dependencies (datahub-pr…
Browse files Browse the repository at this point in the history
…oject#1741)

* refactor(frontend): Drop unnecessary DB-related dependencies

* Drop unused dependencies from top-level build script
  • Loading branch information
mars-lan authored and arunvasudevan committed Sep 10, 2020
1 parent 71f0e32 commit 7c1d26f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
4 changes: 1 addition & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ project.ext.externalDependency = [
'parseqTest': 'com.linkedin.parseq:parseq:3.0.7:test',
'playDocs': 'com.typesafe.play:play-docs_2.11:2.6.18',
'playGuice': 'com.typesafe.play:play-guice_2.11:2.6.18',
'playJavaJdbc': 'com.typesafe.play:play-java-jdbc_2.11:2.6.18',
'playTest': 'com.typesafe.play:play-test_2.11:2.6.18',
'postgresql': 'org.postgresql:postgresql:42.2.14',
'reflections': 'org.reflections:reflections:0.9.11',
Expand All @@ -72,7 +71,6 @@ project.ext.externalDependency = [
'springBeans': 'org.springframework:spring-beans:5.2.3.RELEASE',
'springContext': 'org.springframework:spring-context:5.2.3.RELEASE',
'springCore': 'org.springframework:spring-core:5.2.3.RELEASE',
'springJdbc': 'org.springframework:spring-jdbc:5.2.3.RELEASE',
'springWeb': 'org.springframework:spring-web:5.2.3.RELEASE',
'springBootStarterWeb': 'org.springframework.boot:spring-boot-starter-web:2.1.2.RELEASE',
'springBootStarterJetty': 'org.springframework.boot:spring-boot-starter-jetty:2.1.2.RELEASE',
Expand Down Expand Up @@ -123,4 +121,4 @@ subprojects {
}
}
}
}
}
6 changes: 1 addition & 5 deletions datahub-frontend/play.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,11 @@ dependencies {

play externalDependency.jerseyCore
play externalDependency.jerseyGuava
play externalDependency.mysqlConnector
play externalDependency.playJavaJdbc
play externalDependency.springJdbc

playTest externalDependency.mockito
playTest externalDependency.playTest

playRun externalDependency.guice
playRun externalDependency.h2
playRun externalDependency.playDocs
playRun externalDependency.playGuice
}
Expand Down Expand Up @@ -68,4 +64,4 @@ task unzipAssets(type: Copy, dependsOn: configurations.assets) {
task moveAssets(type: Copy, dependsOn: unzipAssets) {
into "${buildDir}/assets"
from ("${buildDir}/assets/assets")
}
}

0 comments on commit 7c1d26f

Please sign in to comment.