aboutsummaryrefslogtreecommitdiffstats
path: root/language-model
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-06-27 14:28:35 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2021-06-27 14:28:35 +0200
commit39994e99591536e9519e92b447dfee240f482b99 (patch)
treee2d2ead9c6555be2208a50dbefeb7bc98cc43175 /language-model
parentSimplify project layout (diff)
downloadrefinery-39994e99591536e9519e92b447dfee240f482b99.tar.gz
refinery-39994e99591536e9519e92b447dfee240f482b99.tar.zst
refinery-39994e99591536e9519e92b447dfee240f482b99.zip
Remove Eclipse-specific files
They can be re-generated by the BuildShip plugin anyways.
Diffstat (limited to 'language-model')
-rw-r--r--language-model/.classpath19
-rw-r--r--language-model/.project41
-rw-r--r--language-model/build.gradle6
3 files changed, 6 insertions, 60 deletions
diff --git a/language-model/.classpath b/language-model/.classpath
deleted file mode 100644
index 2e8747d8..00000000
--- a/language-model/.classpath
+++ /dev/null
@@ -1,19 +0,0 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<classpath>
3 <classpathentry kind="src" output="bin/main" path="src/main/emf-gen">
4 <attributes>
5 <attribute name="gradle_scope" value="main"/>
6 <attribute name="gradle_used_by_scope" value="main,test"/>
7 <attribute name="ignore_optional_problems" value="true"/>
8 </attributes>
9 </classpathentry>
10 <classpathentry kind="src" output="bin/main" path="src/main/resources">
11 <attributes>
12 <attribute name="gradle_scope" value="main"/>
13 <attribute name="gradle_used_by_scope" value="main,test"/>
14 </attributes>
15 </classpathentry>
16 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11/"/>
17 <classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
18 <classpathentry kind="output" path="bin/default"/>
19</classpath>
diff --git a/language-model/.project b/language-model/.project
deleted file mode 100644
index 246372ea..00000000
--- a/language-model/.project
+++ /dev/null
@@ -1,41 +0,0 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<projectDescription>
3 <name>language-model</name>
4 <comment></comment>
5 <projects>
6 </projects>
7 <buildSpec>
8 <buildCommand>
9 <name>org.eclipse.jdt.core.javabuilder</name>
10 <arguments>
11 </arguments>
12 </buildCommand>
13 <buildCommand>
14 <name>org.eclipse.xtext.ui.shared.xtextBuilder</name>
15 <arguments>
16 </arguments>
17 </buildCommand>
18 <buildCommand>
19 <name>org.eclipse.buildship.core.gradleprojectbuilder</name>
20 <arguments>
21 </arguments>
22 </buildCommand>
23 <buildCommand>
24 <name>org.eclipse.pde.ManifestBuilder</name>
25 <arguments>
26 </arguments>
27 </buildCommand>
28 <buildCommand>
29 <name>org.eclipse.pde.SchemaBuilder</name>
30 <arguments>
31 </arguments>
32 </buildCommand>
33 </buildSpec>
34 <natures>
35 <nature>org.eclipse.sirius.nature.modelingproject</nature>
36 <nature>org.eclipse.jdt.core.javanature</nature>
37 <nature>org.eclipse.xtext.ui.shared.xtextNature</nature>
38 <nature>org.eclipse.buildship.core.gradleprojectnature</nature>
39 <nature>org.eclipse.pde.PluginNature</nature>
40 </natures>
41</projectDescription>
diff --git a/language-model/build.gradle b/language-model/build.gradle
index 2f9e3257..08e16a38 100644
--- a/language-model/build.gradle
+++ b/language-model/build.gradle
@@ -7,3 +7,9 @@ sourceSets {
7 java.srcDirs += ['src/main/emf-gen'] 7 java.srcDirs += ['src/main/emf-gen']
8 } 8 }
9} 9}
10
11eclipse {
12 project {
13 natures += ['org.eclipse.sirius.nature.modelingproject', 'org.eclipse.pde.PluginNature']
14 }
15} \ No newline at end of file