Skip to content

Commit f28825b

Browse files
committed
style: Remove unneeded since JavaDoc annotations
1 parent 7172266 commit f28825b

17 files changed

Lines changed: 2 additions & 19 deletions

src/main/java/org/codehaus/gmavenplus/groovyworkarounds/DotGroovyFile.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
* into letting us use files that don't end in ".groovy" (as a workaround for <a href="http://jira.codehaus.org/browse/GROOVY-5021">GROOVY-5021</a>).
3131
*
3232
* @author Keegan Witt
33-
* @since 1.0-beta-1
3433
*/
3534
public class DotGroovyFile extends File {
3635

src/main/java/org/codehaus/gmavenplus/model/GroovyCompileConfiguration.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
* Holds configuration for Groovy compilation.
2626
*
2727
* @author Keegan Witt
28-
* @since 1.13.0
2928
*/
3029
public class GroovyCompileConfiguration implements Serializable {
3130
private static final long serialVersionUID = 1L;

src/main/java/org/codehaus/gmavenplus/model/GroovyDocConfiguration.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
* Holds configuration for GroovyDoc generation.
2828
*
2929
* @author Keegan Witt
30-
* @since 1.13.0
3130
*/
3231
public class GroovyDocConfiguration implements Serializable {
3332
private static final long serialVersionUID = 1L;

src/main/java/org/codehaus/gmavenplus/model/GroovyStubConfiguration.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
* Holds configuration for Groovy stub generation.
2626
*
2727
* @author Keegan Witt
28-
* @since 1.13.0
2928
*/
3029
public class GroovyStubConfiguration implements Serializable {
3130
private static final long serialVersionUID = 1L;

src/main/java/org/codehaus/gmavenplus/model/Scopes.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
* Scope access modifiers supported by Java.
2222
*
2323
* @author Keegan Witt
24-
* @since 1.0-beta-1
2524
*/
2625
public enum Scopes {
2726

src/main/java/org/codehaus/gmavenplus/model/internal/Version.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
*
2525
* @author <a href="mailto:jason@planet57.com">Jason Dillon</a>
2626
* @author Keegan Witt
27-
* @since 1.0-beta-1
2827
*/
2928
public class Version implements Comparable<Version> {
3029

src/main/java/org/codehaus/gmavenplus/mojo/AbstractCompileMojo.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
* The base compile mojo, which all compile mojos extend.
4242
*
4343
* @author Keegan Witt
44-
* @since 1.0-beta-1
4544
*/
4645
public abstract class AbstractCompileMojo extends AbstractGroovySourcesMojo {
4746

src/main/java/org/codehaus/gmavenplus/mojo/AbstractGenerateStubsMojo.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
* The base generate stubs mojo, which all generate stubs mojos extend.
3333
*
3434
* @author Keegan Witt
35-
* @since 1.0-beta-1
3635
*/
3736
public abstract class AbstractGenerateStubsMojo extends AbstractGroovyStubSourcesMojo {
3837

@@ -168,7 +167,7 @@ public abstract class AbstractGenerateStubsMojo extends AbstractGroovyStubSource
168167
/**
169168
* Whether to execute in a forked process.
170169
*
171-
* @since 1.13.0
170+
* @since 4.3.0
172171
*/
173172
@Parameter(property = "fork", defaultValue = "false")
174173
protected boolean fork;

src/main/java/org/codehaus/gmavenplus/mojo/AbstractGroovyDocMojo.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
* The base GroovyDoc mojo, which all GroovyDoc mojos extend.
4848
*
4949
* @author Keegan Witt
50-
* @since 1.0-beta-1
5150
*/
5251
public abstract class AbstractGroovyDocMojo extends AbstractGroovySourcesMojo {
5352

@@ -259,7 +258,7 @@ public abstract class AbstractGroovyDocMojo extends AbstractGroovySourcesMojo {
259258
/**
260259
* Whether to execute in a forked process.
261260
*
262-
* @since 1.13.0
261+
* @since 4.3.0
263262
*/
264263
@Parameter(property = "fork", defaultValue = "false")
265264
protected boolean fork;

src/main/java/org/codehaus/gmavenplus/mojo/AbstractGroovyMojo.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
* The base mojo class, which all other mojos extend.
3939
*
4040
* @author Keegan Witt
41-
* @since 1.0-beta-1
4241
*/
4342
public abstract class AbstractGroovyMojo extends AbstractMojo {
4443

0 commit comments

Comments
 (0)