|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <groupId>io.github.kikovalle.com.panxoloto.sharepoint.rest</groupId> |
6 | 6 | <artifactId>PLGSharepointRestAPI</artifactId> |
7 | | - <version>1.1.0</version> |
| 7 | + <version>1.2.0</version> |
8 | 8 | <name>PLGSharepointRestAPI-java</name> |
9 | 9 | <description>Sharepoint Rest API v1 easy to use java library for sharepoint online.</description> |
10 | 10 | <url>https://github.com/kikovalle/PLGSharepointRestAPI-java</url> |
|
103 | 103 | </configuration> |
104 | 104 | </plugin> |
105 | 105 | <plugin> |
| 106 | + <groupId>org.sonatype.plugins</groupId> |
| 107 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 108 | + <version>1.6.8</version> |
| 109 | + <extensions>true</extensions> |
| 110 | + <configuration> |
| 111 | + <serverId>ossrh</serverId> |
| 112 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 113 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 114 | + </configuration> |
| 115 | + </plugin> |
| 116 | + <plugin> |
| 117 | + <groupId>org.apache.maven.plugins</groupId> |
| 118 | + <artifactId>maven-source-plugin</artifactId> |
| 119 | + <version>2.2.1</version> |
| 120 | + <executions> |
| 121 | + <execution> |
| 122 | + <id>attach-sources</id> |
| 123 | + <goals> |
| 124 | + <goal>jar-no-fork</goal> |
| 125 | + </goals> |
| 126 | + </execution> |
| 127 | + </executions> |
| 128 | + </plugin> |
| 129 | + <plugin> |
| 130 | + <groupId>org.apache.maven.plugins</groupId> |
| 131 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 132 | + <version>2.9.1</version> |
| 133 | + <executions> |
| 134 | + <execution> |
| 135 | + <id>attach-javadocs</id> |
| 136 | + <goals> |
| 137 | + <goal>jar</goal> |
| 138 | + </goals> |
| 139 | + </execution> |
| 140 | + </executions> |
| 141 | + <configuration> |
| 142 | + <additionalparam>-Xdoclint:none</additionalparam> |
| 143 | + </configuration> |
| 144 | + </plugin> |
| 145 | + |
| 146 | + <plugin> |
| 147 | + <groupId>org.sonatype.plugins</groupId> |
| 148 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 149 | + <version>1.6.8</version> |
| 150 | + <extensions>true</extensions> |
| 151 | + <configuration> |
| 152 | + <serverId>ossrh</serverId> |
| 153 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 154 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 155 | + </configuration> |
| 156 | + </plugin> |
| 157 | + <plugin> |
| 158 | + |
106 | 159 | <artifactId>maven-compiler-plugin</artifactId> |
107 | 160 | <version>${maven-compiler-plugin.version}</version> |
108 | 161 | <configuration> |
|
112 | 165 | </plugins> |
113 | 166 | </build> |
114 | 167 |
|
| 168 | + <properties> |
| 169 | + <spring.framework>6.2.10</spring.framework> |
| 170 | + <apache.client.from.spring.version>5.5</apache.client.from.spring.version> |
| 171 | + <serializer.version>2.8.1</serializer.version> |
| 172 | + </properties> |
115 | 173 |
|
116 | 174 | <dependencies> |
117 | | - <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient --> |
118 | | - <dependency> |
119 | | - <groupId>org.apache.httpcomponents.client5</groupId> |
120 | | - <artifactId>httpclient5</artifactId> |
121 | | - <version>${httpclient.version}</version> |
122 | | - </dependency> |
| 175 | + <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient --> |
| 176 | + <dependency> |
| 177 | + <groupId>org.apache.httpcomponents.client5</groupId> |
| 178 | + <artifactId>httpclient5</artifactId> |
| 179 | + <version>${apache.client.from.spring.version}</version> |
| 180 | + </dependency> |
| 181 | + |
123 | 182 | <dependency> |
124 | 183 | <groupId>org.springframework</groupId> |
125 | 184 | <artifactId>spring-core</artifactId> |
|
135 | 194 | <artifactId>spring-web</artifactId> |
136 | 195 | <version>${spring.framework}</version> |
137 | 196 | </dependency> |
| 197 | + <dependency> |
| 198 | + <groupId>org.codehaus.jackson</groupId> |
| 199 | + <artifactId>jackson-mapper-asl</artifactId> |
| 200 | + <version>1.9.4</version> |
| 201 | + </dependency> |
138 | 202 | <!-- https://mvnrepository.com/artifact/commons-io/commons-io --> |
139 | 203 | <dependency> |
140 | 204 | <groupId>commons-io</groupId> |
|
191 | 255 | <version>${gson.version}</version> |
192 | 256 | <scope>compile</scope> |
193 | 257 | </dependency> |
| 258 | + |
| 259 | + <dependency> |
| 260 | + <groupId>junit</groupId> |
| 261 | + <artifactId>junit</artifactId> |
| 262 | + <version>4.13.1</version> |
| 263 | + </dependency> |
| 264 | + <dependency> |
| 265 | + <groupId>org.testng</groupId> |
| 266 | + <artifactId>testng</artifactId> |
| 267 | + <version>7.3.0</version> |
| 268 | + <scope>test</scope> |
| 269 | + </dependency> |
| 270 | + <dependency> |
| 271 | + <groupId>com.google.code.gson</groupId> |
| 272 | + <artifactId>gson</artifactId> |
| 273 | + <version>2.3.1</version> |
| 274 | + <scope>compile</scope> |
| 275 | + </dependency> |
| 276 | + |
| 277 | + <dependency> |
| 278 | + <groupId>com.azure</groupId> |
| 279 | + <artifactId>azure-core</artifactId> |
| 280 | + <version>1.55.4</version> |
| 281 | + </dependency> |
194 | 282 | <dependency> |
195 | | - <groupId>org.apache.httpcomponents</groupId> |
196 | | - <artifactId>httpmime</artifactId> |
197 | | - <version>${httpmime.version}</version> |
| 283 | + <groupId>com.azure</groupId> |
| 284 | + <artifactId>azure-identity</artifactId> |
| 285 | + <version>1.16.3</version> |
198 | 286 | </dependency> |
| 287 | + |
199 | 288 | <dependency> |
200 | | - <!-- JDK 11+ dependency --> |
201 | | - <groupId>jakarta.xml.ws</groupId> |
202 | | - <artifactId>jakarta.xml.ws-api</artifactId> |
203 | | - <version>${jakarta.xml.ws.version}</version> |
| 289 | + <groupId>javax.xml.ws</groupId> |
| 290 | + <artifactId>jaxws-api</artifactId> |
| 291 | + <version>2.3.1</version> <!-- Check for the latest version --> |
204 | 292 | </dependency> |
| 293 | + |
205 | 294 | <dependency> |
206 | | - <!-- JDK 11+ dependency --> |
207 | | - <groupId>com.sun.xml.ws</groupId> |
208 | | - <artifactId>jaxws-rt</artifactId> |
209 | | - <version>${jakarta.xml.ws.version}</version> |
210 | | - <scope>runtime</scope> |
| 295 | + <groupId>org.apache.commons</groupId> |
| 296 | + <artifactId>commons-lang3</artifactId> |
| 297 | + <version>3.18.0</version> |
211 | 298 | </dependency> |
212 | | - </dependencies> |
| 299 | + |
| 300 | + <dependency> |
| 301 | + <groupId>com.sun.xml.messaging.saaj</groupId> |
| 302 | + <artifactId>saaj-impl</artifactId> |
| 303 | + <version>1.5.3</version> |
| 304 | + <scope>test</scope> |
| 305 | + </dependency> |
| 306 | + |
| 307 | + </dependencies> |
213 | 308 |
|
214 | 309 | <profiles> |
215 | 310 | <profile> |
|
0 commit comments