Skip to content

Commit ee76c2a

Browse files
committed
Added jdk7 to travis. Removed html in javadoc. Added custom Maven plugin tags to javadoc
1 parent 5a60c78 commit ee76c2a

File tree

6 files changed

+22
-9
lines changed

6 files changed

+22
-9
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ install: mvn install -Ddev
1010

1111
jdk:
1212
- openjdk6
13+
- oraclejdk7
1314
- oraclejdk8
1415

1516
addons:

pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,18 @@
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>
@@ -304,6 +316,7 @@
304316
</execution>
305317
</executions>
306318
</plugin>
319+
307320
<plugin>
308321
<groupId>org.apache.maven.plugins</groupId>
309322
<artifactId>maven-source-plugin</artifactId>

sorter/src/main/java/sortpom/exception/FailureException.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
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

sorter/src/main/java/sortpom/jdomcontent/NewlineText.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
import 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
*/
1313
public 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]";

sorter/src/main/java/sortpom/processinstruction/IgnoredSectionsStore.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
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

sorter/src/main/java/sortpom/wrapper/WrapperFactoryImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
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

0 commit comments

Comments
 (0)