* Maven profiles to support jdk 11 builds. #948 Added maven profiles activated by jdk 11, wich will not break java 8 support. Bumped lombok and datanucleus enhancer as the old versions dont work with 11. * Fixed PMD issue when building naked-objects * Fixed the eip modules with xml dependencies. Previous dependency relaxing commit causes xml libs to go missing from some modules that actually needed them
This commit is contained in:
		| @@ -70,4 +70,25 @@ | ||||
|         </dependency> | ||||
|  | ||||
|     </dependencies> | ||||
|  | ||||
|     <profiles> | ||||
|         <profile> | ||||
|             <id>jdk11-deps</id> | ||||
|             <activation> | ||||
|                 <jdk>[11,)</jdk> | ||||
|             </activation> | ||||
|             <dependencies> | ||||
|                 <dependency> | ||||
|                     <groupId>com.sun.xml.bind</groupId> | ||||
|                     <artifactId>jaxb-impl</artifactId> | ||||
|                 </dependency> | ||||
|                 <dependency> | ||||
|                     <groupId>javax.xml.bind</groupId> | ||||
|                     <artifactId>jaxb-api</artifactId> | ||||
|                 </dependency> | ||||
|             </dependencies> | ||||
|         </profile> | ||||
|     </profiles> | ||||
|  | ||||
|  | ||||
| </project> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user