socialite icon indicating copy to clipboard operation
socialite copied to clipboard

Errors during build due to missing dependencies

Open Ankur10gen opened this issue 3 years ago • 0 comments

Adding below to pom.xml will help resolve the issues:

  1. Maven compiler source and target as a child of
<properties>
                <maven.compiler.source>1.7</maven.compiler.source>
                <maven.compiler.target>1.7</maven.compiler.target>
        </properties>
  1. JAXB dependency
<dependency>
    <groupId>javax.xml.bind</groupId>
     <artifactId>jaxb-api</artifactId>
    <version>2.3.0</version>
 </dependency>

Ankur10gen avatar Mar 22 '21 05:03 Ankur10gen