|
30 | 30 | <name>S3Mock - Integration Tests</name> |
31 | 31 |
|
32 | 32 | <dependencies> |
| 33 | + <dependency> |
| 34 | + <groupId>aws.sdk.kotlin</groupId> |
| 35 | + <artifactId>s3-jvm</artifactId> |
| 36 | + <scope>test</scope> |
| 37 | + </dependency> |
33 | 38 | <dependency> |
34 | 39 | <groupId>com.adobe.testing</groupId> |
35 | 40 | <artifactId>s3mock</artifactId> |
|
48 | 53 | </exclusion> |
49 | 54 | </exclusions> |
50 | 55 | </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>org.apache.httpcomponents</groupId> |
| 58 | + <artifactId>httpclient</artifactId> |
| 59 | + <scope>test</scope> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>org.apache.httpcomponents</groupId> |
| 63 | + <artifactId>httpcore</artifactId> |
| 64 | + <scope>test</scope> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>org.apache.httpcomponents</groupId> |
| 68 | + <artifactId>httpmime</artifactId> |
| 69 | + <scope>test</scope> |
| 70 | + </dependency> |
51 | 71 | <dependency> |
52 | 72 | <groupId>org.assertj</groupId> |
53 | 73 | <artifactId>assertj-core</artifactId> |
|
58 | 78 | <artifactId>awaitility</artifactId> |
59 | 79 | <scope>test</scope> |
60 | 80 | </dependency> |
| 81 | + <dependency> |
| 82 | + <groupId>org.jetbrains.kotlin</groupId> |
| 83 | + <artifactId>kotlin-reflect</artifactId> |
| 84 | + <version>${kotlin.version}</version> |
| 85 | + <scope>test</scope> |
| 86 | + </dependency> |
61 | 87 | <!-- Force Kotlin stdlib alignment to match aws-sdk-kotlin 1.5.x requirements --> |
62 | 88 | <dependency> |
63 | 89 | <groupId>org.jetbrains.kotlin</groupId> |
|
67 | 93 | </dependency> |
68 | 94 | <dependency> |
69 | 95 | <groupId>org.jetbrains.kotlin</groupId> |
70 | | - <artifactId>kotlin-reflect</artifactId> |
71 | | - <version>${kotlin.version}</version> |
| 96 | + <artifactId>kotlin-test-junit</artifactId> |
72 | 97 | <scope>test</scope> |
73 | 98 | </dependency> |
74 | 99 | <!-- Force Kotlin coroutines alignment to match aws-sdk-kotlin 1.5.x requirements --> |
|
84 | 109 | <version>${kotlin-coroutines.version}</version> |
85 | 110 | <scope>test</scope> |
86 | 111 | </dependency> |
87 | | - <dependency> |
88 | | - <groupId>org.jetbrains.kotlin</groupId> |
89 | | - <artifactId>kotlin-test-junit</artifactId> |
90 | | - <scope>test</scope> |
91 | | - </dependency> |
92 | 112 | <dependency> |
93 | 113 | <groupId>org.junit.jupiter</groupId> |
94 | 114 | <artifactId>junit-jupiter-api</artifactId> |
|
111 | 131 | </dependency> |
112 | 132 | <dependency> |
113 | 133 | <groupId>software.amazon.awssdk</groupId> |
114 | | - <artifactId>aws-query-protocol</artifactId> |
115 | | - <scope>test</scope> |
116 | | - </dependency> |
117 | | - <dependency> |
118 | | - <groupId>software.amazon.awssdk</groupId> |
119 | | - <artifactId>aws-xml-protocol</artifactId> |
| 134 | + <artifactId>aws-crt-client</artifactId> |
120 | 135 | <scope>test</scope> |
121 | 136 | </dependency> |
122 | 137 | <dependency> |
123 | 138 | <groupId>software.amazon.awssdk</groupId> |
124 | | - <artifactId>s3</artifactId> |
| 139 | + <artifactId>aws-query-protocol</artifactId> |
125 | 140 | <scope>test</scope> |
126 | 141 | </dependency> |
127 | 142 | <dependency> |
128 | 143 | <groupId>software.amazon.awssdk</groupId> |
129 | | - <artifactId>url-connection-client</artifactId> |
| 144 | + <artifactId>aws-xml-protocol</artifactId> |
130 | 145 | <scope>test</scope> |
131 | 146 | </dependency> |
132 | 147 | <dependency> |
133 | 148 | <groupId>software.amazon.awssdk</groupId> |
134 | | - <artifactId>aws-crt-client</artifactId> |
| 149 | + <artifactId>s3</artifactId> |
135 | 150 | <scope>test</scope> |
136 | 151 | </dependency> |
137 | 152 | <dependency> |
|
140 | 155 | <scope>test</scope> |
141 | 156 | </dependency> |
142 | 157 | <dependency> |
143 | | - <groupId>aws.sdk.kotlin</groupId> |
144 | | - <artifactId>s3-jvm</artifactId> |
145 | | - <scope>test</scope> |
146 | | - </dependency> |
147 | | - <dependency> |
148 | | - <groupId>org.apache.httpcomponents</groupId> |
149 | | - <artifactId>httpclient</artifactId> |
150 | | - <scope>test</scope> |
151 | | - </dependency> |
152 | | - <dependency> |
153 | | - <groupId>org.apache.httpcomponents</groupId> |
154 | | - <artifactId>httpcore</artifactId> |
155 | | - <scope>test</scope> |
156 | | - </dependency> |
157 | | - <dependency> |
158 | | - <groupId>org.apache.httpcomponents</groupId> |
159 | | - <artifactId>httpmime</artifactId> |
| 158 | + <groupId>software.amazon.awssdk</groupId> |
| 159 | + <artifactId>url-connection-client</artifactId> |
160 | 160 | <scope>test</scope> |
161 | 161 | </dependency> |
162 | 162 | <dependency> |
|
172 | 172 | </dependencies> |
173 | 173 |
|
174 | 174 | <build> |
175 | | - <testSourceDirectory>src/test/kotlin</testSourceDirectory> |
176 | 175 | <pluginManagement> |
177 | 176 | <plugins> |
178 | 177 | <plugin> |
|
212 | 211 | </plugins> |
213 | 212 | </pluginManagement> |
214 | 213 | <plugins> |
215 | | - <plugin> |
216 | | - <artifactId>maven-checkstyle-plugin</artifactId> |
217 | | - </plugin> |
218 | 214 | <plugin> |
219 | 215 | <groupId>com.github.gantsign.maven</groupId> |
220 | 216 | <artifactId>ktlint-maven-plugin</artifactId> |
221 | 217 | </plugin> |
| 218 | + <plugin> |
| 219 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 220 | + </plugin> |
222 | 221 | <plugin> |
223 | 222 | <groupId>org.apache.maven.plugins</groupId> |
224 | 223 | <artifactId>maven-surefire-plugin</artifactId> |
|
228 | 227 | </configuration> |
229 | 228 | </plugin> |
230 | 229 | <plugin> |
231 | | - <groupId>org.jetbrains.kotlin</groupId> |
232 | | - <artifactId>kotlin-maven-plugin</artifactId> |
233 | | - <version>${kotlin.version}</version> |
| 230 | + <groupId>org.jetbrains.kotlin</groupId> |
| 231 | + <artifactId>kotlin-maven-plugin</artifactId> |
| 232 | + <version>${kotlin.version}</version> |
234 | 233 | </plugin> |
235 | 234 | </plugins> |
| 235 | + <testSourceDirectory>src/test/kotlin</testSourceDirectory> |
236 | 236 | </build> |
237 | 237 |
|
238 | 238 | <profiles> |
|
0 commit comments