Skip to content

Commit c5854fc

Browse files
committed
Updated README to point to jcenter()
1 parent a51a6eb commit c5854fc

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,8 @@ A Gradle plugin that allows for the execution of [JUnit 5][junit5gh] unit tests
66
```groovy
77
buildscript {
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

android-junit5/build.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,17 @@ task copyPom(type: Copy) {
5353

5454
publish.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+
}

0 commit comments

Comments
 (0)