mirror of
https://github.com/google/nomulus.git
synced 2025-07-19 17:26:09 +02:00
Adding junit back into the runtime classpath (#399)
* Adding junit back into the runtime classpath Unfortunately, GenerateSqlSchemaCommand depends on junit via testcontainers. We should really move GenerateSqlSchemaCommand out of nomulus tool (we only use it during development) but this gets nomulus tool working for the time being. * Removed unnnecessary trace line. * lockfiles generated after update_dependency.sh
This commit is contained in:
parent
988f78274e
commit
df7d272157
39 changed files with 79 additions and 1 deletions
|
@ -57,7 +57,9 @@ configurations {
|
|||
runtimeClasspath {
|
||||
// JUnit is from org.apache.beam:beam-runners-google-cloud-dataflow-java,
|
||||
// testcontainer (which we use in the nomulus tool), and json-simple.
|
||||
exclude group: 'junit'
|
||||
// We should really be excluding this, however GenerateSqlCommand in
|
||||
// nomulus-tool currently uses testcontainers which, in turn, needs junit.
|
||||
//exclude group: 'junit'
|
||||
// Mockito is from org.apache.beam:beam-runners-google-cloud-dataflow-java
|
||||
// See https://issues.apache.org/jira/browse/BEAM-8862
|
||||
exclude group: 'org.mockito', module: 'mockito-core'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue