Skip to content

Commit e884bac

Browse files
author
synapticloop
committed
fixed description
1 parent e9e9a41 commit e884bac

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313
}
1414

1515
dependencies {
16-
classpath 'synapticloop:documentr:2.6.1'
16+
classpath 'synapticloop:documentr:2.6.2'
1717
}
1818
}
1919

@@ -38,7 +38,7 @@ group = 'synapticloop'
3838
archivesBaseName = 'documentr'
3939
description = """documentation (README) generator for projects in both markdown and asciidoc - this utilises the templar templating language - including generation of table of contents"""
4040

41-
version = '2.6.1'
41+
version = '2.6.2'
4242

4343
sourceCompatibility = 1.7
4444
targetCompatibility = 1.7

src/main/java/synapticloop/documentr/plugin/DocumentrPlugin.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ public class DocumentrPlugin implements Plugin<Project> {
2626
public void apply(Project project) {
2727
project.getExtensions().create(DOCUMENTR, DocumentrPluginExtension.class);
2828
project.getTasks().create(DOCUMENTR, DocumentrTask.class);
29-
3029
}
3130

3231
}

src/main/java/synapticloop/documentr/plugin/DocumentrTask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class DocumentrTask extends DefaultTask {
2828
*/
2929
public DocumentrTask() {
3030
super.setGroup("Documentation");
31-
super.setDescription("Generates a README file for your project");
31+
super.setDescription("Generates a README file for your project.");
3232
}
3333

3434
/**

0 commit comments

Comments
 (0)