diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..71b25de --- /dev/null +++ b/.gitattributes @@ -0,0 +1,39 @@ +# Handle line endings automatically for files detected as text +# and leave all files detected as binary untouched. +* text=auto + +# +# The above will handle all files NOT found below +# +# These files are text and should be normalized (Convert crlf => lf) +*.css text +*.groovy text +*.htm text +*.html text +*.java text +*.js text +*.json text +*.jelly text +*.jellytag text +*.less text +*.properties text +*.rb text +*.sh text +*.txt text +*.xml text + +# These files are binary and should be left untouched +# (binary is a macro for -text -diff) +*.class binary +*.gz binary +*.tgz binary +*.ear binary +*.gif binary +*.hpi binary +*.ico binary +*.jar binary +*.jpg binary +*.jpeg binary +*.png binary +*.war binary +*.zip binary diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a76d9a8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,52 @@ +target +work + +# IntelliJ project files +*.iml +*.iws +*.ipr +.idea +out + +# eclipse project file +.settings +.classpath +.project +build + +# vim +*~ +*.swp + +# ctags +tags + +# OS X +.DS_Store + +# mvn versions:set +pom.xml.versionsBackup + +war/images/16x16 +war/images/24x24 +war/images/32x32 +war/images/48x48 +jenkins.war +RPMS +SRPMS +debian/binary +debian/debian/jenkins +debian/debian/jenkins.substvars +debian/debian/files +debian/build-stamp +debian/configure-stamp +*.debhelper +*.debhelper.log +jenkins_*.build +jenkins_*.changes +*.deb +*.pkg +*.zip +push-build.sh +war/node_modules/ +.java-version \ No newline at end of file diff --git a/.mvn/jvm.config b/.mvn/jvm.config new file mode 100644 index 0000000..e93a5b4 --- /dev/null +++ b/.mvn/jvm.config @@ -0,0 +1 @@ +-Xmx800m