Skip to content

Commit

Permalink
Add new module to diagram, polish dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Merdes authored and Matthias Merdes committed Nov 29, 2016
1 parent 54e2c2a commit 8710121
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
7 changes: 7 additions & 0 deletions documentation/src/docs/asciidoc/overview.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ Snapshot artifacts are deployed to Sonatype's {snapshot-repo}[snapshots reposito
JUnit Jupiter API for <<writing-tests,writing tests>> and <<extensions,extensions>>.
`junit-jupiter-engine`::
JUnit Jupiter test engine implementation, only required at runtime.
`junit-jupiter-migration-support`::
Migration support from JUnit 4 to JUnit Jupiter,
only required for running selected JUnit 4 rules.

[[dependency-metadata-junit-vintage]]
==== JUnit Vintage
Expand Down Expand Up @@ -117,6 +120,7 @@ skinparam {
package org.junit.jupiter {
[junit-jupiter-api] as jupiterapi
[junit-jupiter-engine] as jupiterengine
[junit-jupiter-migration-support] as jupitermigrationsupport
}
package org.junit.vintage {
Expand Down Expand Up @@ -144,6 +148,9 @@ jupiterapi ..> commons
jupiterengine ..> engine
jupiterengine ..> jupiterapi
jupitermigrationsupport ..> jupiterapi
jupitermigrationsupport ..> junit4
console ..> launcher
gradle ..> console
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,9 @@ test {

dependencies {
compile("junit:junit:${junit4Version}")

compile(project(':junit-jupiter-api'))
compile(project(':junit-platform-engine'))
compile(project(':junit-jupiter-engine'))


testCompile(project(':junit-jupiter-engine'))
testCompile(project(':junit-platform-launcher'))
testCompile(project(path: ':junit-platform-engine', configuration: 'testArtifacts'))
testCompile("org.assertj:assertj-core:${assertJVersion}")
Expand Down

0 comments on commit 8710121

Please sign in to comment.