File tree Expand file tree Collapse file tree 2 files changed +16
-4
lines changed
Expand file tree Collapse file tree 2 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,8 @@ A Gradle plugin that allows for the execution of [JUnit 5][junit5gh] unit tests
66``` groovy
77buildscript {
88 repositories {
9- // 1. Add the repository (JCenter coming soon...)
10- maven {
11- url "http://dl.bintray.com/aurae/maven"
12- }
9+ // 1. Make sure to include jcenter in your repositories
10+ jcenter()
1311 }
1412 dependencies {
1513 // 2. Add the plugin as a classpath dependency
Original file line number Diff line number Diff line change @@ -53,3 +53,17 @@ task copyPom(type: Copy) {
5353
5454publish. dependsOn copyPom
5555
56+ task sourcesJar (type : Jar , dependsOn : classes) {
57+ classifier = ' sources'
58+ from sourceSets. main. allSource
59+ }
60+
61+ task javadocJar (type : Jar , dependsOn : javadoc) {
62+ classifier = ' javadoc'
63+ from javadoc. destinationDir
64+ }
65+
66+ artifacts {
67+ archives sourcesJar
68+ archives javadocJar
69+ }
You can’t perform that action at this time.
0 commit comments