|
16 | 16 | <properties> |
17 | 17 | <java.version>17</java.version> |
18 | 18 | </properties> |
19 | | - <repositories> |
20 | | - <repository> |
21 | | - <id>spring-milestones</id> |
22 | | - <name>Spring Milestones</name> |
23 | | - <url>https://repo.spring.io/milestone</url> |
24 | | - <snapshots> |
25 | | - <enabled>false</enabled> |
26 | | - </snapshots> |
27 | | - </repository> |
28 | | - <repository> |
29 | | - <id>spring-snapshots</id> |
30 | | - <name>Spring Snapshots</name> |
31 | | - <url>https://repo.spring.io/snapshot</url> |
32 | | - <releases> |
33 | | - <enabled>false</enabled> |
34 | | - </releases> |
35 | | - </repository> |
36 | | - </repositories> |
37 | 19 | <dependencies> |
38 | 20 | <dependency> |
39 | 21 | <groupId>org.springframework.boot</groupId> |
40 | 22 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
41 | 23 | </dependency> |
42 | | - <dependency> |
43 | | - <groupId>org.springframework.boot</groupId> |
44 | | - <artifactId>spring-boot-starter-mail</artifactId> |
45 | | - </dependency> |
| 24 | + |
46 | 25 | <dependency> |
47 | 26 | <groupId>org.springframework.boot</groupId> |
48 | 27 | <artifactId>spring-boot-starter-security</artifactId> |
49 | 28 | </dependency> |
| 29 | + |
50 | 30 | <dependency> |
51 | 31 | <groupId>org.springframework.boot</groupId> |
52 | 32 | <artifactId>spring-boot-starter-web</artifactId> |
|
58 | 38 | <scope>runtime</scope> |
59 | 39 | <optional>true</optional> |
60 | 40 | </dependency> |
61 | | - <dependency> |
62 | | - <groupId>com.mysql</groupId> |
63 | | - <artifactId>mysql-connector-j</artifactId> |
64 | | - <scope>runtime</scope> |
65 | | - </dependency> |
| 41 | + |
66 | 42 | <dependency> |
67 | 43 | <groupId>org.projectlombok</groupId> |
68 | 44 | <artifactId>lombok</artifactId> |
69 | 45 | <optional>true</optional> |
70 | 46 | </dependency> |
| 47 | + |
71 | 48 | <dependency> |
72 | 49 | <groupId>org.springframework.boot</groupId> |
73 | 50 | <artifactId>spring-boot-starter-test</artifactId> |
74 | 51 | <scope>test</scope> |
75 | 52 | </dependency> |
| 53 | + |
76 | 54 | <dependency> |
77 | 55 | <groupId>org.springframework.security</groupId> |
78 | 56 | <artifactId>spring-security-test</artifactId> |
|
84 | 62 | <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> |
85 | 63 | <version>2.0.2</version> |
86 | 64 | </dependency> |
| 65 | + |
87 | 66 | <dependency> |
88 | 67 | <groupId>org.springframework.boot</groupId> |
89 | 68 | <artifactId>spring-boot-starter-validation</artifactId> |
|
94 | 73 | <artifactId>jjwt-api</artifactId> |
95 | 74 | <version>0.11.5</version> |
96 | 75 | </dependency> |
| 76 | + |
97 | 77 | <dependency> |
98 | 78 | <groupId>io.jsonwebtoken</groupId> |
99 | 79 | <artifactId>jjwt-impl</artifactId> |
100 | 80 | <version>0.11.5</version> |
101 | 81 | </dependency> |
| 82 | + |
102 | 83 | <dependency> |
103 | 84 | <groupId>io.jsonwebtoken</groupId> |
104 | 85 | <artifactId>jjwt-jackson</artifactId> |
105 | 86 | <version>0.11.5</version> |
106 | 87 | </dependency> |
| 88 | + |
107 | 89 | <dependency> |
108 | 90 | <groupId>org.mapstruct</groupId> |
109 | 91 | <artifactId>mapstruct</artifactId> |
110 | 92 | <version>1.6.2</version> |
111 | 93 | </dependency> |
| 94 | + |
112 | 95 | <dependency> |
113 | 96 | <groupId>org.mapstruct</groupId> |
114 | 97 | <artifactId>mapstruct-processor</artifactId> |
115 | 98 | <version>1.6.2</version> |
116 | 99 | <scope>provided</scope> |
117 | 100 | </dependency> |
| 101 | + |
118 | 102 | <dependency> |
119 | 103 | <groupId>io.micrometer</groupId> |
120 | 104 | <artifactId>micrometer-tracing-bridge-brave</artifactId> |
121 | 105 | </dependency> |
| 106 | + |
122 | 107 | <dependency> |
123 | 108 | <groupId>io.zipkin.reporter2</groupId> |
124 | 109 | <artifactId>zipkin-reporter-brave</artifactId> |
125 | 110 | </dependency> |
| 111 | + |
126 | 112 | <dependency> |
127 | 113 | <groupId>io.micrometer</groupId> |
128 | 114 | <artifactId>micrometer-registry-prometheus</artifactId> |
129 | 115 | <scope>runtime</scope> |
130 | 116 | </dependency> |
| 117 | + |
131 | 118 | <dependency> |
132 | 119 | <groupId>com.github.loki4j</groupId> |
133 | 120 | <artifactId>loki-logback-appender</artifactId> |
134 | 121 | <version>1.5.2</version> |
135 | 122 | </dependency> |
| 123 | + |
136 | 124 | <dependency> |
137 | 125 | <groupId>org.springframework.boot</groupId> |
138 | 126 | <artifactId>spring-boot-starter-actuator</artifactId> |
139 | 127 | </dependency> |
| 128 | + |
140 | 129 | <dependency> |
141 | 130 | <groupId>org.springframework.boot</groupId> |
142 | 131 | <artifactId>spring-boot-starter-data-redis</artifactId> |
143 | 132 | </dependency> |
| 133 | + |
144 | 134 | <dependency> |
145 | 135 | <groupId>org.springframework.ai</groupId> |
146 | 136 | <artifactId>spring-ai-openai-spring-boot-starter</artifactId> |
147 | 137 | </dependency> |
148 | 138 |
|
| 139 | + <dependency> |
| 140 | + <groupId>org.springframework.ai</groupId> |
| 141 | + <artifactId>spring-ai-pgvector-store-spring-boot-starter</artifactId> |
| 142 | + <version>1.0.0-M6</version> |
| 143 | + </dependency> |
| 144 | + |
| 145 | + <dependency> |
| 146 | + <groupId>org.postgresql</groupId> |
| 147 | + <artifactId>postgresql</artifactId> |
| 148 | + <scope>runtime</scope> |
| 149 | + </dependency> |
| 150 | + |
149 | 151 | </dependencies> |
150 | 152 | <dependencyManagement> |
151 | 153 | <dependencies> |
152 | 154 | <dependency> |
153 | 155 | <groupId>org.springframework.ai</groupId> |
154 | 156 | <artifactId>spring-ai-bom</artifactId> |
155 | | - <version>1.0.0-SNAPSHOT</version> |
| 157 | + <version>1.0.0-M6</version> |
156 | 158 | <type>pom</type> |
157 | 159 | <scope>import</scope> |
158 | 160 | </dependency> |
|
0 commit comments