Open GoogleCodeExporter opened 9 years ago
This issue was updated by revision 1f10ec14fa5e.
Some changes in javadoc (http://openjdk.java.net/jeps/172) make build to fail
on javadoc generation (even with -DskipTests).
http://stackoverflow.com/questions/15886209/maven-is-not-working-in-java-8-when-
javadoc-tags-are-incomplete
Original comment by alexande...@gmail.com
on 21 May 2014 at 11:25
Seems like those tests fail because we expect certain order of map's keys in
tests... Which was kind of fine/same in java before 8.
Looks like java 8 changed the way keys stored in HashMap, so order in
mapping.entrySet() differs from what test yaml files have.
I think this is bug it TESTs. We should not expect any specific order of keys
in map (if it's not Linked at least)
Original comment by alexande...@gmail.com
on 21 May 2014 at 11:57
to make things easy, we can change HashMap in those tests to LinkedHashMap -
that will guarantee order of keys.
What do you think? (I have it already and build succeeds, but is it the way?)
Original comment by alexande...@gmail.com
on 21 May 2014 at 12:10
I agree, we can use LinkedHashMap.
Original comment by py4fun@gmail.com
on 21 May 2014 at 3:22
This issue was updated by revision 0ecfebcf845d.
Original comment by alexande...@gmail.com
on 22 May 2014 at 6:26
This issue was updated by revision 1955be309d3e.
Original comment by alexande...@gmail.com
on 22 May 2014 at 7:00
Original issue reported on code.google.com by
alexande...@gmail.com
on 21 May 2014 at 10:56