User Tools

Site Tools


ds:software:java11

This is an old revision of the document!


Java 11 pitfalls

How to port a Java 8 GUI application to Java 11

  1. Check out the old project from SVN on the asl cluster
  2. … ToDo

Javadoc error

When compiling a project on the command line with 'mvn' a Javadoc error can occur:

To solve this, add this to your pom file (be careful if you already have some other plugins within the <build> tag:

  ...
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <configuration>
          <source>8</source>
        </configuration>
     
      </plugin> 
    </plugins>
  </build>
  ...
ds/software/java11.1557229854.txt.gz · Last modified: 2019/05/07 13:50 by rhaseitl