12 January 2016

JDK8: self-closing element not allowed

JDK8 has issues with HTML tags in javadoc :

<br /> and <p />
[ERROR] Exit code: 1 - /Users/devwebcl/development/workspace-java/ehcache-jcache/ehcache-jcache/src/main/java/org/ehcache/jcache/JCacheCachingProvider.java:39: error: self-closing element not allowed

38:  * A JSR107 adapter for EHCache.
39:  * <br />

More details at:

http://stackoverflow.com/questions/26049329/javadoc-in-jdk-8-invalid-self-closing-element-not-allowed


This workaround can be applied to Maven as well (pom.xml):

            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-javadoc-plugin</artifactId>
              <configuration>
                <additionalparam>-Xdoclint:none</additionalparam>
              </configuration>
            </plugin>
        </plugins>
           


       


11 January 2016

Biblioteca Knuth

Vol 2 2nd edition
 
Vol 4 Combinatorial Algorithms, Part 1
The Art of Computer Programming, Volume 4A: Combinatorial Algorithms, Part 1
1st printing, January 2011

This book contains all the first fascicles :

7.1.1 - 7.1.2
Volume 4 Fascicle 0, Introduction to Combinatorial Algorithms and Boolean Functions (2008), xii+216pp. ISBN 0-321-53496-4
7.1.3 - 7.1.4
Volume 4 Fascicle 1, Bitwise Tricks & Techniques; Binary Decision Diagrams (2009), xiii+261pp. ISBN 0-321-58050-8
7.2.1.1 - 7.2.1.2Volume 4 Fascicle 2, Generating All Tuples and Permutations (2005), v+128pp. ISBN 0-201-85393-0
7.2.1.3 - 7.2.1.5
Volume 4 Fascicle 3, Generating All Combinations and Partitions (2005), vi+150pp. ISBN 0-201-85394-9
7.2.1.6 - 7.2.1.7
Volume 4 Fascicle 4, Generating All Trees; History of Combinatorial Generation (2006), vi+120pp. ISBN 0-321-33570-8
 
 
1993
 
 
Selected Papers on Design of Algorithms
2010
 
Selected Papers on Fun and Games
2011 (741 pages)
 
La version 2012 tiene 742 paginas (ebook)
 
Companion to the Papers of Donald Knuth
2011
 
Surreal Numbers
15th printing. 2003

Números Surreales
Image result for Números Surreales 1979
1979

Concrete Mathematics, 2nd Ed.
Concrete Mathematics: A Foundation for Computer Science
1994

pre-fascMathematical Preliminaries.
7.2.2.Backtrack programming
7.2.2.1.Dancing links


Selected Papers on Discrete Mathematics
2003
 
1992
 

My Blog List

Blog Archive

Disclaimer

The views expressed on this blog are my own and do not necessarily reflect the views of Oracle.