File tree 2 files changed +5
-5
lines changed
src/main/java/org/utplsql/maven/plugin
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 5
5
6
6
<groupId >org.utplsql</groupId >
7
7
<artifactId >utplsql-maven-plugin</artifactId >
8
- <version >3.1.1 -SNAPSHOT</version >
8
+ <version >3.1.2 -SNAPSHOT</version >
9
9
<packaging >maven-plugin</packaging >
10
10
11
11
<name >utPLSQL Maven Plugin</name >
55
55
<dependency >
56
56
<groupId >org.utplsql</groupId >
57
57
<artifactId >java-api</artifactId >
58
- <version >3.1.1 </version >
58
+ <version >3.1.2 </version >
59
59
</dependency >
60
60
61
61
<dependency >
Original file line number Diff line number Diff line change @@ -164,10 +164,10 @@ public void execute() throws MojoExecutionException {
164
164
runner .run (connection );
165
165
166
166
} 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
+ }
169
170
} catch (SQLException e ) {
170
- getLog ().error (e );
171
171
throw new MojoExecutionException (e .getMessage (), e );
172
172
} finally {
173
173
try {
You can’t perform that action at this time.
0 commit comments