Skip to content

Commit 415cd05

Browse files
committed
Release 1.0.0
1 parent 0201fba commit 415cd05

File tree

2 files changed

+211
-1
lines changed

2 files changed

+211
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>org.springframework.experimental</groupId>
77
<artifactId>r2dbc-micrometer-spring-boot</artifactId>
8-
<version>1.0.0-SNAPSHOT</version>
8+
<version>1.0.0</version>
99
<name>r2dbc-micrometer-spring-boot</name>
1010
<description>Spring Boot Auto Configuration for R2DBC Observation</description>
1111
<properties>

pom.xml.versionsBackup

Lines changed: 210 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,210 @@
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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<groupId>org.springframework.experimental</groupId>
7+
<artifactId>r2dbc-micrometer-spring-boot</artifactId>
8+
<version>1.0.0-SNAPSHOT</version>
9+
<name>r2dbc-micrometer-spring-boot</name>
10+
<description>Spring Boot Auto Configuration for R2DBC Observation</description>
11+
<properties>
12+
<java.version>17</java.version>
13+
<maven.compiler.release>17</maven.compiler.release>
14+
15+
<!-- plugins -->
16+
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
17+
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
18+
<maven-javadoc-plugin.version>3.4.1</maven-javadoc-plugin.version>
19+
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
20+
<spring-javaformat.version>0.0.35</spring-javaformat.version>
21+
22+
<spring-boot.version>3.0.0</spring-boot.version>
23+
<r2dbc-proxy.version>1.1.0.RELEASE</r2dbc-proxy.version>
24+
<micrometer-bom.version>1.10.2</micrometer-bom.version>
25+
<micrometer-tracing-bom.version>1.0.0</micrometer-tracing-bom.version>
26+
</properties>
27+
28+
<licenses>
29+
<license>
30+
<name>Apache License 2.0</name>
31+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
32+
<distribution>repo</distribution>
33+
</license>
34+
</licenses>
35+
<developers>
36+
<developer>
37+
<name>Tadaya Tsuyukubo</name>
38+
<email>tadaya@ttddyy.net</email>
39+
</developer>
40+
</developers>
41+
<scm>
42+
<connection>scm:git:https://github.com/spring-projects-experimental/r2dbc-micrometer-spring-boot</connection>
43+
<url>https://github.com/spring-projects-experimental/r2dbc-micrometer-spring-boot</url>
44+
</scm>
45+
46+
<distributionManagement>
47+
<repository>
48+
<id>spring</id>
49+
<url>https://repo.spring.io/release</url>
50+
</repository>
51+
<snapshotRepository>
52+
<id>spring</id>
53+
<url>https://repo.spring.io/snapshot</url>
54+
</snapshotRepository>
55+
</distributionManagement>
56+
57+
<dependencyManagement>
58+
<dependencies>
59+
<dependency>
60+
<groupId>org.springframework.boot</groupId>
61+
<artifactId>spring-boot-dependencies</artifactId>
62+
<version>${spring-boot.version}</version>
63+
<type>pom</type>
64+
<scope>import</scope>
65+
</dependency>
66+
</dependencies>
67+
</dependencyManagement>
68+
69+
<build>
70+
<plugins>
71+
<plugin>
72+
<groupId>io.spring.javaformat</groupId>
73+
<artifactId>spring-javaformat-maven-plugin</artifactId>
74+
<version>${spring-javaformat.version}</version>
75+
</plugin>
76+
<plugin>
77+
<groupId>org.apache.maven.plugins</groupId>
78+
<artifactId>maven-surefire-plugin</artifactId>
79+
<version>${maven-surefire-plugin.version}</version>
80+
</plugin>
81+
<plugin>
82+
<groupId>org.apache.maven.plugins</groupId>
83+
<artifactId>maven-compiler-plugin</artifactId>
84+
<version>${maven-compiler-plugin.version}</version>
85+
</plugin>
86+
<plugin>
87+
<groupId>org.apache.maven.plugins</groupId>
88+
<artifactId>maven-javadoc-plugin</artifactId>
89+
<version>${maven-javadoc-plugin.version}</version>
90+
</plugin>
91+
<plugin>
92+
<groupId>org.apache.maven.plugins</groupId>
93+
<artifactId>maven-source-plugin</artifactId>
94+
<version>${maven-source-plugin.version}</version>
95+
</plugin>
96+
</plugins>
97+
</build>
98+
99+
<dependencies>
100+
<dependency>
101+
<groupId>io.r2dbc</groupId>
102+
<artifactId>r2dbc-proxy</artifactId>
103+
<version>${r2dbc-proxy.version}</version>
104+
</dependency>
105+
<dependency>
106+
<groupId>org.springframework.boot</groupId>
107+
<artifactId>spring-boot-autoconfigure</artifactId>
108+
</dependency>
109+
<dependency>
110+
<groupId>org.springframework.boot</groupId>
111+
<artifactId>spring-boot-actuator-autoconfigure</artifactId>
112+
</dependency>
113+
<dependency>
114+
<groupId>org.springframework.boot</groupId>
115+
<artifactId>spring-boot-autoconfigure-processor</artifactId>
116+
<optional>true</optional>
117+
</dependency>
118+
<dependency>
119+
<groupId>org.springframework.boot</groupId>
120+
<artifactId>spring-boot-configuration-processor</artifactId>
121+
<optional>true</optional>
122+
</dependency>
123+
<dependency>
124+
<groupId>io.micrometer</groupId>
125+
<artifactId>micrometer-core</artifactId>
126+
</dependency>
127+
128+
<!-- for Test -->
129+
<dependency>
130+
<groupId>org.springframework.boot</groupId>
131+
<artifactId>spring-boot-starter-test</artifactId>
132+
<scope>test</scope>
133+
</dependency>
134+
<dependency>
135+
<groupId>org.springframework</groupId>
136+
<artifactId>spring-r2dbc</artifactId>
137+
<scope>test</scope>
138+
</dependency>
139+
<dependency>
140+
<groupId>io.r2dbc</groupId>
141+
<artifactId>r2dbc-h2</artifactId>
142+
<scope>test</scope>
143+
</dependency>
144+
<dependency>
145+
<groupId>com.h2database</groupId>
146+
<artifactId>h2</artifactId>
147+
<scope>test</scope>
148+
</dependency>
149+
150+
<!-- for Integration Test -->
151+
<dependency>
152+
<groupId>io.micrometer</groupId>
153+
<artifactId>micrometer-tracing-bridge-brave</artifactId>
154+
<scope>test</scope>
155+
</dependency>
156+
<dependency>
157+
<groupId>io.micrometer</groupId>
158+
<artifactId>micrometer-test</artifactId>
159+
<scope>test</scope>
160+
</dependency>
161+
<dependency>
162+
<groupId>io.zipkin.brave</groupId>
163+
<artifactId>brave-tests</artifactId>
164+
<scope>test</scope>
165+
</dependency>
166+
<dependency>
167+
<groupId>io.micrometer</groupId>
168+
<artifactId>micrometer-tracing-test</artifactId>
169+
<scope>test</scope>
170+
</dependency>
171+
</dependencies>
172+
173+
<repositories>
174+
<repository>
175+
<id>spring-milestones</id>
176+
<name>Spring Milestones</name>
177+
<url>https://repo.spring.io/milestone</url>
178+
<snapshots>
179+
<enabled>false</enabled>
180+
</snapshots>
181+
</repository>
182+
<repository>
183+
<id>spring-snapshots</id>
184+
<name>Spring Snapshots</name>
185+
<url>https://repo.spring.io/snapshot</url>
186+
<releases>
187+
<enabled>false</enabled>
188+
</releases>
189+
</repository>
190+
</repositories>
191+
<pluginRepositories>
192+
<pluginRepository>
193+
<id>spring-milestones</id>
194+
<name>Spring Milestones</name>
195+
<url>https://repo.spring.io/milestone</url>
196+
<snapshots>
197+
<enabled>false</enabled>
198+
</snapshots>
199+
</pluginRepository>
200+
<pluginRepository>
201+
<id>spring-snapshots</id>
202+
<name>Spring Snapshots</name>
203+
<url>https://repo.spring.io/snapshot</url>
204+
<releases>
205+
<enabled>false</enabled>
206+
</releases>
207+
</pluginRepository>
208+
</pluginRepositories>
209+
210+
</project>

0 commit comments

Comments
 (0)