Polish @author tags

Names should be spelled out ('Chris Beams') instead of abbreviated
('cbeams')
This commit is contained in:
Chris Beams
2010-10-27 15:51:06 -04:00
parent 7fc73e1f92
commit a600e5279b
7 changed files with 14 additions and 14 deletions

View File

@@ -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) {

View File

@@ -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) {

View File

@@ -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) {

View File

@@ -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'

View File

@@ -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) {

View File

@@ -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

View File

@@ -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) {