sources generation fix
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/7d51b6a3 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/7d51b6a3 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/7d51b6a3 Branch: refs/heads/ignite-2832 Commit: 7d51b6a34eb4f78ad8eb019057768c57c3d660b4 Parents: b27ebe6 Author: Anton Vinogradov <[email protected]> Authored: Tue May 10 14:51:30 2016 +0300 Committer: Anton Vinogradov <[email protected]> Committed: Tue May 10 14:51:30 2016 +0300 ---------------------------------------------------------------------- pom.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/7d51b6a3/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 3a4a268..b1d6310 100644 --- a/pom.xml +++ b/pom.xml @@ -171,6 +171,24 @@ </activation> <build> <plugins> + <plugin><!-- skipping generation of dependencies licenses + to keep clean /maven-shared-archive-resources/META-INF + to prevent license.txt moving to sources.zip --> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-remote-resources-plugin</artifactId> + <executions> + <execution> + <id>ignite-dependencies</id> + <goals> + <goal>process</goal> + </goals> + <configuration> + <skip>true</skip> + </configuration> + </execution> + </executions> + </plugin> + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId>
