Skip to content

Commit

Permalink
Initial version
Browse files Browse the repository at this point in the history
Initial version requires Eclipse 4.2/Xtext 2.3, moved (w/o history)
from Eclipselabs.
  • Loading branch information
jpilgrim committed Apr 27, 2012
1 parent 71a5d82 commit 9b4253e
Show file tree
Hide file tree
Showing 576 changed files with 248,110 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.DS_Store
plugins/de.jevopi.mitra2.ui/bin
plugins/de.jevopi.mitra2.debug/bin
plugins/de.jevopi.mitra2/bin
repository/target/
target/
1 change: 1 addition & 0 deletions features/de.jevopi.mitra2.feature/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
17 changes: 17 additions & 0 deletions features/de.jevopi.mitra2.feature/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>de.jevopi.mitra2.feature</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.pde.FeatureBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.FeatureNature</nature>
</natures>
</projectDescription>
1 change: 1 addition & 0 deletions features/de.jevopi.mitra2.feature/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bin.includes = feature.xml
54 changes: 54 additions & 0 deletions features/de.jevopi.mitra2.feature/feature.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8"?>
<feature
id="de.jevopi.mitra2"
label="Mitra2 Feature"
version="0.1.0.qualifier"
provider-name="Jens von Pilgrim">

<description url="http://www.example.com/description">
[Enter Feature Description here.]
</description>

<copyright url="http://www.example.com/copyright">
[Enter Copyright Description here.]
</copyright>

<license url="http://www.example.com/license">
[Enter License Description here.]
</license>

<plugin
id="de.jevopi.mitra2"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>

<plugin
id="de.jevopi.mitra2.ui"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>

<plugin
id="de.jevopi.mitra2.debug"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>

<plugin
id="de.jevopi.mitra2.doc"
download-size="0"
install-size="0"
version="0.0.0"/>

<plugin
id="de.jevopi.mitra2.traces"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>

</feature>
26 changes: 26 additions & 0 deletions features/de.jevopi.mitra2.feature/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
* Copyright (c) 2011 Jens von Pilgrim and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.jevopi.mitra2.features</groupId>
<artifactId>de.jevopi.mitra2</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>

<parent>
<groupId>de.jevopi.mitra2</groupId>
<artifactId>features</artifactId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>

</project>
30 changes: 30 additions & 0 deletions features/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
* Copyright (c) 2012 Jens von Pilgrim and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.jevopi.mitra2</groupId>
<artifactId>features</artifactId>
<packaging>pom</packaging>
<version>0.1.0-SNAPSHOT</version>

<parent>
<groupId>de.jevopi.mitra2</groupId>
<artifactId>parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>

<modules>
<module>de.jevopi.mitra2.feature</module>
</modules>

</project>
7 changes: 7 additions & 0 deletions plugins/de.jevopi.mitra2.debug/.classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>
1 change: 1 addition & 0 deletions plugins/de.jevopi.mitra2.debug/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
28 changes: 28 additions & 0 deletions plugins/de.jevopi.mitra2.debug/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>de.jevopi.mitra2.debug</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#Mon Jan 30 12:55:14 CET 2012
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.6
20 changes: 20 additions & 0 deletions plugins/de.jevopi.mitra2.debug/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Mitra2 Launcher and Graphical Debugger
Bundle-SymbolicName: de.jevopi.mitra2.debug;singleton:=true
Bundle-Version: 0.1.0.qualifier
Bundle-Activator: de.jevopi.mitra2.debug.MitraDebugPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
de.jevopi.mitra2;bundle-version="0.1.0",
org.eclipse.debug.core;bundle-version="3.6.0",
org.eclipse.debug.ui;bundle-version="3.6.1",
org.eclipse.emf;bundle-version="2.6.0",
org.eclipse.emf.ecore;bundle-version="2.6.1",
org.eclipse.xtext;bundle-version="1.0.1",
org.eclipse.xtext.ui;bundle-version="1.0.1",
org.eclipse.ui.ide;bundle-version="3.6.1",
org.eclipse.ui.console;bundle-version="3.5.0"
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-Vendor: Jens von Pilgrim
5 changes: 5 additions & 0 deletions plugins/de.jevopi.mitra2.debug/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.,\
plugin.xml
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 9b4253e

Please sign in to comment.