This is an automated email from the ASF dual-hosted git repository.

clebertsuconic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/main by this push:
     new d846467e1a ARTEMIS-5482 remove IDE-related technical debt
d846467e1a is described below

commit d846467e1ab4d0cb1410d933e9d47c978c3a173c
Author: Justin Bertram <[email protected]>
AuthorDate: Thu May 15 12:25:54 2025 -0500

    ARTEMIS-5482 remove IDE-related technical debt
---
 docs/hacking-guide/_formatting.adoc                |  26 --
 docs/hacking-guide/_ide.adoc                       | 143 ----------
 docs/hacking-guide/index.adoc                      |   2 -
 etc/ide-settings/README.md                         |   6 -
 .../eclipse/org.eclipse.jdt.core.prefs             | 307 ---------------------
 etc/ide-settings/eclipse/org.eclipse.jdt.ui.prefs  | 119 --------
 etc/ide-settings/editorconfig.ini                  |  11 -
 etc/ide-settings/idea/IDEA-style.jar               | Bin 3286 -> 0 bytes
 etc/ide-settings/idea/artemis-codestyle.xml        |  52 ----
 etc/ide-settings/idea/artemis-inspections.xml      |   8 -
 10 files changed, 674 deletions(-)

diff --git a/docs/hacking-guide/_formatting.adoc 
b/docs/hacking-guide/_formatting.adoc
deleted file mode 100644
index 824cc2434a..0000000000
--- a/docs/hacking-guide/_formatting.adoc
+++ /dev/null
@@ -1,26 +0,0 @@
-= Code Formatting
-
-== IDEA
-
-If you completed the step described on 
xref:_ide.adoc#style-templates-and-inspection-settings-for-idea[idea 
instructions], and selected the code style accordingly you should be ready to 
go.
-
-== Eclipse
-
-Eclipse code formatting and (basic) project configuration files can be found 
at the `etc/` folder.
-You should manually  copy them _after importing all your projects_:
-[,console]
-----
-for settings_dir in `find . -type d -name .settings`; do
-\cp -v etc/ide-settings/eclipse/org.eclipse.jdt.* $settings_dir
-done
-----
-Do not use the 
https://maven.apache.org/plugins/maven-eclipse-plugin/[maven-eclipse-plugin] to 
copy the files as it  conflicts with https://eclipse.org/m2e/[m2e].
-
-== EditorConfig
-
-For editors supporting http://editorconfig.org/[EditorConfig], a settings file 
is provided in etc/ide-settings/editorconfig.ini.
-Copy it to your Artemis top level directory and 
http://editorconfig.org/#file-location[name it .editorconfig]
-
-== JavaDoc
-
-There's no formal enforcement of the JavaDoc style
\ No newline at end of file
diff --git a/docs/hacking-guide/_ide.adoc b/docs/hacking-guide/_ide.adoc
deleted file mode 100644
index 01eb068569..0000000000
--- a/docs/hacking-guide/_ide.adoc
+++ /dev/null
@@ -1,143 +0,0 @@
-= IDE Integration
-
-There a few files useful for IDE integration under ./etc/ide-settings on a 
checked out folder.
-This folder is not part of the source distribution, but it can be easily 
obtained:
-
-* https://github.com/apache/activemq-artemis/tree/main/etc/ide-settings
-
-== IntelliJ IDEA
-
-=== Importing the Project
-
-The following steps show how to open the ActiveMQ Artemis maven project in 
IntelliJ IDEA and setup the correct maven profile to allow running of JUnit 
tests from within the IDE.
-(Steps are based on version: 2018.2)
-
-* Starting from a clean clone
-* Build the activemq-artemis source using the maven 'dev' profile:
-+
-[,console]
-----
-$ mvn -Pdev install -DskipTests
-----
-* Await and ensure the outcome is `BUILD SUCCESS`
-* Launch IntelliJ
-* From the 'Welcome to IntelliJ IDEA' screen select 'Open'
-* From the 'Open File or Project' screen select the `pom.xml` file in the 
cloned `activemq-artemis` directory
-* From the 'Open Project' screen select 'Open as Project'
-
-This should open the main IntelliJ IDEA window where you will notice some 
background tasks running via the bottom status bar.
-These background tasks should successfully import and index the project 
automatically.
-
-Once the project has been imported and IntelliJ IDEA has caught up importing 
all the relevant dependencies, you should be able to run JUnit tests from with 
the IDE.
-Select any test class in the tests \-> integration tests folder.
-Right click on the class in the project tab and click "Run <classname>".
-If the "Run <classname>" option is present then you're all set to go.
-
-=== Note about IBM JDK on IDEA
-
-If you are running IBM JDK it may be a little tricky to get it working.
-
-After you add the JDK to the IDE, add also the `vm.jar` specific to your 
platform under that JDK (e.g. 
`JAVA_HOME/jre/lib/amd64/default/jclSC180/vm.jar`).
-
-There's a 
https://stackoverflow.com/questions/27906481/can-intellij-14-be-used-to-work-with-ibm-jdk-1-7/32852361#32852361[StackOverflow
 question] about this that could be useful in case you are running into this 
issue.
-
-=== Style Templates and Inspection Settings for IDEA
-
-We have shared the style templates that are good for this project.
-If you want to apply them use these steps:
-
-* File\->Import Settings
-* Select the file under 
./artemis-cloned-folder/etc/ide-settings/idea/IDEA-style.jar
-* Select both Code Style Templates and File templates (it's the default option)
-* Select OK and restart IDEA
-
-Alternatively you can copy `artemis-codestyle.xml` under your home settings at 
`IntelliJIdea15/codestyles`.
-
-==== To import inspection settings:
-
-* File\->Settings\->Editor\->Inspections\->Manage\->Import
-* Select the file 
`./artemis-cloned-folder/etc/ide-settings/idea/artemis-inspections.xml`
-* Select OK
-
-=== Issue: My JUnit tests are not runnable with in the IDE.
-
-If the "Run <classname>" or "Run all tests" option is not present it is likely 
that the default profile has not been imported properly.
-To (re)import the "tests" Maven profile in an existing project do the 
following:
-
-* Open the Maven Projects Tool Window: View \-> Tool Windows \-> Maven Projects
-* Select the "profiles" drop down
-* Unselect then reselect the checkbox next to "tests".
-* Click on the "Reimport all maven projects" button in the top left hand 
corner of the window.
-It looks like a circular blue arrow.
-* Wait for IDEA to reload and try running a JUnit test again.
- The option to run should now be present.
-
-== Eclipse
-
-We recommend using Eclipse Kepler (4.3), due to the built-in support for Maven 
and Git.
-Note that there are still some Maven plugins used by sub-projects (e.g. 
documentation) which are not supported even in Eclipse Kepler (4.3).
-
-Eclipse https://eclipse.org/m2e/[m2e] is already included in "Eclipse IDE for 
Java Developers", or it can be installed from 
http://download.eclipse.org/releases/kepler[Eclipse Kepler release repository].
-
-=== Git setup
-
-It is strongly recommended to turn off the auto-updating of `.gitignore` files 
by the Git Team extension.
-Otherwise, it generates new `.gitignore` files in many directories that are 
not needed due to the top level `.gitignore` file.
-To turn it off, go to Preferences\->Team\->Git\->Projects and deselect the 
"Automatically ignore derived resources" checkbox.
-
-=== Schema setup
-
-For proper schema validation you can add the Artemis schemas to your Eclipse 
XML Catalog
-
-* Open: Window \-> Preferences \-> XML \-> XML Catalog
-* Select Add \-> Workspace \-> Navigate to artemis-server and select 
src/main/resources/schema/artemis-server.xsd \-> click OK
-* Repeat the above steps and add 
src/main/resources/schema/artemis-configuration.xsd
-
-=== Checkstyle setup
-
-You can import the Artemis Checkstyle template into eclipse to do Checkstyle 
validation.
-As a prerequisite you need to make sure the Checkstyle plugin is installed 
into Eclipse which you can get form the Eclipse Marketplace.
-You also will need to configure Sevntu-Checkstyle.
-See https://sevntu-checkstyle.github.io/sevntu.checkstyle/ for instructions.
-Then to configure the template:
-
-* Open: Window \-> Preferences \-> Checkstyle
-* Select New \-> "Project Relative Configuration" in the "Type" dropdown
-* Give the configuration a name and under location put 
"/artemis-pom/etc/checkstyle.xml" then hit ok
-* You should now see your new configuration in the list of Checkstyle profiles.
-  You can select the new configuration as the default if you want.
-
-=== Annotation Pre-Processing
-
-ActiveMQ Artemis uses 
https://developer.jboss.org/wiki/JBossLoggingTooling[JBoss Logging] and that 
requires source code generation from Java annotations.
-In order for it to 'just work' in Eclipse you need to install the _Maven 
Integration for Eclipse JDT Annotation Processor Toolkit_ 
https://github.com/jbosstools/m2e-apt[m2e-apt].
-See this 
https://community.jboss.org/en/tools/blog/2012/05/20/annotation-processing-support-in-m2e-or-m2e-apt-100-is-out[JBoss
 blog post]  for details.
-
-=== Running tests from Eclipse
-
-Setting up annotation pre-processing in the above section is all you need to 
run tests in the "unit-tests" project as that will properly add the generated 
logger to the source.
-However, one more step is needed to run tests in other projects such as 
"performance-tests" or "integration-tests" that have a dependency on 
"unit-tests".
-Currently m2eclipse does not properly link the generated source annotations 
folder from "unit-tests" which causes the logger that is generated to not be 
available.
-To simplest way to fix this is to manually add a project dependency on 
"unit-tests" to each of the projects where you want to run a test class from:
-
-* Right click on the test project (i.e. integration-tests): Properties \-> 
Java Build Path \-> Projects \-> Add
-* Select the "unit-tests" project and click Ok
-
-You should now be able to run tests assuming that the annotation 
pre-processing was set up properly in the previous step.
-
-=== M2E Connector for Javacc-Maven-Plugin
-
-Eclipse Indigo (3.7) has out-of-the-box support for it.
-
-As of this writing, Eclipse Kepler (4.3) still lacks support for Maven's 
javacc plugin.
-The available https://github.com/objectledge/maven-extensions[m2e connector 
for javacc-maven-plugin] requires a downgrade of Maven components to be 
installed.
-manual installation instructions (as of this writing you need to use the 
development update site).
-See https://dev.eclipse.org/mhonarc/lists/m2e-users/msg02725.html[this post] 
for how to do this with Eclipse Juno (4.2).
-
-The current recommended solution for Eclipse Kepler is to mark 
`javacc-maven-plugin` as ignored by Eclipse, run Maven from the command line 
and then modify the project `activemq-core-client` adding the folder 
`target/generated-sources/javacc` to its build path.
-
-=== Use _Project Working Sets_
-
-Importing all ActiveMQ Artemis subprojects will create _too many_ projects in 
Eclipse, cluttering your _Package Explorer_ and _Project Explorer_ views.
-One way to address that is to use 
https://help.eclipse.org/juno/index.jsp?topic=%2Forg.eclipse.platform.doc.user%2Fconcepts%2Fcworkset.htm[Eclipse's
 Working Sets] feature.
-A good introduction to it can be found at a 
https://dzone.com/articles/categorise-projects-package[Dzone article on Eclipse 
Working Sets].
diff --git a/docs/hacking-guide/index.adoc b/docs/hacking-guide/index.adoc
index 67949a8c13..9ca2bec3b3 100644
--- a/docs/hacking-guide/index.adoc
+++ b/docs/hacking-guide/index.adoc
@@ -3,11 +3,9 @@
 This hacking guide outlines how developers can get involved in contributing to 
the Apache ActiveMQ Artemis project.
 
 include::_code.adoc[leveloffset=1]
-include::_ide.adoc[leveloffset=1]
 include::_building.adoc[leveloffset=1]
 include::_tests.adoc[leveloffset=1]
 include::_code-coverage-report.adoc[leveloffset=1]
-include::_formatting.adoc[leveloffset=1]
 include::_validating-releases.adoc[leveloffset=1]
 include::_maintainers.adoc[leveloffset=1]
 include::_history.adoc[leveloffset=1]
diff --git a/etc/ide-settings/README.md b/etc/ide-settings/README.md
deleted file mode 100644
index 121fac835b..0000000000
--- a/etc/ide-settings/README.md
+++ /dev/null
@@ -1,6 +0,0 @@
-## IDE Files
-
-
-Include any files that are specific to IDE such as settings, etc.
-
-These directories are ignored from the source release, so they will only be 
available through the source repository checkout or clone.
diff --git a/etc/ide-settings/eclipse/org.eclipse.jdt.core.prefs 
b/etc/ide-settings/eclipse/org.eclipse.jdt.core.prefs
deleted file mode 100644
index d384ecbc86..0000000000
--- a/etc/ide-settings/eclipse/org.eclipse.jdt.core.prefs
+++ /dev/null
@@ -1,307 +0,0 @@
-eclipse.preferences.version=1
-org.eclipse.jdt.core.codeComplete.argumentPrefixes=
-org.eclipse.jdt.core.codeComplete.argumentSuffixes=
-org.eclipse.jdt.core.codeComplete.fieldPrefixes=
-org.eclipse.jdt.core.codeComplete.fieldSuffixes=
-org.eclipse.jdt.core.codeComplete.localPrefixes=
-org.eclipse.jdt.core.codeComplete.localSuffixes=
-org.eclipse.jdt.core.codeComplete.staticFieldPrefixes=
-org.eclipse.jdt.core.codeComplete.staticFieldSuffixes=
-org.eclipse.jdt.core.codeComplete.staticFinalFieldPrefixes=
-org.eclipse.jdt.core.codeComplete.staticFinalFieldSuffixes=
-org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
-org.eclipse.jdt.core.compiler.codegen.unusedLocal=optimize out
-org.eclipse.jdt.core.compiler.compliance=1.7
-org.eclipse.jdt.core.compiler.debug.lineNumber=generate
-org.eclipse.jdt.core.compiler.debug.localVariable=generate
-org.eclipse.jdt.core.compiler.debug.sourceFile=generate
-org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
-org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
-org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
-org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=error
-org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotationForInterfaceMethodImplementation=enabled
-org.eclipse.jdt.core.compiler.processAnnotations=enabled
-org.eclipse.jdt.core.compiler.source=1.7
-org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
-org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=18
-org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation=16
-org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=82
-org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call=18
-org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation=18
-org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression=16
-org.eclipse.jdt.core.formatter.alignment_for_assignment=16
-org.eclipse.jdt.core.formatter.alignment_for_binary_expression=16
-org.eclipse.jdt.core.formatter.alignment_for_compact_if=82
-org.eclipse.jdt.core.formatter.alignment_for_conditional_expression=18
-org.eclipse.jdt.core.formatter.alignment_for_enum_constants=82
-org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer=82
-org.eclipse.jdt.core.formatter.alignment_for_method_declaration=16
-org.eclipse.jdt.core.formatter.alignment_for_multiple_fields=16
-org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration=18
-org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration=18
-org.eclipse.jdt.core.formatter.alignment_for_resources_in_try=80
-org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation=82
-org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration=16
-org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration=82
-org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration=16
-org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration=82
-org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration=18
-org.eclipse.jdt.core.formatter.alignment_for_union_type_in_multicatch=16
-org.eclipse.jdt.core.formatter.blank_lines_after_imports=1
-org.eclipse.jdt.core.formatter.blank_lines_after_package=1
-org.eclipse.jdt.core.formatter.blank_lines_before_field=0
-org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration=0
-org.eclipse.jdt.core.formatter.blank_lines_before_imports=1
-org.eclipse.jdt.core.formatter.blank_lines_before_member_type=1
-org.eclipse.jdt.core.formatter.blank_lines_before_method=1
-org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk=0
-org.eclipse.jdt.core.formatter.blank_lines_before_package=0
-org.eclipse.jdt.core.formatter.blank_lines_between_import_groups=1
-org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations=1
-org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration=same_line
-org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration=same_line
-org.eclipse.jdt.core.formatter.brace_position_for_array_initializer=end_of_line
-org.eclipse.jdt.core.formatter.brace_position_for_block=same_line
-org.eclipse.jdt.core.formatter.brace_position_for_block_in_case=same_line
-org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration=same_line
-org.eclipse.jdt.core.formatter.brace_position_for_enum_constant=same_line
-org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration=same_line
-org.eclipse.jdt.core.formatter.brace_position_for_method_declaration=same_line
-org.eclipse.jdt.core.formatter.brace_position_for_switch=same_line
-org.eclipse.jdt.core.formatter.brace_position_for_type_declaration=same_line
-org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment=true
-org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment=true
-org.eclipse.jdt.core.formatter.comment.format_block_comments=true
-org.eclipse.jdt.core.formatter.comment.format_header=false
-org.eclipse.jdt.core.formatter.comment.format_html=true
-org.eclipse.jdt.core.formatter.comment.format_javadoc_comments=true
-org.eclipse.jdt.core.formatter.comment.format_line_comments=true
-org.eclipse.jdt.core.formatter.comment.format_source_code=true
-org.eclipse.jdt.core.formatter.comment.indent_parameter_description=true
-org.eclipse.jdt.core.formatter.comment.indent_root_tags=true
-org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags=do not 
insert
-org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter=do not 
insert
-org.eclipse.jdt.core.formatter.comment.line_length=100
-org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries=true
-org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries=true
-org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments=false
-org.eclipse.jdt.core.formatter.compact_else_if=true
-org.eclipse.jdt.core.formatter.continuation_indentation=3
-org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer=3
-org.eclipse.jdt.core.formatter.disabling_tag=@formatter\:off
-org.eclipse.jdt.core.formatter.enabling_tag=@formatter\:on
-org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line=false
-org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column=false
-org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header=true
-org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header=true
-org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header=true
-org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header=true
-org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases=true
-org.eclipse.jdt.core.formatter.indent_empty_lines=false
-org.eclipse.jdt.core.formatter.indent_statements_compare_to_block=true
-org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true
-org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true
-org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=true
-org.eclipse.jdt.core.formatter.indentation.size=3
-org.eclipse.jdt.core.formatter.insert_new_line_after_annotation=insert
-org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field=insert
-org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable=insert
-org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_member=insert
-org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method=insert
-org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package=insert
-org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter=insert
-org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type=insert
-org.eclipse.jdt.core.formatter.insert_new_line_after_label=do not insert
-org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do
 not insert
-org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing=do 
not insert
-org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=do
 not insert
-org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer=do
 not insert
-org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement=do 
not insert
-org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement=do
 not insert
-org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement=do 
not insert
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration=insert
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration=insert
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block=insert
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant=insert
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration=insert
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body=insert
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration=insert
-org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter=insert
-org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator=insert
-org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation=do not 
insert
-org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_after_binary_operator=insert
-org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments=insert
-org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters=insert
-org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block=insert
-org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast=insert
-org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert=insert
-org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case=insert
-org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional=insert
-org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for=insert
-org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters=insert
-org.eclipse.jdt.core.formatter.insert_space_after_ellipsis=insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer=insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast=do not 
insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch=do 
not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for=do not 
insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if=do not 
insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch=do 
not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try=do not 
insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while=do 
not insert
-org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator=do not 
insert
-org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional=insert
-org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard=do not 
insert
-org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for=insert
-org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources=insert
-org.eclipse.jdt.core.formatter.insert_space_after_unary_operator=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter=insert
-org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator=insert
-org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration=insert
-org.eclipse.jdt.core.formatter.insert_space_before_binary_operator=insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer=insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast=do 
not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch=do 
not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for=do not 
insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if=do not 
insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch=do 
not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_try=do not 
insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while=do 
not insert
-org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert=insert
-org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional=insert
-org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default=do not 
insert
-org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for=insert
-org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation=do not 
insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments=do 
not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits=do not 
insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces=do 
not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments=do 
not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters=do 
not insert
-org.eclipse.jdt.core.formatter.insert_space_before_ellipsis=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_try=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while=insert
-org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return=insert
-org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw=insert
-org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator=do not 
insert
-org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator=do not 
insert
-org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional=insert
-org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard=do not 
insert
-org.eclipse.jdt.core.formatter.insert_space_before_semicolon=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for=do not 
insert
-org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_before_unary_operator=do not insert
-org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration=do
 not insert
-org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation=do
 not insert
-org.eclipse.jdt.core.formatter.join_lines_in_comments=true
-org.eclipse.jdt.core.formatter.join_wrapped_lines=true
-org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line=false
-org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line=true
-org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line=false
-org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line=false
-org.eclipse.jdt.core.formatter.lineSplit=120
-org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column=false
-org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column=false
-org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body=0
-org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve=1
-org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line=false
-org.eclipse.jdt.core.formatter.tabulation.char=space
-org.eclipse.jdt.core.formatter.tabulation.size=3
-org.eclipse.jdt.core.formatter.use_on_off_tags=true
-org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations=false
-org.eclipse.jdt.core.formatter.wrap_before_binary_operator=false
-org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch=true
-org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested=true
diff --git a/etc/ide-settings/eclipse/org.eclipse.jdt.ui.prefs 
b/etc/ide-settings/eclipse/org.eclipse.jdt.ui.prefs
deleted file mode 100644
index 4b2bd25680..0000000000
--- a/etc/ide-settings/eclipse/org.eclipse.jdt.ui.prefs
+++ /dev/null
@@ -1,119 +0,0 @@
-#Thu Nov 10 13:53:54 CET 2011
-cleanup.add_default_serial_version_id=false
-cleanup.add_generated_serial_version_id=true
-cleanup.add_missing_annotations=true
-cleanup.add_missing_deprecated_annotations=true
-cleanup.add_missing_methods=false
-cleanup.add_missing_nls_tags=false
-cleanup.add_missing_override_annotations=true
-cleanup.add_serial_version_id=true
-cleanup.always_use_blocks=true
-cleanup.always_use_parentheses_in_expressions=false
-cleanup.always_use_this_for_non_static_field_access=false
-cleanup.always_use_this_for_non_static_method_access=false
-cleanup.convert_to_enhanced_for_loop=true
-cleanup.correct_indentation=true
-cleanup.format_source_code=true
-cleanup.format_source_code_changes_only=false
-cleanup.make_local_variable_final=false
-cleanup.make_parameters_final=true
-cleanup.make_private_fields_final=true
-cleanup.make_type_abstract_if_missing_method=false
-cleanup.make_variable_declarations_final=true
-cleanup.never_use_blocks=false
-cleanup.never_use_parentheses_in_expressions=true
-cleanup.organize_imports=true
-cleanup.qualify_static_field_accesses_with_declaring_class=true
-cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true
-cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true
-cleanup.qualify_static_member_accesses_with_declaring_class=true
-cleanup.qualify_static_method_accesses_with_declaring_class=true
-cleanup.remove_private_constructors=true
-cleanup.remove_trailing_whitespaces=true
-cleanup.remove_trailing_whitespaces_all=true
-cleanup.remove_trailing_whitespaces_ignore_empty=false
-cleanup.remove_unnecessary_casts=true
-cleanup.remove_unnecessary_nls_tags=true
-cleanup.remove_unused_imports=true
-cleanup.remove_unused_local_variables=false
-cleanup.remove_unused_private_fields=true
-cleanup.remove_unused_private_members=true
-cleanup.remove_unused_private_methods=true
-cleanup.remove_unused_private_types=true
-cleanup.sort_members=false
-cleanup.sort_members_all=false
-cleanup.use_blocks=true
-cleanup.use_blocks_only_for_return_and_throw=false
-cleanup.use_parentheses_in_expressions=true
-cleanup.use_this_for_non_static_field_access=true
-cleanup.use_this_for_non_static_field_access_only_if_necessary=true
-cleanup.use_this_for_non_static_method_access=true
-cleanup.use_this_for_non_static_method_access_only_if_necessary=true
-cleanup_profile=_ActiveMQ profile
-cleanup_settings_version=2
-eclipse.preferences.version=1
-editor_save_participant_org.eclipse.jdt.ui.postsavelistener.cleanup=true
-formatter_profile=_'ActiveMQ'
-formatter_settings_version=12
-org.eclipse.jdt.ui.exception.name=e
-org.eclipse.jdt.ui.gettersetter.use.is=true
-org.eclipse.jdt.ui.ignorelowercasenames=true
-org.eclipse.jdt.ui.importorder=java;javax;com;org;
-org.eclipse.jdt.ui.javadoc=true
-org.eclipse.jdt.ui.keywordthis=false
-org.eclipse.jdt.ui.ondemandthreshold=9999
-org.eclipse.jdt.ui.overrideannotation=true
-org.eclipse.jdt.ui.staticondemandthreshold=9999
-org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" 
encoding\="UTF-8" standalone\="no"?><templates><template autoinsert\="true" 
context\="gettercomment_context" deleted\="false" description\="Comment for 
getter method" enabled\="true" 
id\="org.eclipse.jdt.ui.text.codetemplates.gettercomment" 
name\="gettercomment">/**\n * @return the ${bare_field_name}\n 
*/</template><template autoinsert\="true" context\="settercomment_context" 
deleted\="false" description\="Comment for set [...]
-sp_cleanup.add_default_serial_version_id=true
-sp_cleanup.add_generated_serial_version_id=false
-sp_cleanup.add_missing_annotations=true
-sp_cleanup.add_missing_deprecated_annotations=true
-sp_cleanup.add_missing_methods=false
-sp_cleanup.add_missing_nls_tags=false
-sp_cleanup.add_missing_override_annotations=true
-sp_cleanup.add_missing_override_annotations_interface_methods=false
-sp_cleanup.add_serial_version_id=false
-sp_cleanup.always_use_blocks=false
-sp_cleanup.always_use_parentheses_in_expressions=false
-sp_cleanup.always_use_this_for_non_static_field_access=false
-sp_cleanup.always_use_this_for_non_static_method_access=false
-sp_cleanup.convert_to_enhanced_for_loop=true
-sp_cleanup.correct_indentation=false
-sp_cleanup.format_source_code=true
-sp_cleanup.format_source_code_changes_only=true
-sp_cleanup.make_local_variable_final=false
-sp_cleanup.make_parameters_final=false
-sp_cleanup.make_private_fields_final=true
-sp_cleanup.make_type_abstract_if_missing_method=false
-sp_cleanup.make_variable_declarations_final=true
-sp_cleanup.never_use_blocks=false
-sp_cleanup.never_use_parentheses_in_expressions=true
-sp_cleanup.on_save_use_additional_actions=true
-sp_cleanup.organize_imports=true
-sp_cleanup.qualify_static_field_accesses_with_declaring_class=false
-sp_cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true
-sp_cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true
-sp_cleanup.qualify_static_member_accesses_with_declaring_class=true
-sp_cleanup.qualify_static_method_accesses_with_declaring_class=false
-sp_cleanup.remove_private_constructors=true
-sp_cleanup.remove_trailing_whitespaces=true
-sp_cleanup.remove_trailing_whitespaces_all=true
-sp_cleanup.remove_trailing_whitespaces_ignore_empty=false
-sp_cleanup.remove_unnecessary_casts=true
-sp_cleanup.remove_unnecessary_nls_tags=false
-sp_cleanup.remove_unused_imports=true
-sp_cleanup.remove_unused_local_variables=false
-sp_cleanup.remove_unused_private_fields=true
-sp_cleanup.remove_unused_private_members=false
-sp_cleanup.remove_unused_private_methods=true
-sp_cleanup.remove_unused_private_types=true
-sp_cleanup.sort_members=false
-sp_cleanup.sort_members_all=false
-sp_cleanup.use_blocks=false
-sp_cleanup.use_blocks_only_for_return_and_throw=true
-sp_cleanup.use_parentheses_in_expressions=false
-sp_cleanup.use_this_for_non_static_field_access=false
-sp_cleanup.use_this_for_non_static_field_access_only_if_necessary=true
-sp_cleanup.use_this_for_non_static_method_access=false
-sp_cleanup.use_this_for_non_static_method_access_only_if_necessary=true
diff --git a/etc/ide-settings/editorconfig.ini 
b/etc/ide-settings/editorconfig.ini
deleted file mode 100644
index 874dc21db2..0000000000
--- a/etc/ide-settings/editorconfig.ini
+++ /dev/null
@@ -1,11 +0,0 @@
-# Copy to your Artemis top level dir and rename to .editorconfig
-# http://editorconfig.org/#file-location
-
-[*.{java,xml}]
-indent_style = space
-indent_size = 3
-tab_width = 3
-end_of_line = lf
-charset = utf-8
-trim_trailing_whitespace = true
-insert_final_newline = true
diff --git a/etc/ide-settings/idea/IDEA-style.jar 
b/etc/ide-settings/idea/IDEA-style.jar
deleted file mode 100644
index 8e400805ae..0000000000
Binary files a/etc/ide-settings/idea/IDEA-style.jar and /dev/null differ
diff --git a/etc/ide-settings/idea/artemis-codestyle.xml 
b/etc/ide-settings/idea/artemis-codestyle.xml
deleted file mode 100644
index e336530c05..0000000000
--- a/etc/ide-settings/idea/artemis-codestyle.xml
+++ /dev/null
@@ -1,52 +0,0 @@
-<code_scheme name="artemis-codestyle">
-  <option name="CLASS_COUNT_TO_USE_IMPORT_ON_DEMAND" value="50000" />
-  <option name="NAMES_COUNT_TO_USE_IMPORT_ON_DEMAND" value="30000" />
-  <option name="PACKAGES_TO_USE_IMPORT_ON_DEMAND">
-    <value />
-  </option>
-  <option name="IMPORT_LAYOUT_TABLE">
-    <value>
-      <package name="javax" withSubpackages="true" static="false" />
-      <package name="java" withSubpackages="true" static="false" />
-      <emptyLine />
-      <package name="junit.framework" withSubpackages="true" static="false" />
-      <emptyLine />
-      <package name="" withSubpackages="true" static="false" />
-      <emptyLine />
-      <package name="" withSubpackages="true" static="true" />
-    </value>
-  </option>
-  <option name="JD_P_AT_EMPTY_LINES" value="false" />
-  <option name="JD_PRESERVE_LINE_FEEDS" value="true" />
-  <MarkdownNavigatorCodeStyleSettings>
-    <option name="RIGHT_MARGIN" value="72" />
-  </MarkdownNavigatorCodeStyleSettings>
-  <XML>
-    <option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" />
-  </XML>
-  <codeStyleSettings language="JAVA">
-    <option name="KEEP_LINE_BREAKS" value="false" />
-    <option name="KEEP_FIRST_COLUMN_COMMENT" value="false" />
-    <option name="KEEP_CONTROL_STATEMENT_IN_ONE_LINE" value="false" />
-    <option name="KEEP_BLANK_LINES_IN_DECLARATIONS" value="1" />
-    <option name="KEEP_BLANK_LINES_IN_CODE" value="1" />
-    <option name="KEEP_BLANK_LINES_BEFORE_RBRACE" value="1" />
-    <option name="BLANK_LINES_AFTER_CLASS_HEADER" value="1" />
-    <option name="ALIGN_MULTILINE_PARAMETERS_IN_CALLS" value="true" />
-    <option name="METHOD_PARAMETERS_WRAP" value="5" />
-    <option name="WHILE_BRACE_FORCE" value="3" />
-    <option name="VARIABLE_ANNOTATION_WRAP" value="2" />
-    <indentOptions>
-      <option name="INDENT_SIZE" value="3" />
-      <option name="CONTINUATION_INDENT_SIZE" value="3" />
-      <option name="TAB_SIZE" value="3" />
-      <option name="LABEL_INDENT_SIZE" value="-3" />
-    </indentOptions>
-  </codeStyleSettings>
-  <codeStyleSettings language="XML">
-    <indentOptions>
-      <option name="INDENT_SIZE" value="3" />
-      <option name="TAB_SIZE" value="3" />
-    </indentOptions>
-  </codeStyleSettings>
-</code_scheme>
diff --git a/etc/ide-settings/idea/artemis-inspections.xml 
b/etc/ide-settings/idea/artemis-inspections.xml
deleted file mode 100644
index c6ec80bc27..0000000000
--- a/etc/ide-settings/idea/artemis-inspections.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<inspections version="1.0">
-  <option name="myName" value="Artemis" />
-  <inspection_tool class="MissingOverrideAnnotation" enabled="true" 
level="ERROR" enabled_by_default="true">
-    <option name="ignoreObjectMethods" value="false" />
-    <option name="ignoreAnonymousClassMethods" value="false" />
-  </inspection_tool>
-</inspections>


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact



Reply via email to