Closed koppor closed 9 years ago
Oops. I'll release 1.2 ASAP.
For now, use the following:
buildscript {
repositories {
maven {
// switch to sonatype SNAPSHOT repository
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
dependencies {
// use version 1.2-SNAPSHOT
classpath 'ch.raffael.pegdown-doclet:gradle-plugin:1.2-SNAPSHOT'
}
}
apply plugin: 'ch.raffael.doclets.pegdown'
Ooops again. The artifact's name is pegdown-doclet-gradle-plugin
.
Fixed, 1.2 released. See README: The gradle plugin is now integrated in the main doclet jar:
buildscript {
repositories {
mavenCentral() // or jcenter()
}
dependencies {
classpath 'ch.raffael.pegdown-doclet:pegdown-doclet:1.2'
}
}
apply plugin: 'ch.raffael.pegdown-doclet'
I'm trying to follow the process in README.md of the gradle-plugin.
gradlew tasks
gives me following output in my project:When browsing https://jcenter.bintray.com/ch/raffael/pegdown-doclet/, only
pegdown-doclet/
appears.