Skip to content

Commit c20affa

Browse files
committed
release: 1.0.1.RELEASE
1 parent 2097fab commit c20affa

File tree

1 file changed

+150
-70
lines changed

1 file changed

+150
-70
lines changed

pom.xml

Lines changed: 150 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<groupId>group.rxcloud</groupId>
2323
<artifactId>capa-java-bom</artifactId>
2424
<packaging>pom</packaging>
25-
<version>1.0.0.RELEASE</version>
25+
<version>1.0.1.RELEASE</version>
2626
<name>capa-java-bom</name>
2727
<description>Capa Java BOM : collection of components needed for cloud native applications</description>
2828
<url>https://github.com/capa-cloud</url>
@@ -63,21 +63,40 @@
6363
<file.encoding>UTF-8</file.encoding>
6464
<maven.version>3.8.1</maven.version>
6565

66-
<!-- core -->
67-
<cloud-runtimes.version>1.15.RELEASE</cloud-runtimes.version>
68-
<reactor-core.version>3.3.22.RELEASE</reactor-core.version>
66+
<!-- log -->
6967
<slf4j.version>1.7.36</slf4j.version>
70-
<vavr.version>0.10.4</vavr.version>
71-
<vrml.version>1.0.8</vrml.version>
72-
<open.telemetry.version>1.9.0</open.telemetry.version>
73-
<open.telemetry.version.alpha>1.9.0-alpha</open.telemetry.version.alpha>
74-
<okhttp.version>4.9.1</okhttp.version>
75-
<kotlin-stdlib.version>1.4.10</kotlin-stdlib.version>
7668
<log4j.version>2.17.1</log4j.version>
7769
<logback.version>1.2.10</logback.version>
70+
<!-- jackson -->
7871
<jackson.version>2.13.2.2</jackson.version>
79-
<grpc.version>1.45.1</grpc.version>
72+
<!-- gson -->
8073
<gson.version>2.9.0</gson.version>
74+
<!-- aws sdk -->
75+
<aws-sdk.version>2.17.40</aws-sdk.version>
76+
<!-- spring framework -->
77+
<spring-boot.version>2.3.12.RELEASE</spring-boot.version>
78+
<!-- servlet -->
79+
<javax.servlet-api.version>3.1.0</javax.servlet-api.version>
80+
<!-- netty framework -->
81+
<netty.bom.version>4.1.68.Final</netty.bom.version>
82+
<!-- reactor -->
83+
<reactor-core.version>3.3.22.RELEASE</reactor-core.version>
84+
<!-- kotlin -->
85+
<okio.version>2.8.0</okio.version>
86+
<kotlin-stdlib.version>1.4.10</kotlin-stdlib.version>
87+
<!-- okhttp -->
88+
<okhttp.version>4.9.1</okhttp.version>
89+
<!-- grpc -->
90+
<grpc.version>1.19.0</grpc.version>
91+
<!-- cloud-runtimes -->
92+
<cloud-runtimes.version>1.16.RELEASE</cloud-runtimes.version>
93+
<!-- opentelemetry -->
94+
<open.telemetry.version>1.9.0</open.telemetry.version>
95+
<open.telemetry.version.alpha>1.9.0-alpha</open.telemetry.version.alpha>
96+
<!-- vavr -->
97+
<vavr.version>0.10.4</vavr.version>
98+
<!-- vrml -->
99+
<vrml.version>1.0.8</vrml.version>
81100

82101
<!-- test -->
83102
<junit.version>5.3.1</junit.version>
@@ -98,118 +117,179 @@
98117

99118
<dependencyManagement>
100119
<dependencies>
101-
<!-- cloud-runtimes-api -->
102-
<dependency>
103-
<groupId>group.rxcloud</groupId>
104-
<artifactId>cloud-runtimes-api</artifactId>
105-
<version>${cloud-runtimes.version}</version>
106-
<optional>true</optional>
107-
</dependency>
108-
<!-- reactor -->
109-
<dependency>
110-
<groupId>io.projectreactor</groupId>
111-
<artifactId>reactor-core</artifactId>
112-
<version>${reactor-core.version}</version>
113-
<optional>true</optional>
114-
</dependency>
120+
<!-- Log -->
115121
<!-- slf4j -->
116122
<dependency>
117123
<groupId>org.slf4j</groupId>
118124
<artifactId>slf4j-api</artifactId>
119125
<version>${slf4j.version}</version>
120-
<optional>true</optional>
121126
</dependency>
122127
<!-- log4j -->
123128
<!-- log4j-slf4j-impl and logback-classic cannot exist at the same time. -->
124129
<dependency>
125130
<groupId>org.apache.logging.log4j</groupId>
126131
<artifactId>log4j-core</artifactId>
127132
<version>${log4j.version}</version>
128-
<optional>true</optional>
133+
</dependency>
134+
<dependency>
135+
<groupId>org.apache.logging.log4j</groupId>
136+
<artifactId>log4j-api</artifactId>
137+
<version>${log4j.version}</version>
129138
</dependency>
130139
<!-- logback -->
131140
<!-- log4j-slf4j-impl and logback-classic cannot exist at the same time. -->
132141
<dependency>
133142
<groupId>ch.qos.logback</groupId>
134143
<artifactId>logback-core</artifactId>
135144
<version>${logback.version}</version>
136-
<optional>true</optional>
137145
</dependency>
138146
<dependency>
139147
<groupId>ch.qos.logback</groupId>
140148
<artifactId>logback-classic</artifactId>
141149
<version>${logback.version}</version>
142-
<optional>true</optional>
143150
</dependency>
144-
<!-- open-telemetry-api -->
151+
<!-- Serialize -->
152+
<dependency>
153+
<groupId>com.fasterxml.jackson.core</groupId>
154+
<artifactId>jackson-databind</artifactId>
155+
<version>${jackson.version}</version>
156+
</dependency>
157+
<!-- Gson -->
158+
<dependency>
159+
<groupId>com.google.code.gson</groupId>
160+
<artifactId>gson</artifactId>
161+
<version>${gson.version}</version>
162+
</dependency>
163+
<!-- Grpc dependencies -->
164+
<dependency>
165+
<groupId>io.grpc</groupId>
166+
<artifactId>grpc-protobuf</artifactId>
167+
<version>${grpc.version}</version>
168+
</dependency>
169+
<dependency>
170+
<groupId>io.grpc</groupId>
171+
<artifactId>grpc-api</artifactId>
172+
<version>${grpc.version}</version>
173+
</dependency>
174+
<!-- Reactor dependencies -->
175+
<dependency>
176+
<groupId>io.projectreactor</groupId>
177+
<artifactId>reactor-core</artifactId>
178+
<version>${reactor-core.version}</version>
179+
</dependency>
180+
<!-- Kotlin dependencies -->
181+
<dependency>
182+
<groupId>org.jetbrains.kotlin</groupId>
183+
<artifactId>kotlin-stdlib-common</artifactId>
184+
<version>${kotlin-stdlib.version}</version>
185+
</dependency>
186+
<dependency>
187+
<groupId>org.jetbrains.kotlin</groupId>
188+
<artifactId>kotlin-stdlib</artifactId>
189+
<version>${kotlin-stdlib.version}</version>
190+
</dependency>
191+
<dependency>
192+
<groupId>com.squareup.okio</groupId>
193+
<artifactId>okio</artifactId>
194+
<version>${okio.version}</version>
195+
</dependency>
196+
<!-- Okhttp -->
197+
<dependency>
198+
<groupId>com.squareup.okhttp3</groupId>
199+
<artifactId>okhttp</artifactId>
200+
<version>${okhttp.version}</version>
201+
</dependency>
202+
<!-- Open-telemetry-api -->
145203
<dependency>
146204
<groupId>io.opentelemetry</groupId>
147205
<artifactId>opentelemetry-api</artifactId>
148206
<version>${open.telemetry.version}</version>
149-
<optional>true</optional>
150207
</dependency>
151208
<dependency>
152209
<groupId>io.opentelemetry</groupId>
153210
<artifactId>opentelemetry-api-metrics</artifactId>
154211
<version>${open.telemetry.version.alpha}</version>
155-
<optional>true</optional>
156212
</dependency>
157-
<!-- vrml -->
158213
<dependency>
159-
<groupId>group.rxcloud</groupId>
160-
<artifactId>vrml</artifactId>
161-
<version>${vrml.version}</version>
162-
<type>pom</type>
163-
<scope>import</scope>
164-
<optional>true</optional>
214+
<groupId>io.opentelemetry</groupId>
215+
<artifactId>opentelemetry-sdk</artifactId>
216+
<version>${open.telemetry.version}</version>
165217
</dependency>
166-
<!-- vavr -->
218+
<dependency>
219+
<groupId>io.opentelemetry</groupId>
220+
<artifactId>opentelemetry-sdk-metrics</artifactId>
221+
<version>${open.telemetry.version.alpha}</version>
222+
</dependency>
223+
<!-- Vavr -->
167224
<dependency>
168225
<groupId>io.vavr</groupId>
169226
<artifactId>vavr</artifactId>
170227
<version>${vavr.version}</version>
171-
<optional>true</optional>
172228
</dependency>
173-
<!-- serialize -->
229+
<!-- Vrml -->
174230
<dependency>
175-
<groupId>com.fasterxml.jackson.core</groupId>
176-
<artifactId>jackson-databind</artifactId>
177-
<version>${jackson.version}</version>
178-
<optional>true</optional>
231+
<groupId>group.rxcloud</groupId>
232+
<artifactId>vrml-core</artifactId>
233+
<version>${vrml.version}</version>
179234
</dependency>
180-
<!-- grpc -->
181235
<dependency>
182-
<groupId>io.grpc</groupId>
183-
<artifactId>grpc-protobuf</artifactId>
184-
<version>${grpc.version}</version>
185-
<optional>true</optional>
236+
<groupId>group.rxcloud</groupId>
237+
<artifactId>vrml-error</artifactId>
238+
<version>${vrml.version}</version>
186239
</dependency>
187-
<!-- gson -->
240+
<!-- Cloud-runtimes-api -->
188241
<dependency>
189-
<groupId>com.google.code.gson</groupId>
190-
<artifactId>gson</artifactId>
191-
<version>${gson.version}</version>
192-
<optional>true</optional>
242+
<groupId>group.rxcloud</groupId>
243+
<artifactId>cloud-runtimes-api</artifactId>
244+
<version>${cloud-runtimes.version}</version>
193245
</dependency>
194-
<!-- okhttp -->
246+
<!-- Spring Boot -->
195247
<dependency>
196-
<groupId>com.squareup.okhttp3</groupId>
197-
<artifactId>okhttp</artifactId>
198-
<version>${okhttp.version}</version>
199-
<optional>true</optional>
248+
<groupId>org.springframework.boot</groupId>
249+
<artifactId>spring-boot</artifactId>
250+
<version>${spring-boot.version}</version>
200251
</dependency>
201-
<!-- kotlin -->
202252
<dependency>
203-
<groupId>org.jetbrains.kotlin</groupId>
204-
<artifactId>kotlin-stdlib</artifactId>
205-
<version>${kotlin-stdlib.version}</version>
206-
<optional>true</optional>
253+
<groupId>org.springframework.boot</groupId>
254+
<artifactId>spring-boot-autoconfigure</artifactId>
255+
<version>${spring-boot.version}</version>
207256
</dependency>
208257
<dependency>
209-
<groupId>org.jetbrains.kotlin</groupId>
210-
<artifactId>kotlin-stdlib-common</artifactId>
211-
<version>${kotlin-stdlib.version}</version>
212-
<optional>true</optional>
258+
<groupId>org.springframework.boot</groupId>
259+
<artifactId>spring-boot-starter</artifactId>
260+
<version>${spring-boot.version}</version>
261+
</dependency>
262+
<dependency>
263+
<groupId>org.springframework.boot</groupId>
264+
<artifactId>spring-boot-starter-tomcat</artifactId>
265+
<version>${spring-boot.version}</version>
266+
</dependency>
267+
<dependency>
268+
<groupId>org.springframework.boot</groupId>
269+
<artifactId>spring-boot-starter-web</artifactId>
270+
<version>${spring-boot.version}</version>
271+
</dependency>
272+
<dependency>
273+
<groupId>org.springframework.boot</groupId>
274+
<artifactId>spring-boot-starter-test</artifactId>
275+
<version>${spring-boot.version}</version>
276+
<scope>test</scope>
277+
</dependency>
278+
<!-- Netty framework dependencies -->
279+
<dependency>
280+
<groupId>io.netty</groupId>
281+
<artifactId>netty-bom</artifactId>
282+
<version>${netty.bom.version}</version>
283+
<type>pom</type>
284+
<scope>import</scope>
285+
</dependency>
286+
<!-- aws native s3 sdk v2 -->
287+
<dependency>
288+
<groupId>software.amazon.awssdk</groupId>
289+
<artifactId>bom</artifactId>
290+
<version>${aws-sdk.version}</version>
291+
<type>pom</type>
292+
<scope>import</scope>
213293
</dependency>
214294

215295
<!-- unit test -->

0 commit comments

Comments
 (0)