Skip to content

Commit 20387c9

Browse files
github-actions[bot]paul58914080
authored andcommitted
ci: update generated copier template from example
1 parent 64991be commit 20387c9

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

{{app_name}}/acceptance-test/pom.xml.jinja

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@
4242
<artifactId>spring-boot-resttestclient</artifactId>
4343
<scope>test</scope>
4444
</dependency>
45+
<dependency>
46+
<groupId>org.springframework.boot</groupId>
47+
<artifactId>spring-boot-starter-restclient</artifactId>
48+
<scope>test</scope>
49+
</dependency>
4550
<dependency>
4651
<groupId>com.h2database</groupId>
4752
<artifactId>h2</artifactId>

{{app_name}}/pom.xml.jinja

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<maven.compiler.source>${java.version}</maven.compiler.source>
1414
<maven.compiler.target>${java.version}</maven.compiler.target>
1515
<junit-jupiter.version>6.0.1</junit-jupiter.version>
16-
<spring-boot.version>4.0.0</spring-boot.version>
16+
<spring-boot.version>4.0.1</spring-boot.version>
1717
<cucumber.version>7.33.0</cucumber.version>
1818
<springdoc-openapi-starter.version>3.0.0</springdoc-openapi-starter.version>
1919
<pre-liquibase.version>2.0.0</pre-liquibase.version>
@@ -159,12 +159,24 @@
159159
</annotationProcessorPaths>
160160
</configuration>
161161
</plugin>
162+
<plugin>
163+
<groupId>org.apache.maven.plugins</groupId>
164+
<artifactId>maven-dependency-plugin</artifactId>
165+
<executions>
166+
<execution>
167+
<goals>
168+
<goal>properties</goal>
169+
</goals>
170+
</execution>
171+
</executions>
172+
</plugin>
162173
<plugin>
163174
<groupId>org.apache.maven.plugins</groupId>
164175
<artifactId>maven-surefire-plugin</artifactId>
165176
<version>${maven-surefire-plugin.version}</version>
166177
<configuration>
167178
<testFailureIgnore>false</testFailureIgnore>
179+
<argLine>@{argLine} -javaagent:${org.mockito:mockito-core:jar}</argLine>
168180
</configuration>
169181
</plugin>
170182
<plugin>

{{app_name}}/rest-adapter/pom.xml.jinja

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@
4040
<artifactId>spring-boot-resttestclient</artifactId>
4141
<scope>test</scope>
4242
</dependency>
43+
<dependency>
44+
<groupId>org.springframework.boot</groupId>
45+
<artifactId>spring-boot-starter-restclient</artifactId>
46+
<scope>test</scope>
47+
</dependency>
4348
</dependencies>
4449
<build>
4550
<plugins>

0 commit comments

Comments
 (0)