Skip to content

Commit 2c0d26b

Browse files
authored
bump damsel (#81)
* bump damsel * bump damsel * bump damsel
1 parent 3f08558 commit 2c0d26b

File tree

4 files changed

+18
-42
lines changed

4 files changed

+18
-42
lines changed

.github/workflows/basic-linters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ on:
77

88
jobs:
99
lint:
10-
uses: valitydev/base-workflows/.github/workflows/basic-linters.yml@v2
10+
uses: valitydev/base-workflows/.github/workflows/basic-linters.yml@v1

pom.xml

Lines changed: 7 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,10 @@
1313
<parent>
1414
<groupId>dev.vality</groupId>
1515
<artifactId>service-parent-pom</artifactId>
16-
<version>3.1.7</version>
16+
<version>3.1.9</version>
1717
</parent>
1818

1919
<properties>
20-
<project.maintainer>Inal Arsanukaev &lt;i.arsanukaev@rbkmoney.com&gt;</project.maintainer>
2120
<server.port>8022</server.port>
2221
<management.port>8023</management.port>
2322
<exposed.ports>${server.port} ${management.port}</exposed.ports>
@@ -63,11 +62,15 @@
6362
<dependency>
6463
<groupId>dev.vality</groupId>
6564
<artifactId>damsel</artifactId>
65+
<version>1.674-368f05b</version>
6666
</dependency>
6767
<dependency>
6868
<groupId>dev.vality.geck</groupId>
6969
<artifactId>serializer</artifactId>
70-
<version>1.0.2</version>
70+
</dependency>
71+
<dependency>
72+
<groupId>dev.vality.geck</groupId>
73+
<artifactId>filter</artifactId>
7174
</dependency>
7275
<dependency>
7376
<groupId>dev.vality</groupId>
@@ -86,12 +89,6 @@
8689
<dependency>
8790
<groupId>dev.vality.geck</groupId>
8891
<artifactId>common</artifactId>
89-
<version>1.0.2</version>
90-
</dependency>
91-
<dependency>
92-
<groupId>dev.vality.geck</groupId>
93-
<artifactId>filter</artifactId>
94-
<version>1.0.2</version>
9592
</dependency>
9693
<dependency>
9794
<groupId>dev.vality</groupId>
@@ -167,7 +164,7 @@
167164
<dependency>
168165
<groupId>dev.vality</groupId>
169166
<artifactId>testcontainers-annotations</artifactId>
170-
<version>3.0.2</version>
167+
<version>3.3.2</version>
171168
<scope>test</scope>
172169
</dependency>
173170
<dependency>
@@ -239,29 +236,6 @@
239236
</execution>
240237
</executions>
241238
</plugin>
242-
<plugin>
243-
<groupId>org.apache.maven.plugins</groupId>
244-
<artifactId>maven-site-plugin</artifactId>
245-
<version>3.21.0</version>
246-
</plugin>
247-
<plugin>
248-
<groupId>org.cyclonedx</groupId>
249-
<artifactId>cyclonedx-maven-plugin</artifactId>
250-
<executions>
251-
<execution>
252-
<phase>generate-resources</phase>
253-
<goals>
254-
<goal>makeAggregateBom</goal>
255-
</goals>
256-
<configuration>
257-
<projectType>application</projectType>
258-
<outputDirectory>${project.build.directory}</outputDirectory>
259-
<outputFormat>json</outputFormat>
260-
<outputName>bom</outputName>
261-
</configuration>
262-
</execution>
263-
</executions>
264-
</plugin>
265239
</plugins>
266240
</build>
267241

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package dev.vality.hooker.config;
22

3-
4-
import dev.vality.testcontainers.annotations.KafkaConfig;
3+
import dev.vality.testcontainers.annotations.KafkaTestConfig;
54
import dev.vality.testcontainers.annotations.kafka.KafkaTestcontainerSingleton;
5+
import org.springframework.test.annotation.DirtiesContext;
66

77
import java.lang.annotation.ElementType;
88
import java.lang.annotation.Retention;
@@ -14,6 +14,7 @@
1414
@KafkaTestcontainerSingleton(
1515
properties = {"kafka.topics.invoice.enabled=true"},
1616
topicsKeys = {"kafka.topics.invoice.id"})
17-
@KafkaConfig
17+
@KafkaTestConfig
18+
@DirtiesContext
1819
public @interface KafkaTest {
19-
}
20+
}
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package dev.vality.hooker.config;
22

3-
4-
import dev.vality.testcontainers.annotations.postgresql.PostgresqlTestcontainer;
3+
import dev.vality.testcontainers.annotations.postgresql.PostgresqlTestcontainerSingleton;
4+
import org.springframework.test.annotation.DirtiesContext;
55

66
import java.lang.annotation.ElementType;
77
import java.lang.annotation.Retention;
@@ -10,6 +10,7 @@
1010

1111
@Target({ElementType.TYPE})
1212
@Retention(RetentionPolicy.RUNTIME)
13-
@PostgresqlTestcontainer
13+
@PostgresqlTestcontainerSingleton
14+
@DirtiesContext
1415
public @interface PostgresqlSpringBootITest {
15-
}
16+
}

0 commit comments

Comments
 (0)