|
9 | 9 | <version>2.3.2.RELEASE</version> |
10 | 10 | </parent> |
11 | 11 |
|
12 | | - <groupId>com.example</groupId> |
| 12 | + <groupId>run.qontract</groupId> |
13 | 13 | <artifactId>petstore-soap-api</artifactId> |
14 | 14 | <version>0.0.1</version> |
15 | 15 | <name>petstore-soap-api</name> |
16 | 16 | <description>Sample SOAP API provider</description> |
17 | 17 |
|
18 | 18 | <properties> |
19 | 19 | <java.version>1.8</java.version> |
20 | | - <qontract.version>0.20.1</qontract.version> |
21 | | - <kotlin.version>1.4.10</kotlin.version> |
| 20 | + <qontract.version>0.22.0</qontract.version> |
| 21 | + <kotlin.version>1.4.21-2</kotlin.version> |
22 | 22 | </properties> |
23 | 23 |
|
24 | | - <dependencyManagement> |
25 | | - <dependencies> |
26 | | - <dependency> |
27 | | - <groupId>run.qontract</groupId> |
28 | | - <artifactId>qontract-core</artifactId> |
29 | | - <version>${qontract.version}</version> |
30 | | - <type>pom</type> |
31 | | - <scope>import</scope> |
32 | | - </dependency> |
33 | | - |
34 | | - <dependency> |
35 | | - <groupId>run.qontract</groupId> |
36 | | - <artifactId>junit5-support</artifactId> |
37 | | - <version>${qontract.version}</version> |
38 | | - <type>pom</type> |
39 | | - <scope>import</scope> |
40 | | - </dependency> |
41 | | - </dependencies> |
42 | | - </dependencyManagement> |
43 | | - |
44 | 24 | <dependencies> |
45 | 25 | <dependency> |
46 | 26 | <groupId>run.qontract</groupId> |
|
65 | 45 | <artifactId>spring-boot-starter-web-services</artifactId> |
66 | 46 | </dependency> |
67 | 47 |
|
68 | | - <dependency> |
69 | | - <groupId>org.springframework.boot</groupId> |
70 | | - <artifactId>spring-boot-starter-test</artifactId> |
71 | | - <scope>test</scope> |
72 | | - <exclusions> |
73 | | - <exclusion> |
74 | | - <groupId>org.junit.vintage</groupId> |
75 | | - <artifactId>junit-vintage-engine</artifactId> |
76 | | - </exclusion> |
77 | | - <exclusion> |
78 | | - <groupId>junit</groupId> |
79 | | - <artifactId>junit</artifactId> |
80 | | - </exclusion> |
81 | | - </exclusions> |
82 | | - </dependency> |
83 | 48 | <dependency> |
84 | 49 | <groupId>wsdl4j</groupId> |
85 | 50 | <artifactId>wsdl4j</artifactId> |
86 | 51 | </dependency> |
87 | 52 |
|
88 | 53 | <dependency> |
89 | 54 | <groupId>org.junit.jupiter</groupId> |
90 | | - <artifactId>junit-jupiter-engine</artifactId> |
| 55 | + <artifactId>junit-jupiter</artifactId> |
91 | 56 | <version>5.7.0</version> |
92 | 57 | <scope>test</scope> |
93 | 58 | </dependency> |
94 | 59 |
|
95 | 60 | <dependency> |
96 | | - <groupId>org.junit.jupiter</groupId> |
97 | | - <artifactId>junit-jupiter-api</artifactId> |
98 | | - <version>5.7.0</version> |
| 61 | + <groupId>org.junit.platform</groupId> |
| 62 | + <artifactId>junit-platform-launcher</artifactId> |
| 63 | + <version>1.7.0</version> |
99 | 64 | <scope>test</scope> |
100 | 65 | </dependency> |
101 | 66 |
|
102 | 67 | <dependency> |
103 | 68 | <groupId>org.junit.platform</groupId> |
104 | | - <artifactId>junit-platform-runner</artifactId> |
| 69 | + <artifactId>junit-platform-engine</artifactId> |
105 | 70 | <version>1.7.0</version> |
106 | | - <scope>test</scope> |
107 | 71 | </dependency> |
108 | 72 |
|
109 | 73 | <dependency> |
110 | 74 | <groupId>org.junit.platform</groupId> |
111 | | - <artifactId>junit-platform-engine</artifactId> |
| 75 | + <artifactId>junit-platform-commons</artifactId> |
112 | 76 | <version>1.7.0</version> |
| 77 | + <scope>test</scope> |
| 78 | + </dependency> |
| 79 | + |
| 80 | + <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-surefire-plugin --> |
| 81 | + <dependency> |
| 82 | + <groupId>org.apache.maven.plugins</groupId> |
| 83 | + <artifactId>maven-surefire-plugin</artifactId> |
| 84 | + <version>2.22.2</version> |
113 | 85 | </dependency> |
114 | 86 | </dependencies> |
115 | 87 |
|
116 | 88 | <build> |
117 | | - <testSourceDirectory>src/test/java</testSourceDirectory> |
118 | 89 | <plugins> |
119 | | - <plugin> |
120 | | - <artifactId>maven-surefire-plugin</artifactId> |
121 | | - <version>2.22.2</version> |
122 | | - </plugin> |
123 | | - <plugin> |
124 | | - <artifactId>maven-failsafe-plugin</artifactId> |
125 | | - <version>2.22.2</version> |
126 | | - </plugin> |
127 | | - <plugin> |
128 | | - <groupId>org.springframework.boot</groupId> |
129 | | - <artifactId>spring-boot-maven-plugin</artifactId> |
130 | | - </plugin> |
131 | 90 | <plugin> |
132 | 91 | <groupId>org.apache.maven.plugins</groupId> |
133 | 92 | <artifactId>maven-compiler-plugin</artifactId> |
|
173 | 132 | </execution> |
174 | 133 | </executions> |
175 | 134 | </plugin> |
| 135 | + <plugin> |
| 136 | + <groupId>org.apache.maven.plugins</groupId> |
| 137 | + <artifactId>maven-surefire-plugin</artifactId> |
| 138 | + <version>2.22.2</version> |
| 139 | + <configuration> |
| 140 | + <argLine>-Dfile.encoding=UTF-8</argLine> |
| 141 | + <testSourceDirectory>src/test</testSourceDirectory> |
| 142 | + </configuration> |
| 143 | + </plugin> |
176 | 144 | </plugins> |
177 | 145 | </build> |
178 | 146 |
|
|
0 commit comments