12
12
import liquibase .exception .LiquibaseException ;
13
13
import liquibase .resource .FileSystemResourceAccessor ;
14
14
import org .apache .maven .plugin .AbstractMojo ;
15
- import org .apache .maven .plugin .MojoExecutionException ;
16
- import org .apache .maven .plugin .MojoFailureException ;
17
15
import org .apache .maven .plugins .annotations .Mojo ;
18
16
import org .apache .maven .plugins .annotations .Parameter ;
17
+ import org .apache .maven .project .MavenProject ;
19
18
import org .jooq .codegen .GenerationTool ;
20
19
import org .jooq .meta .jaxb .Configuration ;
21
20
import org .jooq .meta .jaxb .Generate ;
29
28
public class JooqOverPostgresContainer extends AbstractMojo
30
29
{
31
30
31
+ public static final String TARGET_GENERATED_SOURCES_JOOQ = "target/generated-sources/jooq/" ;
32
32
@ ClassRule
33
33
public static PostgreSQLContainer postgreSQLContainer = new PostgreSQLContainer ("postgres:alpine" );
34
34
@@ -41,9 +41,12 @@ public class JooqOverPostgresContainer extends AbstractMojo
41
41
@ Parameter (property = "jooqOverPostgresContainer.liquibaseChangeLogFile" , required = true )
42
42
private String liquibaseChangeLogFile ;
43
43
44
+ @ Parameter (defaultValue = "${project}" , readonly = true )
45
+ private MavenProject project ;
46
+
44
47
45
48
@ Override
46
- public void execute () throws MojoExecutionException , MojoFailureException
49
+ public void execute ()
47
50
{
48
51
postgreSQLContainer .
49
52
withDatabaseName (schema )
@@ -53,6 +56,7 @@ public void execute() throws MojoExecutionException, MojoFailureException
53
56
{
54
57
liquibase (connection );
55
58
GenerationTool .generate (getConfiguration ());
59
+ project .addCompileSourceRoot (TARGET_GENERATED_SOURCES_JOOQ );
56
60
}
57
61
catch (Exception e )
58
62
{
@@ -101,7 +105,7 @@ private Target getJooqTarget(String targetPackage)
101
105
{
102
106
return new Target ()
103
107
.withPackageName (targetPackage )
104
- .withDirectory (Paths .get ("target/generated-sources/jooq/" ).toAbsolutePath ().toString ());
108
+ .withDirectory (Paths .get (TARGET_GENERATED_SOURCES_JOOQ ).toAbsolutePath ().toString ());
105
109
}
106
110
107
111
0 commit comments