Skip to content

package com.sun.xml.internal.bind.marshaller not exist #3

@matrixcloud

Description

@matrixcloud

My Behavior

mvn clean install -Dmaven.test.skip=true -Dmaven.javadoc.skip=true

Solution

Changing your configuration of the maven-compiler-plugin :

<plugin>
	<artifactId>maven-compiler-plugin</artifactId>
	<configuration>
	    <source>1.8</source>
	    <target>1.8</target>
	    <encoding>UTF-8</encoding>
	    <compilerArgs>
        	<arg>-XDignore.symbol.file</arg>
	    </compilerArgs>
	</configuration>
</plugin>

Refs

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions