|
3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
4 | 4 |
|
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | | - <!-- WITH THIS mvn integration-test DOES WORK --> |
7 | | - <groupId>com.baeldung</groupId> |
8 | 6 | <artifactId>blade</artifactId> |
9 | | - <version>1.0.0-SNAPSHOT</version> |
10 | 7 | <name>blade</name> |
11 | 8 |
|
12 | | - |
13 | | - <!-- WITH THIS mvn integration-test DOESN'T WORK --> |
14 | | - <!-- <parent> --> |
15 | | - <!-- <groupId>com.baeldung</groupId> --> |
16 | | - <!-- <artifactId>parent-modules</artifactId> --> |
17 | | - <!-- <version>1.0.0-SNAPSHOT</version> --> |
18 | | - <!-- </parent> --> |
| 9 | + <parent> |
| 10 | + <groupId>com.baeldung</groupId> |
| 11 | + <artifactId>parent-modules</artifactId> |
| 12 | + <version>1.0.0-SNAPSHOT</version> |
| 13 | + </parent> |
19 | 14 |
|
20 | 15 | <dependencies> |
21 | 16 | <dependency> |
|
45 | 40 | </dependency> |
46 | 41 |
|
47 | 42 | <!-- TEST --> |
48 | | - <dependency> |
49 | | - <groupId>junit</groupId> |
50 | | - <artifactId>junit</artifactId> |
51 | | - <version>${junit.version}</version> |
52 | | - <scope>test</scope> |
53 | | - </dependency> |
54 | 43 | <dependency> |
55 | 44 | <groupId>org.assertj</groupId> |
56 | 45 | <artifactId>assertj-core</artifactId> |
|
79 | 68 | <build> |
80 | 69 | <finalName>sample-blade-app</finalName> |
81 | 70 | <plugins> |
82 | | - |
83 | | - <plugin> |
84 | | - <groupId>org.apache.maven.plugins</groupId> |
85 | | - <artifactId>maven-surefire-plugin</artifactId> |
86 | | - <version>${maven-surefire-plugin.version}</version> |
87 | | - <configuration> |
88 | | - <forkCount>3</forkCount> |
89 | | - <reuseForks>true</reuseForks> |
90 | | - <excludes> |
91 | | - <exclude>**/*LiveTest.java</exclude> |
92 | | - </excludes> |
93 | | - </configuration> |
94 | | - </plugin> |
95 | | - |
96 | 71 | <plugin> |
97 | 72 | <groupId>org.apache.maven.plugins</groupId> |
98 | 73 | <artifactId>maven-failsafe-plugin</artifactId> |
|
172 | 147 | </execution> |
173 | 148 | </executions> |
174 | 149 | </plugin> |
175 | | - <plugin> |
176 | | - <groupId>org.apache.maven.plugins</groupId> |
177 | | - <artifactId>maven-compiler-plugin</artifactId> |
178 | | - <version>${maven-compiler-plugin.version}</version> |
179 | | - <configuration> |
180 | | - <source>${maven.compiler.source}</source> |
181 | | - <target>${maven.compiler.target}</target> |
182 | | - <encoding>UTF-8</encoding> |
183 | | - </configuration> |
184 | | - </plugin> |
185 | 150 | </plugins> |
186 | 151 | </build> |
187 | 152 |
|
188 | 153 | <properties> |
189 | | - <maven.compiler.source>1.8</maven.compiler.source> |
190 | | - <maven.compiler.target>1.8</maven.compiler.target> |
191 | 154 | <blade-mvc.version>2.0.14.RELEASE</blade-mvc.version> |
192 | 155 | <bootstrap.version>4.2.1</bootstrap.version> |
193 | 156 | <commons-lang3.version>3.8.1</commons-lang3.version> |
194 | 157 | <lombok.version>1.18.4</lombok.version> |
195 | | - <junit.version>4.12</junit.version> |
196 | 158 | <httpclient.version>4.5.6</httpclient.version> |
197 | 159 | <httpmime.version>4.5.6</httpmime.version> |
198 | 160 | <httpcore.version>4.4.10</httpcore.version> |
199 | 161 | <assertj-core.version>3.11.1</assertj-core.version> |
200 | 162 | <maven-failsafe-plugin.version>3.0.0-M3</maven-failsafe-plugin.version> |
201 | 163 | <process-exec-maven-plugin.version>0.7</process-exec-maven-plugin.version> |
202 | | - <maven-surefire-plugin.version>2.21.0</maven-surefire-plugin.version> |
203 | | - <maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version> |
204 | 164 | </properties> |
205 | 165 | </project> |
0 commit comments