File tree Expand file tree Collapse file tree 2 files changed +20
-21
lines changed
src/main/java/org/codehaus/mojo/aspectj Expand file tree Collapse file tree 2 files changed +20
-21
lines changed Original file line number Diff line number Diff line change @@ -142,14 +142,14 @@ public abstract class AbstractAjcCompiler extends AbstractAjcMojo {
142
142
143
143
/**
144
144
* Allows the caller to provide additional arguments in a Map format. For example:
145
- * <pre>
146
- * < configuration>
147
- * < Xset>
148
- * < overWeaving> true< /overWeaving>
149
- * < avoidFinal> false< /avoidFinal>
150
- * < /Xset>
151
- * < /configuration>
152
- * </pre>
145
+ * <pre>{@code
146
+ * < configuration>
147
+ * < Xset>
148
+ * < overWeaving> true< /overWeaving>
149
+ * < avoidFinal> false< /avoidFinal>
150
+ * < /Xset>
151
+ * < /configuration>
152
+ * } </pre>
153
153
*
154
154
* @since 1.5
155
155
*/
@@ -415,7 +415,7 @@ public abstract class AbstractAjcCompiler extends AbstractAjcMojo {
415
415
* <a href="https://maven.apache.org/guides/mini/guide-reproducible-builds.html">reproducible builds</a>.
416
416
* <p>
417
417
* A typical <i>builddef.lst</i> file might look like this:
418
- * <pre>< code>
418
+ * <pre>{@ code
419
419
* -1.8
420
420
* -encoding
421
421
* UTF-8
@@ -424,7 +424,7 @@ public abstract class AbstractAjcCompiler extends AbstractAjcMojo {
424
424
* -d
425
425
* /my/project/target/classes
426
426
* /my/project/src/main/java/org/acme/ValidationAspect.java
427
- * </code> </pre>
427
+ * } </pre>
428
428
*/
429
429
@ Parameter ( defaultValue = "builddef.lst" )
430
430
protected String argumentFileName = "builddef.lst" ;
Original file line number Diff line number Diff line change @@ -243,7 +243,7 @@ public static Set<String> getWeaveSourceFiles( String[] weaveDirs )
243
243
* Based on a set of JARs and directories, returns a set of all JARs and class files
244
244
*
245
245
* @param dirsAndJars JARs and base directories to be scanned
246
- * @param outDir
246
+ * @param outDir build output directory
247
247
* @return a set of all JARs and class files found in the <i>dirsAndJars</i>
248
248
* @throws MojoExecutionException if any IOExceptions occur
249
249
*/
@@ -355,17 +355,16 @@ protected static String getAsCsv( String[] strings )
355
355
356
356
/**
357
357
* Helper method to find all .java or .aj files specified by the
358
- * inExcludeString. The includeString is a comma separated list over files, or
359
- * directories relative to the specified basedir. Examples of correct
360
- * listings
358
+ * inExcludeString. The includeString is a comma-separated list over files, or
359
+ * directories relative to the specified basedir. Examples of correct listings:
361
360
*
362
- * <pre>
363
- * src/main/java/
364
- * src/main/java
365
- * src/main/java/com/project/AClass.java
366
- * src/main/java/com/project/AnAspect.aj
367
- * src/main/java/com/project/AnAspect.java
368
- * </pre>
361
+ * <pre>{@code
362
+ * src/main/java/
363
+ * src/main/java
364
+ * src/main/java/com/project/AClass.java
365
+ * src/main/java/com/project/AnAspect.aj
366
+ * src/main/java/com/project/AnAspect.java
367
+ * } </pre>
369
368
*
370
369
* @param inExcludeString in-/exclude string
371
370
* @param basedir the baseDirectory
You can’t perform that action at this time.
0 commit comments