[Bael 6099] - Add "core-java-10" and "core-java-11" modules (#4125)

* Added parent module on poms that have no parent defined

* Removed dependency reduced pom from undertow module

* [BAEL-6099] - Added core-java-10 and core-java-11 modules

* [BAEL-6099] - Added core-java-10 and core-java-11 modules

* [BAEL-6099] - Enforced compiling to a particular version

* [BAEL-6099] - Enforced compiling to a particular version
This commit is contained in:
amit2103
2018-04-29 20:37:32 +05:30
committed by Grzegorz Piwowarek
parent 57776ac968
commit e9a0babbe5
6 changed files with 192 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package com.baeldung;
/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args )
{
System.out.println( "Hello World!" );
}
}