Skip to content

Commit

Permalink
FIXED #9
Browse files Browse the repository at this point in the history
  • Loading branch information
ysb33r committed Jun 21, 2014
1 parent 4632dc1 commit d3f03d0
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ buildscript {
mavenLocal()
}
dependencies {
classpath 'org.ysb33r.gradle:bintray:1.3.1'
classpath 'org.ysb33r.gradle:bintray:1.4-SNAPSHOT'
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:2.2.3'
}
}

subprojects {
apply plugin : 'bintray-publish'
apply plugin : 'org.ysb33r.bintray'
apply plugin : 'groovy'
apply plugin : 'maven'
apply plugin : 'idea'
Expand Down
1 change: 1 addition & 0 deletions doxygen/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ CHANGELOG
Version 0.2 - Roadmap
---------------------
+ ['template' not recognised as configuration option](https://github.com/ysb33r/Gradle/issues/8)
+ [Change id to 'org.ysb33r.doxygen'](https://github.com/ysb33r/Gradle/issues/9)

Version 0.1
-----------
Expand Down
6 changes: 3 additions & 3 deletions doxygen/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Doxygen Plugin for Gradle
[Doxygen](http://www.doxygen.org) is a popular documentation tool, especially in the C/C++ world. This plugin makes
it possible to generate documentation for any of the ```Doxygen``` supported languages, if such projects are built with
[Gradle](http://www.gradle.org). There is an existing [Doxygen extension](***) for [Ant](http://ant.apache.org), which already
makes it possible for Gradle builds to utlise DOxygen via ```AntBuilder```, however this plugin takes a much more
makes it possible for Gradle builds to utilise ```Doxygen``` via ```AntBuilder```, however this plugin takes a much more
_gradlesque_ approach.

Requirements
Expand All @@ -26,11 +26,11 @@ buildscript {
jcenter()
}
dependencies {
classpath 'org.ysb33r.gradle:doxygen:0.1'
classpath 'org.ysb33r.gradle:doxygen:0.2'
}
}
apply plugin : 'doxygen'
apply plugin : 'org.ysb33r.doxygen'
```

This will create a default task called ```doxygen``` which can be configured.
Expand Down
3 changes: 2 additions & 1 deletion doxygen/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import org.ysb33r.gradle.bintray.BintraySignVersion

archivesBaseName = 'doxygen'
ext.moduleName = 'doxygen-gradle-plugin'
version = '0.2-SNAPSHOT'
version = '0.2'


dependencies {
Expand Down Expand Up @@ -71,6 +71,7 @@ uploadArchives {
vcsUrl 'https://github.com/ysb33r/Gradle.git'
autoCreatePackage true
updatePackage true
versionAttributes 'gradle-plugin' : "org.ysb33r.doxygen:${group}:${moduleName}"
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class DoxygenPluginSpec extends spock.lang.Specification {
Project project = ProjectBuilder.builder().build()

void setup() {
project.apply plugin:'doxygen'
project.apply plugin:'org.ysb33r.doxygen'
}

def "Can apply Doxygen plugin to project"() {
Expand Down

0 comments on commit d3f03d0

Please sign in to comment.