File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/main/java/org/utplsql/maven/plugin Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 55
66 <groupId >org.utplsql</groupId >
77 <artifactId >utplsql-maven-plugin</artifactId >
8- <version >3.1.1 -SNAPSHOT</version >
8+ <version >3.1.2 -SNAPSHOT</version >
99 <packaging >maven-plugin</packaging >
1010
1111 <name >utPLSQL Maven Plugin</name >
5555 <dependency >
5656 <groupId >org.utplsql</groupId >
5757 <artifactId >java-api</artifactId >
58- <version >3.1.1 </version >
58+ <version >3.1.2 </version >
5959 </dependency >
6060
6161 <dependency >
Original file line number Diff line number Diff line change @@ -164,10 +164,10 @@ public void execute() throws MojoExecutionException {
164164 runner .run (connection );
165165
166166 } catch (SomeTestsFailedException e ) {
167- getLog ().error (e );
168- throw new MojoExecutionException (e .getMessage ());
167+ if (!this .ignoreFailure ) {
168+ throw new MojoExecutionException (e .getMessage (), e );
169+ }
169170 } catch (SQLException e ) {
170- getLog ().error (e );
171171 throw new MojoExecutionException (e .getMessage (), e );
172172 } finally {
173173 try {
You can’t perform that action at this time.
0 commit comments