Skip to content

Commit 2dab84e

Browse files
committed
Added Xtend dependency
1 parent 12723f9 commit 2dab84e

File tree

4 files changed

+27
-19
lines changed

4 files changed

+27
-19
lines changed

.gitignore

+1-4
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,10 @@ Thumbs.db
1313
.Rhistory
1414
.pydevproject
1515
deps/
16-
diagrams/*
1716
.idea
1817
log/
1918
catalog-v*.xml
2019
.RData
2120
.Rproj.user
22-
*.tar.gz
23-
*.zip
2421
*.gml
25-
*.ifc
22+
xtend-gen/

eu.mondo.map.modelmetrics/.classpath

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="src" path="xtend-gen"/>
45
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
56
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
67
<classpathentry kind="output" path="target/classes"/>

eu.mondo.map.modelmetrics/.project

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
<projects>
66
</projects>
77
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.xtext.ui.shared.xtextBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
813
<buildCommand>
914
<name>org.eclipse.jdt.core.javabuilder</name>
1015
<arguments>
@@ -24,5 +29,6 @@
2429
<natures>
2530
<nature>org.eclipse.jdt.core.javanature</nature>
2631
<nature>org.eclipse.pde.PluginNature</nature>
32+
<nature>org.eclipse.xtext.ui.shared.xtextNature</nature>
2733
</natures>
2834
</projectDescription>
+19-15
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
1-
Manifest-Version: 1.0
2-
Bundle-ManifestVersion: 2
3-
Bundle-Name: Modelmetrics
4-
Bundle-SymbolicName: eu.mondo.map.modelmetrics
5-
Bundle-Version: 1.0.0.qualifier
6-
Export-Package: eu.mondo.map.modelmetrics.composite,
7-
eu.mondo.map.modelmetrics.composite.data,
8-
eu.mondo.map.modelmetrics.composite.typed,
9-
eu.mondo.map.modelmetrics.scalar,
10-
eu.mondo.map.modelmetrics.scalar.typed,
11-
eu.mondo.map.modelmetrics.tests
12-
Require-Bundle: com.google.guava;bundle-version="15.0.0",
13-
org.junit;bundle-version="4.11.0",
14-
eu.mondo.map.core;bundle-version="1.0.0"
15-
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
1+
Manifest-Version: 1.0
2+
Bundle-ManifestVersion: 2
3+
Bundle-Name: Modelmetrics
4+
Bundle-SymbolicName: eu.mondo.map.modelmetrics
5+
Bundle-Version: 1.0.0.qualifier
6+
Export-Package: eu.mondo.map.modelmetrics.composite,
7+
eu.mondo.map.modelmetrics.composite.data,
8+
eu.mondo.map.modelmetrics.composite.typed,
9+
eu.mondo.map.modelmetrics.scalar,
10+
eu.mondo.map.modelmetrics.scalar.typed,
11+
eu.mondo.map.modelmetrics.tests
12+
Require-Bundle: com.google.guava;bundle-version="15.0.0",
13+
org.junit;bundle-version="4.11.0",
14+
eu.mondo.map.core;bundle-version="1.0.0",
15+
org.eclipse.xtext.xbase.lib,
16+
org.eclipse.xtend.lib,
17+
org.eclipse.xtend.lib.macro
18+
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
19+

0 commit comments

Comments
 (0)