Added Flatten-maven-plugin

resolves #633
This commit is contained in:
Glenn Renfro
2019-11-07 12:01:04 -05:00
parent 1a7113f37b
commit 7e24e6d4ec
2 changed files with 10 additions and 2 deletions

View File

@@ -131,6 +131,14 @@
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>

View File

@@ -129,9 +129,9 @@ public class SimpleTaskAutoConfigurationTests {
"Failed to start " + "bean 'taskLifecycleListener'; nested exception is "
+ "org.springframework.dao.DataAccessResourceFailureException: "
+ "Could not obtain sequence value; nested exception is org.h2.jdbc.JdbcSQLSyntaxErrorException: "
+ "Syntax error in SQL statement \"SELECT FOOBARLESSSEQ.NEXTVAL FROM[*] DUAL \"; "
+ "Syntax error in SQL statement \"SELECT FOOBARLESSSEQ.NEXTVAL FROM[*] DUAL\"; "
+ "expected \"identifier\"; SQL statement:\n"
+ "select foobarlessSEQ.nextval from dual [42001-199]",
+ "select foobarlessSEQ.nextval from dual [42001-200]",
applicationContextRunner);
}