|
3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <parent> |
6 | | - <groupId>net.flaad</groupId> |
7 | | - <artifactId>surveillance-system</artifactId> |
8 | | - <version>1.0.0</version> |
| 6 | + <groupId>org.springframework.boot</groupId> |
| 7 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 8 | + <version>3.0.2</version> |
| 9 | + <relativePath/> <!-- lookup parent from repository --> |
9 | 10 | </parent> |
10 | 11 |
|
11 | 12 | <groupId>org.flaad</groupId> |
12 | 13 | <artifactId>deepstack-api-client</artifactId> |
13 | | - <version>1.2.0</version> |
| 14 | + <version>1.3.0</version> |
14 | 15 | <packaging>jar</packaging> |
15 | 16 |
|
16 | 17 | <url>https://flaad.org/</url> |
|
55 | 56 | <java.showWarnings>true</java.showWarnings> |
56 | 57 | <java.optimize>true</java.optimize> |
57 | 58 | <java.debug>false</java.debug> |
| 59 | + |
| 60 | + <!-- Library Versions --> |
| 61 | + <commons-io.version>2.11.0</commons-io.version> |
| 62 | + <feign-jackson.version>12.1</feign-jackson.version> |
| 63 | + <spring-cloud-openfeign.version>4.0.0</spring-cloud-openfeign.version> |
| 64 | + <spring-cloud-starter-contract-stub-runner.version>4.0.0</spring-cloud-starter-contract-stub-runner.version> |
| 65 | + <wiremock.version>2.27.2</wiremock.version> |
| 66 | + |
| 67 | + <!-- Build Properties --> |
| 68 | + <maven.version>3.5.0</maven.version> |
| 69 | + <maven.compiler.source>${java.version}</maven.compiler.source> |
| 70 | + <maven.compiler.target>${java.version}</maven.compiler.target> |
| 71 | + |
| 72 | + <enforcer.requireReleaseDeps.onlyWhenRelease>true</enforcer.requireReleaseDeps.onlyWhenRelease> |
| 73 | + <enforcer.searchTransitive>true</enforcer.searchTransitive> |
| 74 | + |
| 75 | + <checkstyle.version>10.6.0</checkstyle.version> |
| 76 | + <spring-javaformat-checkstyle.version>0.0.35</spring-javaformat-checkstyle.version> |
| 77 | + |
| 78 | + <git-commit-maven.plugin>3.0.1</git-commit-maven.plugin> |
| 79 | + <exec-maven.plugin>1.6.0</exec-maven.plugin> |
| 80 | + <maven-checkstyle.plugin>3.1.2</maven-checkstyle.plugin> |
| 81 | + <maven-dependency.plugin>3.3.0</maven-dependency.plugin> |
| 82 | + <maven-jacoco.plugin>0.8.8</maven-jacoco.plugin> |
| 83 | + <maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version> |
| 84 | + <sonar-maven.plugin>3.9.1.2184</sonar-maven.plugin> |
| 85 | + <dependency-check-maven.version>6.5.0</dependency-check-maven.version> |
58 | 86 | </properties> |
59 | 87 |
|
60 | 88 | <repositories> |
|
85 | 113 | </exclusion> |
86 | 114 | </exclusions> |
87 | 115 | </dependency> |
| 116 | + <dependency> |
| 117 | + <groupId>org.springframework</groupId> |
| 118 | + <artifactId>spring-webmvc</artifactId> |
| 119 | + </dependency> |
88 | 120 |
|
89 | 121 | <!-- Third Party --> |
90 | 122 | <dependency> |
|
0 commit comments