From 79926a7d92d71c4688b2cbfcb091625fb2fbc8fb Mon Sep 17 00:00:00 2001 From: Peter Powers <pmpowers@usgs.gov> Date: Tue, 29 Aug 2017 09:16:13 -0600 Subject: [PATCH] gradel eclipse project clean --- .classpath | 8 ++------ .gitignore | 1 + .project | 12 ------------ build.gradle | 2 ++ 4 files changed, 5 insertions(+), 18 deletions(-) diff --git a/.classpath b/.classpath index c5c95a239..fec953ab2 100644 --- a/.classpath +++ b/.classpath @@ -2,11 +2,7 @@ <classpath> <classpathentry kind="src" path="src"/> <classpathentry kind="src" path="test"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/> <classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/> - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"> - <attributes> - <attribute name="owner.project.facets" value="java"/> - </attributes> - </classpathentry> - <classpathentry kind="output" path="classes"/> + <classpathentry kind="output" path="bin"/> </classpath> diff --git a/.gitignore b/.gitignore index 191c3f51a..113151192 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ .settings .gradle +bin build classes tmp diff --git a/.project b/.project index bb527789f..c09177e09 100644 --- a/.project +++ b/.project @@ -5,11 +5,6 @@ <projects> </projects> <buildSpec> - <buildCommand> - <name>org.eclipse.wst.common.project.facet.core.builder</name> - <arguments> - </arguments> - </buildCommand> <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> @@ -20,16 +15,9 @@ <arguments> </arguments> </buildCommand> - <buildCommand> - <name>org.eclipse.wst.validation.validationbuilder</name> - <arguments> - </arguments> - </buildCommand> </buildSpec> <natures> <nature>org.eclipse.jdt.core.javanature</nature> <nature>org.eclipse.buildship.core.gradleprojectnature</nature> - <nature>org.eclipse.wst.common.project.facet.core.nature</nature> - <nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature> </natures> </projectDescription> diff --git a/build.gradle b/build.gradle index ac7de4c7d..78f2159f4 100644 --- a/build.gradle +++ b/build.gradle @@ -2,6 +2,8 @@ apply plugin: 'java' apply plugin: 'jacoco' +sourceCompatibility = 1.8 + repositories { jcenter() } -- GitLab