Repository: incubator-stratos Updated Branches: refs/heads/master f6ce4ceac -> b24c71ef6
Removed target,.git folders from maven artifacts and included DISCLAIMER file Signed-off-by: Imesh Gunaratne <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/b24c71ef Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/b24c71ef Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/b24c71ef Branch: refs/heads/master Commit: b24c71ef6ca784d04533e35b30337ffb9a0f3d51 Parents: f6ce4ce Author: Imesh Gunaratne <[email protected]> Authored: Wed Apr 30 15:13:12 2014 +0530 Committer: Imesh Gunaratne <[email protected]> Committed: Wed Apr 30 16:53:05 2014 +0530 ---------------------------------------------------------------------- pom.xml | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/b24c71ef/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index da09665..3bff3df 100644 --- a/pom.xml +++ b/pom.xml @@ -417,6 +417,49 @@ <target>1.6</target> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-remote-resources-plugin</artifactId> + <configuration> + <excludes> + <exclude>**/target/**/*</exclude> + <exclude>**/.gitignore</exclude> + <exclude>**/.git/**/*</exclude> + </excludes> + </configuration> + <executions> + <execution> + <goals> + <goal>process</goal> + </goals> + <configuration> + <resourceBundles> + <resourceBundle>org.apache:apache-incubator-disclaimer-resource-bundle:1.1 + </resourceBundle> + <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle> + </resourceBundles> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <id>attach-sources</id> + <phase>verify</phase> + <goals> + <goal>jar-no-fork</goal> + </goals> + <configuration> + <excludes> + <exclude>${project.build.directory}/**/*</exclude> + </excludes> + </configuration> + </execution> + </executions> + </plugin> </plugins> <pluginManagement> <plugins>
