Skip to content

Commit d264d2a

Browse files
authored
Add target source to compile
1 parent 43aae80 commit d264d2a

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

src/main/java/com/mytaxi/jooqoverpostgres/JooqOverPostgresContainer.java

+8-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,9 @@
1212
import liquibase.exception.LiquibaseException;
1313
import liquibase.resource.FileSystemResourceAccessor;
1414
import org.apache.maven.plugin.AbstractMojo;
15-
import org.apache.maven.plugin.MojoExecutionException;
16-
import org.apache.maven.plugin.MojoFailureException;
1715
import org.apache.maven.plugins.annotations.Mojo;
1816
import org.apache.maven.plugins.annotations.Parameter;
17+
import org.apache.maven.project.MavenProject;
1918
import org.jooq.codegen.GenerationTool;
2019
import org.jooq.meta.jaxb.Configuration;
2120
import org.jooq.meta.jaxb.Generate;
@@ -29,6 +28,7 @@
2928
public class JooqOverPostgresContainer extends AbstractMojo
3029
{
3130

31+
public static final String TARGET_GENERATED_SOURCES_JOOQ = "target/generated-sources/jooq/";
3232
@ClassRule
3333
public static PostgreSQLContainer postgreSQLContainer = new PostgreSQLContainer("postgres:alpine");
3434

@@ -41,9 +41,12 @@ public class JooqOverPostgresContainer extends AbstractMojo
4141
@Parameter(property = "jooqOverPostgresContainer.liquibaseChangeLogFile", required = true)
4242
private String liquibaseChangeLogFile;
4343

44+
@Parameter(defaultValue = "${project}", readonly = true)
45+
private MavenProject project;
46+
4447

4548
@Override
46-
public void execute() throws MojoExecutionException, MojoFailureException
49+
public void execute()
4750
{
4851
postgreSQLContainer.
4952
withDatabaseName(schema)
@@ -53,6 +56,7 @@ public void execute() throws MojoExecutionException, MojoFailureException
5356
{
5457
liquibase(connection);
5558
GenerationTool.generate(getConfiguration());
59+
project.addCompileSourceRoot(TARGET_GENERATED_SOURCES_JOOQ);
5660
}
5761
catch (Exception e)
5862
{
@@ -101,7 +105,7 @@ private Target getJooqTarget(String targetPackage)
101105
{
102106
return new Target()
103107
.withPackageName(targetPackage)
104-
.withDirectory(Paths.get("target/generated-sources/jooq/").toAbsolutePath().toString());
108+
.withDirectory(Paths.get(TARGET_GENERATED_SOURCES_JOOQ).toAbsolutePath().toString());
105109
}
106110

107111

0 commit comments

Comments
 (0)