You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by sn...@apache.org on 2019/09/23 08:44:53 UTC

[nutch] branch master updated: NUTCH-1982 Make Git ignore IDE project files and add note about IDE setup - apply and update patch contributed by Marko Asplund

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 600c298  NUTCH-1982 Make Git ignore IDE project files and add note about IDE setup - apply and update patch contributed by Marko Asplund
     new f1c352e  Merge pull request #471 from sebastian-nagel/NUTCH-1982-ide-setup
600c298 is described below

commit 600c298db0f70a0d587011bb29fcf65ddb014bdd
Author: Sebastian Nagel <sn...@apache.org>
AuthorDate: Tue Sep 10 13:02:15 2019 +0200

    NUTCH-1982 Make Git ignore IDE project files and add note about IDE setup
    - apply and update patch contributed by Marko Asplund
---
 .gitignore | 13 ++++++++++---
 README.md  | 14 ++++++++++++++
 2 files changed, 24 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore
index 61e42e0..5462dbf 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,11 +6,18 @@ build/
 runtime/
 logs/
 /bin/
-.classpath
-.naivebayes-model.crc
-.project
 ivy/ivy-2.3.0.jar
 ivy/ivy-2.4.0.jar
 ivy/ivy-2.5.0-rc1.jar
 naivebayes-model
+.naivebayes-model.crc
 .gitconfig
+# Eclipse configuration files
+.classpath
+.project
+.settings/
+.externalToolBuilders/
+# IntelliJ IDEA configuration files
+.idea/
+*.iml
+*.swp
diff --git a/README.md b/README.md
index 3aed205..ad091f1 100644
--- a/README.md
+++ b/README.md
@@ -36,6 +36,20 @@ To contribute a patch, follow these instructions (note that installing
 11. git push -u <your git username> NUTCH-xxx
 12. git pull-request
 ```
+
+IDE setup
+=========
+
+Generate Eclipse project files
+
+```
+ant eclipse
+```
+
+and follow the instructions in [Importing existing projects](https://help.eclipse.org/2019-06/topic/org.eclipse.platform.doc.user/tasks/tasks-importproject.htm).
+
+IntelliJ IDEA users can also import Eclipse projects using the ["Eclipser" plugin](https://www.tutorialspoint.com/intellij_idea/intellij_idea_migrating_from_eclipse.htm)https://plugins.jetbrains.com/plugin/7153-eclipser), see also [Importing Eclipse Projects into IntelliJ IDEA](https://www.jetbrains.com/help/idea/migrating-from-eclipse-to-intellij-idea.html#migratingEclipseProject).
+
    
 Export Control
 ==============