Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void testInSubModule() throws Exception
{
// Compile the whole project first.
Verifier verifier = newVerifier( testDir.getAbsolutePath() );
verifier.addCliArgument( "compile" );
verifier.addCliArgument( "package" );
verifier.execute();

final File submoduleDirectory = new File( testDir, "app" );
Expand All @@ -82,7 +82,7 @@ public void testWithFile() throws Exception
{
// Compile the whole project first.
Verifier verifier = newVerifier( testDir.getAbsolutePath() );
verifier.addCliArgument( "compile" );
verifier.addCliArgument( "package" );
verifier.execute();

verifier = newVerifier( testDir.getAbsolutePath() );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ under the License.
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M7</version>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand Down