JAMES-2477 Add partial build plugin
Project: http://git-wip-us.apache.org/repos/asf/james-project/repo Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/8da87f35 Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/8da87f35 Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/8da87f35 Branch: refs/heads/master Commit: 8da87f35da71d4ce6ab1dc893e1c6dbc92a42d08 Parents: 40d18af Author: benwa <[email protected]> Authored: Fri Jul 6 13:46:07 2018 +0700 Committer: benwa <[email protected]> Committed: Fri Jul 20 18:18:43 2018 +0700 ---------------------------------------------------------------------- pom.xml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/8da87f35/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 5de3072..daa3b8f 100644 --- a/pom.xml +++ b/pom.xml @@ -3324,5 +3324,25 @@ </pluginManagement> </build> </profile> + <profile> + <id>partial-build</id> + <build> + <plugins> + <plugin> + <groupId>com.lesfurets</groupId> + <artifactId>partial-build-plugin</artifactId> + <version>2.6</version> + <extensions>true</extensions> + <configuration> + <referenceBranch>${env.JAMES_PARTIAL_BUILD_BASE_BRANCH}</referenceBranch> + <buildAll>true</buildAll> + <skipTestsForNotImpactedModules>true</skipTestsForNotImpactedModules> + <impacted>true</impacted> + <ignoreAllReactorProjects>false</ignoreAllReactorProjects> + </configuration> + </plugin> + </plugins> + </build> + </profile> </profiles> </project> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
