socialite
socialite copied to clipboard
Errors during build due to missing dependencies
Adding below to pom.xml will help resolve the issues:
- 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>
- JAXB dependency
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.0</version>
</dependency>