|
1018 | 1018 |
|
1019 | 1019 | <dependencyManagement> |
1020 | 1020 | <dependencies> |
| 1021 | + |
1021 | 1022 | <dependency> |
1022 | 1023 | <groupId>io.projectreactor</groupId> |
1023 | 1024 | <artifactId>reactor-bom</artifactId> |
1024 | 1025 | <version>${reactor}</version> |
1025 | 1026 | <type>pom</type> |
1026 | 1027 | <scope>import</scope> |
1027 | 1028 | </dependency> |
| 1029 | + |
1028 | 1030 | <dependency> |
1029 | 1031 | <groupId>io.micrometer</groupId> |
1030 | 1032 | <artifactId>micrometer-bom</artifactId> |
1031 | 1033 | <version>${micrometer}</version> |
1032 | 1034 | <type>pom</type> |
1033 | 1035 | <scope>import</scope> |
1034 | 1036 | </dependency> |
| 1037 | + |
1035 | 1038 | <dependency> |
1036 | 1039 | <groupId>io.micrometer</groupId> |
1037 | 1040 | <artifactId>micrometer-tracing-bom</artifactId> |
1038 | 1041 | <version>${micrometer-tracing}</version> |
1039 | 1042 | <type>pom</type> |
1040 | 1043 | <scope>import</scope> |
1041 | 1044 | </dependency> |
| 1045 | + |
1042 | 1046 | <dependency> |
1043 | 1047 | <groupId>org.springframework</groupId> |
1044 | 1048 | <artifactId>spring-framework-bom</artifactId> |
1045 | 1049 | <version>${spring}</version> |
1046 | 1050 | <type>pom</type> |
1047 | 1051 | <scope>import</scope> |
1048 | 1052 | </dependency> |
| 1053 | + |
1049 | 1054 | <dependency> |
1050 | 1055 | <groupId>org.jetbrains.kotlin</groupId> |
1051 | 1056 | <artifactId>kotlin-bom</artifactId> |
1052 | 1057 | <version>${kotlin}</version> |
1053 | 1058 | <type>pom</type> |
1054 | 1059 | <scope>import</scope> |
1055 | 1060 | </dependency> |
| 1061 | + |
| 1062 | + <dependency> |
| 1063 | + <groupId>org.jetbrains.kotlin</groupId> |
| 1064 | + <artifactId>kotlin-stdlib</artifactId> |
| 1065 | + <version>${kotlin}</version> |
| 1066 | + <exclusions> |
| 1067 | + <exclusion> |
| 1068 | + <groupId>org.jetbrains</groupId> |
| 1069 | + <artifactId>annotations</artifactId> |
| 1070 | + </exclusion> |
| 1071 | + </exclusions> |
| 1072 | + </dependency> |
| 1073 | + |
1056 | 1074 | <dependency> |
1057 | 1075 | <groupId>org.jetbrains.kotlinx</groupId> |
1058 | 1076 | <artifactId>kotlinx-coroutines-bom</artifactId> |
1059 | 1077 | <version>${kotlin-coroutines}</version> |
1060 | 1078 | <type>pom</type> |
1061 | 1079 | <scope>import</scope> |
1062 | 1080 | </dependency> |
| 1081 | + |
| 1082 | + <dependency> |
| 1083 | + <groupId>org.jetbrains.kotlinx</groupId> |
| 1084 | + <artifactId>kotlinx-coroutines-core-jvm</artifactId> |
| 1085 | + <version>${kotlin-coroutines}</version> |
| 1086 | + <exclusions> |
| 1087 | + <exclusion> |
| 1088 | + <groupId>org.jetbrains</groupId> |
| 1089 | + <artifactId>annotations</artifactId> |
| 1090 | + </exclusion> |
| 1091 | + </exclusions> |
| 1092 | + </dependency> |
| 1093 | + |
| 1094 | + <dependency> |
| 1095 | + <groupId>org.jetbrains.kotlinx</groupId> |
| 1096 | + <artifactId>kotlinx-coroutines-test-jvm</artifactId> |
| 1097 | + <version>${kotlin-coroutines}</version> |
| 1098 | + <exclusions> |
| 1099 | + <exclusion> |
| 1100 | + <groupId>org.jetbrains</groupId> |
| 1101 | + <artifactId>annotations</artifactId> |
| 1102 | + </exclusion> |
| 1103 | + </exclusions> |
| 1104 | + </dependency> |
| 1105 | + |
1063 | 1106 | <dependency> |
1064 | 1107 | <groupId>com.fasterxml.jackson.core</groupId> |
1065 | 1108 | <artifactId>jackson-core</artifactId> |
1066 | 1109 | <version>${jackson}</version> |
1067 | 1110 | </dependency> |
| 1111 | + |
1068 | 1112 | <dependency> |
1069 | 1113 | <groupId>com.fasterxml.jackson.core</groupId> |
1070 | 1114 | <artifactId>jackson-databind</artifactId> |
|
1075 | 1119 | <artifactId>jackson-datatype-jdk8</artifactId> |
1076 | 1120 | <version>${jackson}</version> |
1077 | 1121 | </dependency> |
| 1122 | + |
1078 | 1123 | <dependency> |
1079 | 1124 | <groupId>com.fasterxml.jackson.datatype</groupId> |
1080 | 1125 | <artifactId>jackson-datatype-jsr310</artifactId> |
1081 | 1126 | <version>${jackson}</version> |
1082 | 1127 | </dependency> |
| 1128 | + |
1083 | 1129 | <dependency> |
1084 | 1130 | <groupId>com.fasterxml.jackson.datatype</groupId> |
1085 | 1131 | <artifactId>jackson-datatype-hibernate6</artifactId> |
1086 | 1132 | <version>${jackson}</version> |
1087 | 1133 | </dependency> |
| 1134 | + |
1088 | 1135 | <dependency> |
1089 | 1136 | <groupId>tools.jackson</groupId> |
1090 | 1137 | <artifactId>jackson-bom</artifactId> |
1091 | 1138 | <version>${jackson3}</version> |
1092 | 1139 | <type>pom</type> |
1093 | 1140 | <scope>import</scope> |
1094 | 1141 | </dependency> |
| 1142 | + |
1095 | 1143 | <dependency> |
1096 | 1144 | <groupId>org.junit</groupId> |
1097 | 1145 | <artifactId>junit-bom</artifactId> |
1098 | 1146 | <version>${junit}</version> |
1099 | 1147 | <type>pom</type> |
1100 | 1148 | <scope>import</scope> |
1101 | 1149 | </dependency> |
| 1150 | + |
| 1151 | + <dependency> |
| 1152 | + <groupId>org.testcontainers</groupId> |
| 1153 | + <artifactId>testcontainers-bom</artifactId> |
| 1154 | + <version>${testcontainers}</version> |
| 1155 | + <type>pom</type> |
| 1156 | + <scope>import</scope> |
| 1157 | + </dependency> |
| 1158 | + |
| 1159 | + <dependency> |
| 1160 | + <groupId>org.testcontainers</groupId> |
| 1161 | + <artifactId>testcontainers</artifactId> |
| 1162 | + <version>${testcontainers}</version> |
| 1163 | + <scope>test</scope> |
| 1164 | + <exclusions> |
| 1165 | + <exclusion> |
| 1166 | + <groupId>org.jetbrains</groupId> |
| 1167 | + <artifactId>annotations</artifactId> |
| 1168 | + </exclusion> |
| 1169 | + </exclusions> |
| 1170 | + </dependency> |
| 1171 | + |
1102 | 1172 | <dependency> |
1103 | 1173 | <groupId>jakarta.enterprise</groupId> |
1104 | 1174 | <artifactId>jakarta.enterprise.cdi-api</artifactId> |
1105 | 1175 | <version>${cdi}</version> |
1106 | 1176 | <optional>true</optional> |
1107 | 1177 | </dependency> |
| 1178 | + |
1108 | 1179 | <dependency> |
1109 | 1180 | <groupId>jakarta.servlet</groupId> |
1110 | 1181 | <artifactId>jakarta.servlet-api</artifactId> |
1111 | 1182 | <version>${servlet-api}</version> |
1112 | 1183 | <optional>true</optional> |
1113 | 1184 | </dependency> |
| 1185 | + |
1114 | 1186 | <dependency> |
1115 | 1187 | <groupId>jakarta.validation</groupId> |
1116 | 1188 | <artifactId>jakarta.validation-api</artifactId> |
1117 | 1189 | <version>${validation}</version> |
1118 | 1190 | </dependency> |
| 1191 | + |
1119 | 1192 | <dependency> |
1120 | 1193 | <groupId>org.apache.openwebbeans</groupId> |
1121 | 1194 | <artifactId>openwebbeans-se</artifactId> |
1122 | 1195 | <version>${webbeans}</version> |
1123 | 1196 | <scope>test</scope> |
1124 | 1197 | </dependency> |
| 1198 | + |
1125 | 1199 | <dependency> |
1126 | 1200 | <groupId>org.apache.openwebbeans</groupId> |
1127 | 1201 | <artifactId>openwebbeans-spi</artifactId> |
1128 | 1202 | <version>${webbeans}</version> |
1129 | 1203 | <scope>test</scope> |
1130 | 1204 | </dependency> |
| 1205 | + |
1131 | 1206 | <dependency> |
1132 | 1207 | <groupId>org.openjdk.jmh</groupId> |
1133 | 1208 | <artifactId>jmh-generator-annprocess</artifactId> |
1134 | 1209 | <scope>test</scope> |
1135 | 1210 | <version>${jmh}</version> |
1136 | 1211 | </dependency> |
| 1212 | + |
1137 | 1213 | </dependencies> |
1138 | 1214 | </dependencyManagement> |
1139 | 1215 |
|
|
0 commit comments