File tree Expand file tree Collapse file tree 6 files changed +22
-9
lines changed
sorter/src/main/java/sortpom Expand file tree Collapse file tree 6 files changed +22
-9
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ install: mvn install -Ddev
1010
1111jdk :
1212 - openjdk6
13+ - oraclejdk7
1314 - oraclejdk8
1415
1516addons :
Original file line number Diff line number Diff line change 293293 <!-- JSE -->
294294 <link >http://docs.oracle.com/javase/6/docs/api/</link >
295295 </links >
296+ <tags >
297+ <tag >
298+ <name >goal</name >
299+ <placement >a</placement >
300+ <head >Maven plugin goal:</head >
301+ </tag >
302+ <tag >
303+ <name >threadSafe</name >
304+ <placement >a</placement >
305+ <head >Is plugin thread safe:</head >
306+ </tag >
307+ </tags >
296308 </configuration >
297309 <executions >
298310 <execution >
304316 </execution >
305317 </executions >
306318 </plugin >
319+
307320 <plugin >
308321 <groupId >org.apache.maven.plugins</groupId >
309322 <artifactId >maven-source-plugin</artifactId >
Original file line number Diff line number Diff line change 22
33/**
44 * An exception occurring during the execution of the sort (such as a compilation failure).
5- * <br/>
65 * Throwing this exception should cause a "BUILD FAILURE" message to be displayed.
76 * @author bjorn
87 * @since 2012-12-21
Original file line number Diff line number Diff line change 33import org .jdom .Comment ;
44
55/**
6+ * The NewlineText is not really a special case of comment. Its just that comments
7+ * are not subjected to trimming by jdom. The special handling of NewlineText is done
8+ * in XmlProcessor.PatchedXMLOutputter
9+ *
610 * @author bjorn
711 * @since 2012-05-17
8- * <p/>
9- * The NewlineText is not really a special case of comment. Its just that comments
10- * are not subjected to trimming by jdom. The special handling of NewlineText is done
11- * in XmlProcessor.PatchedXMLOutputter
1212 */
1313public class NewlineText extends Comment {
1414 private static final long serialVersionUID = -7552189498553321263L ;
@@ -21,7 +21,7 @@ public class NewlineText extends Comment {
2121 * should be used.
2222 *
2323 * @return <code>String</code> - information about the
24- * <code>Attribute</code>
24+ * <code>Attribute</code>
2525 */
2626 public String toString () {
2727 return "[NewLine]" ;
Original file line number Diff line number Diff line change 77/**
88 * Replaces ignored sections with a token. The ignored sections look like this:
99 * <?sortpom ignore?>... whatever ... <?sortpom resume?>
10- * <p/>
10+ *
1111 * The tokens look like this:
1212 * <?sortpom token='0'?>
13- * <p/>
13+ *
1414 * The number in the token identifies the ignored section so that it can find it in a stored list.
1515 *
1616 * @author bjorn
Original file line number Diff line number Diff line change 2020/**
2121 * Concrete implementation of a wrapper factory that sorts xml according to
2222 * sort order from fileUtil.
23- * <p/>
23+ *
2424 * Thank you Christian Haelg for your sortProperties patch.
2525 *
2626 * @author Bjorn Ekryd
You can’t perform that action at this time.
0 commit comments