Repository: mina-sshd Updated Branches: refs/heads/master ce89260e6 -> 1e8254794
Exclude from GIT and Maven build intermediate serialized key files generated during tests Project: http://git-wip-us.apache.org/repos/asf/mina-sshd/repo Commit: http://git-wip-us.apache.org/repos/asf/mina-sshd/commit/f99573b3 Tree: http://git-wip-us.apache.org/repos/asf/mina-sshd/tree/f99573b3 Diff: http://git-wip-us.apache.org/repos/asf/mina-sshd/diff/f99573b3 Branch: refs/heads/master Commit: f99573b3313f7ac3e2b8eebf1b61fd9c0f90ab3c Parents: ce89260 Author: Lyor Goldstein <[email protected]> Authored: Wed Aug 29 21:20:43 2018 +0300 Committer: Lyor Goldstein <[email protected]> Committed: Wed Aug 29 21:20:43 2018 +0300 ---------------------------------------------------------------------- .gitignore | 1 + pom.xml | 11 ++++++----- sshd-cli/key.ser | Bin 1936 -> 0 bytes 3 files changed, 7 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/f99573b3/.gitignore ---------------------------------------------------------------------- diff --git a/.gitignore b/.gitignore index 99b67e3..58e8460 100644 --- a/.gitignore +++ b/.gitignore @@ -15,4 +15,5 @@ RemoteSystemsTempFiles/ .idea .springBeans .externalToolBuilders +*.ser http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/f99573b3/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 536651e..34d245f 100644 --- a/pom.xml +++ b/pom.xml @@ -556,9 +556,7 @@ <version>0.12</version> <configuration> <excludes> - <exclude>**/*.iml</exclude> <exclude>README.md</exclude> - <exclude>*pmd*</exclude> <exclude>src/docs/**</exclude> <exclude>src/test/resources/**</exclude> <exclude>**/stty-output-*.txt</exclude> @@ -566,7 +564,12 @@ <exclude>*findbugs*</exclude> <exclude>*suppressions*</exclude> <exclude>**/big-msg.txt</exclude> - <!-- Eclipse files --> + <exclude>LICENSE*</exclude> + <exclude>NOTICE*</exclude> + <!-- IDE files --> + <exclude>*pmd*</exclude> + <exclude>*.ser</exclude> + <exclude>*.iml</exclude> <exclude>.metadata/**</exclude> <exclude>.recommenders/**</exclude> <exclude>RemoteSystemsTempFiles/**</exclude> @@ -575,8 +578,6 @@ <exclude>.springBeans</exclude> <exclude>.settings/**</exclude> <exclude>.repository/**</exclude> - <exclude>LICENSE*</exclude> - <exclude>NOTICE*</exclude> </excludes> </configuration> </plugin> http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/f99573b3/sshd-cli/key.ser ---------------------------------------------------------------------- diff --git a/sshd-cli/key.ser b/sshd-cli/key.ser deleted file mode 100644 index 824484a..0000000 Binary files a/sshd-cli/key.ser and /dev/null differ
