diff --git a/docs/build.gradle b/docs/build.gradle index 72ecc3195a..7c35775829 100644 --- a/docs/build.gradle +++ b/docs/build.gradle @@ -30,8 +30,8 @@ task build(dependsOn: assemble) { * suitable for packaging into a distribution zip or viewing directly with * a browser. * - * @author cbeams - * @author ltaylor + * @author Chris Beams + * @author Luke Taylor * @see http://gradle.org/0.9-rc-1/docs/javadoc/org/gradle/api/tasks/javadoc/Javadoc.html */ task api(type: Javadoc) { diff --git a/gradle/bundlor.gradle b/gradle/bundlor.gradle index 870159da03..6672a01d1a 100644 --- a/gradle/bundlor.gradle +++ b/gradle/bundlor.gradle @@ -18,15 +18,15 @@ // Task definitions and configuration relating to the SpringSource 'bundlor' // OSGi manifest generation utility. // -// @author cbeams +// @author Chris Beams // see: http://www.springsource.org/bundlor // ----------------------------------------------------------------------------- /** * Generate an OSGi manifest using the ant bundlor task. * - * @author ltaylor - * @author cbeams + * @author Luke Taylor + * @author Chris Beams * @see http://static.springsource.org/s2-bundlor/1.0.x/user-guide/html/ch04s02.html */ task bundlor(dependsOn: compileJava) { diff --git a/gradle/checks.gradle b/gradle/checks.gradle index 2240111289..a06b4ec4a7 100644 --- a/gradle/checks.gradle +++ b/gradle/checks.gradle @@ -19,7 +19,7 @@ * Issue a snapshot dependency report across all Java projects. Detects not * only direct snapshot dependencies, but transitive as well. * - * @author cbeams + * @author Chris Beams * @see snapshotDependencyCheck */ task snapshotDependencyReport { @@ -66,7 +66,7 @@ task snapshotDependencyReport { * this option would be if a transitive dependency out of your control is a * snapshot release and you wish to proceed with releasing anyway. * - * @author cbeams + * @author Chris Beams * @see snapshotDependencyReport */ task snapshotDependencyCheck(dependsOn: snapshotDependencyReport) { diff --git a/gradle/dist.gradle b/gradle/dist.gradle index 827ab79579..abedc6e963 100644 --- a/gradle/dist.gradle +++ b/gradle/dist.gradle @@ -17,7 +17,7 @@ // ----------------------------------------------------------------------------- // Task definitions related to releasing the project // -// @author cbeams +// @author Chris Beams // ----------------------------------------------------------------------------- // ensure that every project has been evaluated before this script @@ -38,7 +38,7 @@ task build(dependsOn: [check, assemble]) { /** * Build the distribution zip file. * - * @author cbeams + * @author Chris Beams */ task distArchive(type: Zip) { group = 'Build' diff --git a/gradle/docbook.gradle b/gradle/docbook.gradle index f60b9d62ed..225e4033fe 100644 --- a/gradle/docbook.gradle +++ b/gradle/docbook.gradle @@ -65,7 +65,7 @@ buildscript { * Creates three tasks: docbookHtml, docbookHtmlSingle and docbookPdf. * Each task takes a single File on which it operates. * - * @author ltaylor + * @author Luke Taylor */ // Add the plugin tasks to the project task docbookHtml(type: DocbookHtml) { diff --git a/gradle/maven-deployment.gradle b/gradle/maven-deployment.gradle index 2b45990a6a..58a0bc5c36 100644 --- a/gradle/maven-deployment.gradle +++ b/gradle/maven-deployment.gradle @@ -17,7 +17,7 @@ // ----------------------------------------------------------------------------- // Tasks related to deploying Maven artifacts. // -// @author cbeams +// @author Chris Beams // ----------------------------------------------------------------------------- @@ -30,7 +30,7 @@ checkForProps(taskPath: project.path + ':uploadArchives', requiredProps: require /** * Builds a source jar artifact for all main java sources. * - * @author ltaylor + * @author Luke Taylor */ task sourceJar(type: Jar) { description = 'Builds a source jar artifact suitable for maven deployment.' @@ -66,7 +66,7 @@ artifacts { * that have the erlangLicense property set to true, the Erlang License will be * added to the pom as well. * - * @author cbeams + * @author Chris Beams * @see 'mavenSyncRepoDir' in gradle.properties * @see `gradle install` for deploying artifacts to the local .m2 cache * @see http://maven.apache.org/guides/mini/guide-central-repository-upload.html diff --git a/gradle/wrapper.gradle b/gradle/wrapper.gradle index e7bb303b1a..36e7ac7d0f 100644 --- a/gradle/wrapper.gradle +++ b/gradle/wrapper.gradle @@ -19,7 +19,7 @@ * convenience scripts allow users to operate the build without being forced to * download and install gradle. * - * @author cbeams + * @author Chris Beams * @see http://gradle.org/0.9-preview-3/docs/userguide/userguide_single.html#gradle_wrapper */ task wrapper(type: Wrapper) {