You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2020/05/04 14:54:34 UTC

[tomcat] branch master updated (4efa2ec -> 14675f8)

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

markt pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat.git.


    from 4efa2ec  Fix IDE warnings
     new ddadf5b  Improve IDE support for IntelliJ IDEA
     new fe225da  Add copyright configuration for IntelliJ IDEA
     new 14675f8  Add ant configuration for IntelliJ IDEA

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 res/ide-support/idea/ant.xml                                |  6 ++++++
 res/ide-support/idea/codeStyles/Project.xml                 | 13 +++++++++++++
 res/ide-support/idea/codeStyles/codeStyleConfig.xml         |  5 +++++
 res/ide-support/idea/copyright/Tomcat.xml                   |  6 ++++++
 res/ide-support/idea/copyright/profiles_settings.xml        |  3 +++
 res/ide-support/idea/externalDependencies.xml               | 12 ++++++++++++
 res/ide-support/idea/inspectionProfiles/Project_Default.xml | 11 +++++++++++
 7 files changed, 56 insertions(+)
 create mode 100644 res/ide-support/idea/ant.xml
 create mode 100644 res/ide-support/idea/codeStyles/Project.xml
 create mode 100644 res/ide-support/idea/codeStyles/codeStyleConfig.xml
 create mode 100644 res/ide-support/idea/copyright/Tomcat.xml
 create mode 100644 res/ide-support/idea/copyright/profiles_settings.xml
 create mode 100644 res/ide-support/idea/externalDependencies.xml
 create mode 100644 res/ide-support/idea/inspectionProfiles/Project_Default.xml


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[tomcat] 01/03: Improve IDE support for IntelliJ IDEA

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat.git

commit ddadf5b7ecd856fc309a5c70eb9f46286703740a
Author: Lars Grefer <la...@materna.de>
AuthorDate: Thu Apr 23 18:33:03 2020 +0200

    Improve IDE support for IntelliJ IDEA
    
    Move IntelliJ specific files to res/ide-support
---
 res/ide-support/idea/codeStyles/Project.xml                 | 13 +++++++++++++
 res/ide-support/idea/codeStyles/codeStyleConfig.xml         |  5 +++++
 res/ide-support/idea/externalDependencies.xml               | 12 ++++++++++++
 res/ide-support/idea/inspectionProfiles/Project_Default.xml | 11 +++++++++++
 4 files changed, 41 insertions(+)

diff --git a/res/ide-support/idea/codeStyles/Project.xml b/res/ide-support/idea/codeStyles/Project.xml
new file mode 100644
index 0000000..54fe072
--- /dev/null
+++ b/res/ide-support/idea/codeStyles/Project.xml
@@ -0,0 +1,13 @@
+<component name="ProjectCodeStyleConfiguration">
+  <code_scheme name="Project" version="173">
+    <codeStyleSettings language="JAVA">
+      <option name="RIGHT_MARGIN" value="100" />
+      <option name="WRAP_ON_TYPING" value="0" />
+    </codeStyleSettings>
+    <codeStyleSettings language="XML">
+      <indentOptions>
+        <option name="INDENT_SIZE" value="2" />
+      </indentOptions>
+    </codeStyleSettings>
+  </code_scheme>
+</component>
\ No newline at end of file
diff --git a/res/ide-support/idea/codeStyles/codeStyleConfig.xml b/res/ide-support/idea/codeStyles/codeStyleConfig.xml
new file mode 100644
index 0000000..79ee123
--- /dev/null
+++ b/res/ide-support/idea/codeStyles/codeStyleConfig.xml
@@ -0,0 +1,5 @@
+<component name="ProjectCodeStyleConfiguration">
+  <state>
+    <option name="USE_PER_PROJECT_SETTINGS" value="true" />
+  </state>
+</component>
\ No newline at end of file
diff --git a/res/ide-support/idea/externalDependencies.xml b/res/ide-support/idea/externalDependencies.xml
new file mode 100644
index 0000000..eade272
--- /dev/null
+++ b/res/ide-support/idea/externalDependencies.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="ExternalDependencies">
+    <plugin id="AntSupport" />
+    <plugin id="Git4Idea" />
+    <plugin id="HtmlTools" />
+    <plugin id="Tomcat" />
+    <plugin id="com.intellij.java" />
+    <plugin id="com.intellij.javaee" />
+    <plugin id="com.intellij.jsp" />
+  </component>
+</project>
\ No newline at end of file
diff --git a/res/ide-support/idea/inspectionProfiles/Project_Default.xml b/res/ide-support/idea/inspectionProfiles/Project_Default.xml
new file mode 100644
index 0000000..38495a4
--- /dev/null
+++ b/res/ide-support/idea/inspectionProfiles/Project_Default.xml
@@ -0,0 +1,11 @@
+<component name="InspectionProjectProfileManager">
+  <profile version="1.0">
+    <option name="myName" value="Project Default" />
+    <inspection_tool class="AutoBoxing" enabled="true" level="WARNING" enabled_by_default="true">
+      <option name="ignoreAddedToCollection" value="false" />
+    </inspection_tool>
+    <inspection_tool class="AutoUnboxing" enabled="true" level="WARNING" enabled_by_default="true" />
+    <inspection_tool class="UnnecessaryBoxing" enabled="false" level="WARNING" enabled_by_default="false" />
+    <inspection_tool class="UnnecessaryUnboxing" enabled="false" level="WARNING" enabled_by_default="false" />
+  </profile>
+</component>
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[tomcat] 02/03: Add copyright configuration for IntelliJ IDEA

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat.git

commit fe225da1ed99dd28407209358ce2052c85c09fa2
Author: Lars Grefer <gi...@larsgrefer.de>
AuthorDate: Fri Apr 24 00:22:38 2020 +0200

    Add copyright configuration for IntelliJ IDEA
---
 res/ide-support/idea/copyright/Tomcat.xml            | 6 ++++++
 res/ide-support/idea/copyright/profiles_settings.xml | 3 +++
 2 files changed, 9 insertions(+)

diff --git a/res/ide-support/idea/copyright/Tomcat.xml b/res/ide-support/idea/copyright/Tomcat.xml
new file mode 100644
index 0000000..2982350
--- /dev/null
+++ b/res/ide-support/idea/copyright/Tomcat.xml
@@ -0,0 +1,6 @@
+<component name="CopyrightManager">
+  <copyright>
+    <option name="notice" value="Licensed to the Apache Software Foundation (ASF) under one or more&#10;contributor license agreements.  See the NOTICE file distributed with&#10;this work for additional information regarding copyright ownership.&#10;The ASF licenses this file to You under the Apache License, Version 2.0&#10;(the &quot;License&quot;); you may not use this file except in compliance with&#10;the License.  You may obtain a copy of the License at&#10;&#10;     http://www.apac [...]
+    <option name="myName" value="Tomcat" />
+  </copyright>
+</component>
\ No newline at end of file
diff --git a/res/ide-support/idea/copyright/profiles_settings.xml b/res/ide-support/idea/copyright/profiles_settings.xml
new file mode 100644
index 0000000..0970355
--- /dev/null
+++ b/res/ide-support/idea/copyright/profiles_settings.xml
@@ -0,0 +1,3 @@
+<component name="CopyrightManager">
+  <settings default="Tomcat" />
+</component>
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[tomcat] 03/03: Add ant configuration for IntelliJ IDEA

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat.git

commit 14675f87fe88e1bf9dd64dd789a1970466d47116
Author: Lars Grefer <gi...@larsgrefer.de>
AuthorDate: Fri Apr 24 00:23:43 2020 +0200

    Add ant configuration for IntelliJ IDEA
---
 res/ide-support/idea/ant.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/res/ide-support/idea/ant.xml b/res/ide-support/idea/ant.xml
new file mode 100644
index 0000000..a2a4769
--- /dev/null
+++ b/res/ide-support/idea/ant.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="AntConfiguration">
+    <buildFile url="file://$PROJECT_DIR$/build.xml" />
+  </component>
+</project>
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org