kikovalle / PLGSharepointRestAPI-java

Easy to use wrapper for the Sharepoint Rest API v1. Even if this is not a full implementation it covers most common use cases and provides examples to extending this API.
MIT License
42 stars 32 forks source link

Updated to plugin dependencies and library dependencies. #60

Closed Avec112 closed 2 years ago

Avec112 commented 2 years ago

There were some vulnerabilities but those should be handled at the moment. I had to exclude one 3.party dependency (SnakeYAML) for TestNG and include a newer one.

Also did some refactoring/improvements.

Avec112 commented 2 years ago

Alternatively replace the two dependencies for jakarta.xml.ws with this

<dependency>
  <groupId>jakarta.xml.soap</groupId>
  <artifactId>jakarta.xml.soap-api</artifactId>
  <version>3.0.0</version>
</dependency>
<dependency>
  <groupId>com.sun.xml.messaging.saaj</groupId>
  <artifactId>saaj-impl</artifactId>
  <version>2.0.1</version>
</dependency>

Also I have later found out that SnakeYAML, a transitive dependency, can be excluded all together since it is not referenced in your code.

kikovalle commented 2 years ago

Thank you all for the work