|
1 |
| -<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/maven-v4_0_0.xsd"> |
2 |
| - <modelVersion>4.0.0</modelVersion> |
3 |
| - <groupId>info.glennengstrand</groupId> |
4 |
| - <artifactId>newsfeed-springboot</artifactId> |
5 |
| - <packaging>jar</packaging> |
6 |
| - <name>newsfeed-springboot</name> |
7 |
| - <version>1.0.0-SNAPSHOT</version> |
8 |
| - <properties> |
9 |
| - <java.version>1.8</java.version> |
10 |
| - <maven.compiler.source>${java.version}</maven.compiler.source> |
11 |
| - <maven.compiler.target>${java.version}</maven.compiler.target> |
12 |
| - <springfox-version>2.7.0</springfox-version> |
13 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
14 |
| - <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
15 |
| - </properties> |
16 |
| - <parent> |
17 |
| - <groupId>org.springframework.boot</groupId> |
18 |
| - <artifactId>spring-boot-starter-parent</artifactId> |
19 |
| - <version>2.1.0.RELEASE</version> |
20 |
| - </parent> |
21 |
| - <build> |
22 |
| - <sourceDirectory>src/main/java</sourceDirectory> |
23 |
| - <plugins> |
24 |
| - <plugin> |
25 |
| - <groupId>org.springframework.boot</groupId> |
26 |
| - <artifactId>spring-boot-maven-plugin</artifactId> |
27 |
| - <executions> |
28 |
| - <execution> |
29 |
| - <goals> |
30 |
| - <goal>repackage</goal> |
31 |
| - </goals> |
32 |
| - </execution> |
33 |
| - </executions> |
34 |
| - </plugin> |
35 |
| - <plugin> |
36 |
| - <groupId>org.apache.maven.plugins</groupId> |
37 |
| - <artifactId>maven-surefire-plugin</artifactId> |
38 |
| - <configuration> |
39 |
| - <useSystemClassLoader>false</useSystemClassLoader> |
40 |
| - </configuration> |
41 |
| - </plugin> |
42 |
| - </plugins> |
43 |
| - </build> |
44 |
| - <dependencies> |
45 |
| - <dependency> |
46 |
| - <groupId>org.springframework.boot</groupId> |
47 |
| - <artifactId>spring-boot-starter-web</artifactId> |
48 |
| - <exclusions> |
49 |
| - <exclusion> |
50 |
| - <groupId>org.springframework.boot</groupId> |
51 |
| - <artifactId>spring-boot-starter-tomcat</artifactId> |
52 |
| - </exclusion> |
53 |
| - </exclusions> |
54 |
| - </dependency> |
55 |
| - <dependency> |
56 |
| - <groupId>org.springframework.boot</groupId> |
57 |
| - <artifactId>spring-boot-starter-jetty</artifactId> |
58 |
| - </dependency> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + <parent> |
| 6 | + <groupId>org.springframework.boot</groupId> |
| 7 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 8 | + <version>3.4.1</version> |
| 9 | + <relativePath/> <!-- lookup parent from repository --> |
| 10 | + </parent> |
| 11 | + <groupId>info.glennengstrand</groupId> |
| 12 | + <artifactId>newsfeed-springboot</artifactId> |
| 13 | + <version>1.0.1-SNAPSHOT</version> |
| 14 | + <name>newsfeed-springboot</name> |
| 15 | + <description>feed 8 with the latest stable versions</description> |
| 16 | + <url/> |
| 17 | + <licenses> |
| 18 | + <license/> |
| 19 | + </licenses> |
| 20 | + <developers> |
| 21 | + <developer/> |
| 22 | + </developers> |
| 23 | + <scm> |
| 24 | + <connection/> |
| 25 | + <developerConnection/> |
| 26 | + <tag/> |
| 27 | + <url/> |
| 28 | + </scm> |
| 29 | + <properties> |
| 30 | + <java.version>17</java.version> |
| 31 | + </properties> |
| 32 | + <dependencies> |
| 33 | + <dependency> |
| 34 | + <groupId>org.springframework.boot</groupId> |
| 35 | + <artifactId>spring-boot-starter-data-cassandra</artifactId> |
| 36 | + </dependency> |
59 | 37 | <dependency>
|
60 | 38 | <groupId>org.springframework.boot</groupId>
|
61 | 39 | <artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
66 | 44 | </dependency>
|
67 | 45 | <dependency>
|
68 | 46 | <groupId>org.springframework.boot</groupId>
|
69 |
| - <artifactId>spring-boot-starter-data-cassandra</artifactId> |
| 47 | + <artifactId>spring-boot-starter-web</artifactId> |
70 | 48 | </dependency>
|
71 | 49 | <dependency>
|
72 | 50 | <groupId>org.elasticsearch.client</groupId>
|
73 | 51 | <artifactId>elasticsearch-rest-high-level-client</artifactId>
|
| 52 | + <version>7.17.26</version> |
74 | 53 | </dependency>
|
75 | 54 | <dependency>
|
76 | 55 | <groupId>org.elasticsearch</groupId>
|
77 | 56 | <artifactId>elasticsearch</artifactId>
|
| 57 | + <version>7.17.26</version> |
78 | 58 | </dependency>
|
79 | 59 | <dependency>
|
80 | 60 | <groupId>redis.clients</groupId>
|
81 | 61 | <artifactId>jedis</artifactId>
|
82 | 62 | </dependency>
|
83 | 63 | <dependency>
|
84 |
| - <groupId>mysql</groupId> |
85 |
| - <artifactId>mysql-connector-java</artifactId> |
| 64 | + <groupId>com.mysql</groupId> |
| 65 | + <artifactId>mysql-connector-j</artifactId> |
| 66 | + <version>8.3.0</version> |
86 | 67 | <scope>runtime</scope>
|
87 | 68 | </dependency>
|
88 | 69 | <dependency>
|
89 |
| - <groupId>com.codahale.metrics</groupId> |
90 |
| - <artifactId>metrics-core</artifactId> |
91 |
| - <version>3.0.2</version> |
92 |
| - <scope>runtime</scope> |
| 70 | + <groupId>org.springdoc</groupId> |
| 71 | + <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> |
| 72 | + <version>2.0.0</version> |
93 | 73 | </dependency>
|
94 |
| - <!--SpringFox dependencies --> |
95 |
| - <dependency> |
96 |
| - <groupId>io.springfox</groupId> |
97 |
| - <artifactId>springfox-swagger2</artifactId> |
98 |
| - <version>${springfox-version}</version> |
99 |
| - </dependency> |
100 |
| - <dependency> |
101 |
| - <groupId>io.springfox</groupId> |
102 |
| - <artifactId>springfox-swagger-ui</artifactId> |
103 |
| - <version>${springfox-version}</version> |
104 |
| - </dependency> |
105 | 74 |
|
106 |
| - <dependency> |
107 |
| - <groupId>com.github.joschi.jackson</groupId> |
108 |
| - <artifactId>jackson-datatype-threetenbp</artifactId> |
109 |
| - <version>2.6.4</version> |
110 |
| - </dependency> |
111 |
| - <!-- Bean Validation API support --> |
112 |
| - <dependency> |
113 |
| - <groupId>javax.validation</groupId> |
114 |
| - <artifactId>validation-api</artifactId> |
115 |
| - </dependency> |
116 |
| - <dependency> |
117 |
| - <groupId>org.springframework.boot</groupId> |
118 |
| - <artifactId>spring-boot-starter-test</artifactId> |
119 |
| - <scope>test</scope> |
120 |
| - </dependency> |
121 |
| - </dependencies> |
| 75 | + <dependency> |
| 76 | + <groupId>org.springframework.boot</groupId> |
| 77 | + <artifactId>spring-boot-starter-test</artifactId> |
| 78 | + <scope>test</scope> |
| 79 | + </dependency> |
| 80 | + </dependencies> |
| 81 | + |
| 82 | + <build> |
| 83 | + <plugins> |
| 84 | + <plugin> |
| 85 | + <groupId>org.springframework.boot</groupId> |
| 86 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 87 | + </plugin> |
| 88 | + </plugins> |
| 89 | + </build> |
| 90 | + |
122 | 91 | </project>
|
0 commit comments