Skip to content

Commit

Permalink
Change configuration value of 'onError' option of sql-maven-plugin. (…
Browse files Browse the repository at this point in the history
…continue -> abort) #193
  • Loading branch information
kazuki43zoo committed Nov 27, 2015
1 parent 70a8c4c commit 4b811fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion projectName-initdb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
<db.artifactId>postgresql</db.artifactId>
<db.version>${postgresql.version}</db.version>
<db.delimiterType>row</db.delimiterType>
<db.onError>abort</db.onError> <!-- Specify `continue` if want to avoid build error -->
</properties>
</profile>
</profiles>
Expand All @@ -53,7 +54,7 @@
<encoding>${db.encoding}</encoding>
<autocommit>false</autocommit>
<delimiterType>${db.delimiterType}</delimiterType>
<onError>continue</onError>
<onError>${db.onError}</onError>
<skip>false</skip>
<fileset>
<basedir>${db.basedir}</basedir>
Expand Down

0 comments on commit 4b811fc

Please sign in to comment.