From 4c97137eb20cec6fea86083ed4f0843a0ee343a0 Mon Sep 17 00:00:00 2001 From: Damon Kohler <damonkohler@google.com> Date: Fri, 18 Oct 2013 14:35:27 +0200 Subject: [PATCH] Adds Eclipse support. --- .gitignore | 1 + .project | 17 ----------------- build.gradle | 1 + 3 files changed, 2 insertions(+), 17 deletions(-) delete mode 100644 .project diff --git a/.gitignore b/.gitignore index 8dcdea83..065e7b41 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ .gradle build +bin .classpath .project .settings diff --git a/.project b/.project deleted file mode 100644 index 1678b89f..00000000 --- a/.project +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<projectDescription> - <name>rosjava_core</name> - <comment></comment> - <projects> - </projects> - <buildSpec> - <buildCommand> - <name>org.eclipse.jdt.core.javabuilder</name> - <arguments> - </arguments> - </buildCommand> - </buildSpec> - <natures> - <nature>org.eclipse.jdt.core.javanature</nature> - </natures> -</projectDescription> diff --git a/build.gradle b/build.gradle index d1f152ba..2956daf2 100644 --- a/build.gradle +++ b/build.gradle @@ -46,6 +46,7 @@ allprojects { subprojects { if (name != 'docs') { apply plugin: 'ros-java' + apply plugin: 'eclipse' } } -- GitLab