Merge branch 'develop' into upgrade-dependencies
This commit is contained in:
commit
fde735af2b
2 changed files with 49 additions and 4 deletions
50
.gitignore
vendored
50
.gitignore
vendored
|
@ -1 +1,49 @@
|
||||||
/target/
|
# Package Files #
|
||||||
|
*.jar
|
||||||
|
*.war
|
||||||
|
*.ear
|
||||||
|
*.zip
|
||||||
|
|
||||||
|
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||||
|
hs_err_pid*
|
||||||
|
|
||||||
|
# maven build outputs
|
||||||
|
target/
|
||||||
|
|
||||||
|
# netbeans legacy
|
||||||
|
nbproject/
|
||||||
|
nbactions.xml
|
||||||
|
|
||||||
|
# eclipse legacy
|
||||||
|
.project
|
||||||
|
|
||||||
|
# intellij
|
||||||
|
.idea/libraries/
|
||||||
|
.idea/workspace.xml
|
||||||
|
.idea/uiDesigner.xml
|
||||||
|
.idea/compiler.xml
|
||||||
|
.idea/misc.xml
|
||||||
|
.idea/checkstyle.xml
|
||||||
|
.idea/artifacts/
|
||||||
|
.idea/dataSources*
|
||||||
|
.idea/tasks.xml
|
||||||
|
.idea/dictionaries/
|
||||||
|
.idea/shelf/
|
||||||
|
.idea/dynamic.xml
|
||||||
|
.idea/sqlDataSources.xml
|
||||||
|
.idea/gradle.xml
|
||||||
|
.idea/mongoSettings.xml
|
||||||
|
|
||||||
|
# Spring
|
||||||
|
spring.log
|
||||||
|
logs/
|
||||||
|
/application.properties
|
||||||
|
/bootstrap.properties
|
||||||
|
|
||||||
|
# Composer-style
|
||||||
|
vendor
|
||||||
|
|
||||||
|
# Git and temp files
|
||||||
|
*.orig
|
||||||
|
*.patch
|
||||||
|
*~
|
||||||
|
|
|
@ -28,7 +28,6 @@
|
||||||
<module name="AnnotationLocation"/> <!-- annotations should be on line by themselves -->
|
<module name="AnnotationLocation"/> <!-- annotations should be on line by themselves -->
|
||||||
<module name="AnnotationUseStyle"/> <!-- annotations should only use () and named attributes when needed -->
|
<module name="AnnotationUseStyle"/> <!-- annotations should only use () and named attributes when needed -->
|
||||||
<module name="AnonInnerLength"/> <!-- limits anonymous inner classes to 20 lines -->
|
<module name="AnonInnerLength"/> <!-- limits anonymous inner classes to 20 lines -->
|
||||||
<module name="ArrayTrailingComma"/> <!-- arrays should have a trailing comma (unless braces are on same line)-->
|
|
||||||
<module name="ArrayTypeStyle"/> <!-- enforce Java style arrays -->
|
<module name="ArrayTypeStyle"/> <!-- enforce Java style arrays -->
|
||||||
<module name="AtclauseOrder"/> <!-- enforce standard order for javadoc elements -->
|
<module name="AtclauseOrder"/> <!-- enforce standard order for javadoc elements -->
|
||||||
<module name="AvoidEscapedUnicodeCharacters"> <!-- prevent use of obscure escape codes -->
|
<module name="AvoidEscapedUnicodeCharacters"> <!-- prevent use of obscure escape codes -->
|
||||||
|
@ -69,7 +68,6 @@
|
||||||
<module name="ExplicitInitialization"/> <!-- avoid initializing a field twice to the same value -->
|
<module name="ExplicitInitialization"/> <!-- avoid initializing a field twice to the same value -->
|
||||||
<module name="FallThrough"/> <!-- checks that each switch case fall-through is commented as such -->
|
<module name="FallThrough"/> <!-- checks that each switch case fall-through is commented as such -->
|
||||||
<module name="FinalClass"/> <!-- class which has only private constructors is declared as final -->
|
<module name="FinalClass"/> <!-- class which has only private constructors is declared as final -->
|
||||||
<!--<module name="FinalLocalVariable"/> <!– incompatible with lombok's val - local variables that never change must be declared final –>-->
|
|
||||||
<module name="FinalParameters"/> <!-- parameters that never change must be declared final -->
|
<module name="FinalParameters"/> <!-- parameters that never change must be declared final -->
|
||||||
<module name="GenericWhitespace"/> <!-- generic tokens are spaced correctly -->
|
<module name="GenericWhitespace"/> <!-- generic tokens are spaced correctly -->
|
||||||
<module name="HiddenField">
|
<module name="HiddenField">
|
||||||
|
@ -81,7 +79,6 @@
|
||||||
<module name="IllegalImport"/> <!-- prevent imports from the sun.* package -->
|
<module name="IllegalImport"/> <!-- prevent imports from the sun.* package -->
|
||||||
<module name="IllegalThrows"/> <!-- prevent generic throws (i.e. Exception, Throwable, RuntimeException) -->
|
<module name="IllegalThrows"/> <!-- prevent generic throws (i.e. Exception, Throwable, RuntimeException) -->
|
||||||
<module name="IllegalType"/> <!-- prevents variables, returns or parameters of non-interface Collections classes -->
|
<module name="IllegalType"/> <!-- prevents variables, returns or parameters of non-interface Collections classes -->
|
||||||
<!--<module name="Indentation"/> <!– incompatible with preferred indentation - correct indentation of Java code –>-->
|
|
||||||
<module name="InnerAssignment"/> <!-- prevent assignments in subexpressions (i.e. while((line = read()){}) -->
|
<module name="InnerAssignment"/> <!-- prevent assignments in subexpressions (i.e. while((line = read()){}) -->
|
||||||
<module name="InnerTypeLast"/> <!-- inner classes appear after methods and fields -->
|
<module name="InnerTypeLast"/> <!-- inner classes appear after methods and fields -->
|
||||||
<module name="InterfaceIsType"/> <!-- interface must define method not just constants -->
|
<module name="InterfaceIsType"/> <!-- interface must define method not just constants -->
|
||||||
|
|
Loading…
Reference in a new issue