|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" |
3 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 3 | <modelVersion>4.0.0</modelVersion> |
6 | 4 |
|
7 | 5 | <groupId>com.contentstack.sdk</groupId> |
8 | 6 | <artifactId>utils</artifactId> |
9 | | - <version>1.0.0-SNAPSHOT</version> |
| 7 | + <version>1.1.1-SNAPSHOT</version> |
10 | 8 | <packaging>jar</packaging> |
11 | 9 | <name>Contentstack-utils</name> |
12 | 10 | <description>Java Utils SDK for Contentstack Content Delivery API, Contentstack is a headless CMS with an API-first approach</description> |
13 | 11 | <url>https://www.***REMOVED***</url> |
14 | 12 |
|
15 | 13 | <properties> |
16 | | - <util.version>1.0.0-SNAPSHOT</util.version> |
| 14 | + <util.version>1.1.1-SNAPSHOT</util.version> |
17 | 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
18 | 16 | <project.reporting.sourceEncoding>UTF-8</project.reporting.sourceEncoding> |
19 | 17 | <maven.compiler.source>1.8</maven.compiler.source> |
|
23 | 21 | <surefire-report-plugin.version>2.22.0</surefire-report-plugin.version> |
24 | 22 | <maven-source-plugin.version>2.2.1</maven-source-plugin.version> |
25 | 23 | <maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version> |
26 | | - <kotlin-test-junit.version>1.4.10</kotlin-test-junit.version> |
27 | | - <junit.version>4.13.1</junit.version> |
| 24 | + <kotlin-test-junit.version>1.6.21</kotlin-test-junit.version> |
| 25 | + <junit.version>4.13.2</junit.version> |
| 26 | + <jsoup.version>1.14.3</jsoup.version> |
| 27 | + <json.simple.version>1.1.1</json.simple.version> |
28 | 28 | <maven-site-plugin.version>3.3</maven-site-plugin.version> |
29 | 29 | <maven-gpg-plugin.version>1.5</maven-gpg-plugin.version> |
30 | 30 | <nexus-staging-maven-plugin.version>1.6.7</nexus-staging-maven-plugin.version> |
|
86 | 86 | <groupId>org.jetbrains.kotlin</groupId> |
87 | 87 | <artifactId>kotlin-stdlib-jdk8</artifactId> |
88 | 88 | <version>${kotlin-test-junit.version}</version> |
| 89 | + <scope>compile</scope> |
89 | 90 | </dependency> |
90 | 91 | <dependency> |
91 | 92 | <groupId>org.jetbrains.kotlin</groupId> |
|
96 | 97 | <dependency> |
97 | 98 | <groupId>org.jsoup</groupId> |
98 | 99 | <artifactId>jsoup</artifactId> |
99 | | - <version>1.14.2</version> |
| 100 | + <version>${jsoup.version}</version> |
| 101 | + <scope>compile</scope> |
100 | 102 | </dependency> |
101 | 103 | <dependency> |
102 | 104 | <groupId>org.json</groupId> |
103 | 105 | <artifactId>json</artifactId> |
104 | | - <version>20180130</version> |
| 106 | + <version>20220320</version> |
| 107 | + <scope>compile</scope> |
| 108 | + </dependency> |
| 109 | + <dependency> |
| 110 | + <groupId>com.googlecode.json-simple</groupId> |
| 111 | + <artifactId>json-simple</artifactId> |
| 112 | + <version>${json.simple.version}</version> |
| 113 | + <scope>compile</scope> |
| 114 | + </dependency> |
| 115 | + <dependency> |
| 116 | + <groupId>org.springframework</groupId> |
| 117 | + <artifactId>spring-web</artifactId> |
| 118 | + <version>5.3.20</version> |
| 119 | + <scope>compile</scope> |
105 | 120 | </dependency> |
106 | 121 | </dependencies> |
107 | 122 |
|
108 | 123 | <build> |
109 | | - <sourceDirectory>src/main/java</sourceDirectory> |
110 | 124 | <plugins> |
111 | 125 | <plugin> |
112 | 126 | <groupId>org.jacoco</groupId> |
|
235 | 249 | <goals>deploy</goals> |
236 | 250 | </configuration> |
237 | 251 | </plugin> |
238 | | - |
239 | 252 | <plugin> |
240 | 253 | <groupId>org.jetbrains.kotlin</groupId> |
241 | 254 | <artifactId>kotlin-maven-plugin</artifactId> |
242 | 255 | <version>${kotlin-test-junit.version}</version> |
243 | 256 | <executions> |
244 | 257 | <execution> |
| 258 | + <?m2e execute onConfiguration,onIncremental?> |
245 | 259 | <id>compile</id> |
246 | 260 | <phase>process-sources</phase> |
247 | 261 | <goals> |
|
250 | 264 | </execution> |
251 | 265 | </executions> |
252 | 266 | </plugin> |
| 267 | + |
253 | 268 | </plugins> |
254 | 269 | </build> |
255 | 270 |
|
|
0 commit comments