You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by im...@apache.org on 2014/04/30 11:45:05 UTC

git commit: Removed target, .git folders from maven artifacts and included DISCLAIMER file

Repository: incubator-stratos
Updated Branches:
  refs/heads/4.0.0-incubating b605723ae -> 4bef17841


Removed target,.git folders from maven artifacts and included DISCLAIMER file


Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/4bef1784
Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/4bef1784
Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/4bef1784

Branch: refs/heads/4.0.0-incubating
Commit: 4bef178416ffbdec1233a3f41323ca3247eef599
Parents: b605723
Author: Imesh Gunaratne <im...@apache.org>
Authored: Wed Apr 30 15:13:12 2014 +0530
Committer: Imesh Gunaratne <im...@apache.org>
Committed: Wed Apr 30 15:13:12 2014 +0530

----------------------------------------------------------------------
 pom.xml | 43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/4bef1784/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 48e86bf..0f23741 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>