Repository: sqoop Updated Branches: refs/heads/sqoop2 dcb3eb340 -> 08b2418c5
SQOOP-1963: Generated files such as .project and .classpath files are included in source distribution (Qian Xu via Jarek Jarcec Cecho) Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/08b2418c Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/08b2418c Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/08b2418c Branch: refs/heads/sqoop2 Commit: 08b2418c531985ccf73126f63563ef6d336d40e0 Parents: dcb3eb3 Author: Jarek Jarcec Cecho <[email protected]> Authored: Mon Jan 5 09:29:42 2015 +0100 Committer: Jarek Jarcec Cecho <[email protected]> Committed: Mon Jan 5 09:29:42 2015 +0100 ---------------------------------------------------------------------- dist/pom.xml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/sqoop/blob/08b2418c/dist/pom.xml ---------------------------------------------------------------------- diff --git a/dist/pom.xml b/dist/pom.xml index cc11072..a5968a9 100644 --- a/dist/pom.xml +++ b/dist/pom.xml @@ -80,8 +80,9 @@ limitations under the License. <exclude name="**/target/**" /> <exclude name=".git/**" /> <exclude name="tags" /> - <exclude name=".project" /> - <exclude name=".classpath" /> + <exclude name="**/.project" /> + <exclude name="**/.classpath" /> + <exclude name="**/.settings/**" /> </fileset> </copy> @@ -138,8 +139,9 @@ limitations under the License. <exclude name="**/target/**" /> <exclude name=".git/**" /> <exclude name="tags" /> - <exclude name=".project" /> - <exclude name=".classpath" /> + <exclude name="**/.project" /> + <exclude name="**/.classpath" /> + <exclude name="**/.settings/**" /> </fileset> </copy>
