Skip to content
This repository has been archived by the owner on Jul 16, 2023. It is now read-only.

Commit

Permalink
Init support for Grbl 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cncgoko committed Apr 14, 2017
1 parent 08a3741 commit 0be8456
Show file tree
Hide file tree
Showing 67 changed files with 7,056 additions and 0 deletions.
7 changes: 7 additions & 0 deletions org.goko.controller.grbl.commons/.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.7"/>
<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 org.goko.controller.grbl.commons/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/bin/
28 changes: 28 additions & 0 deletions org.goko.controller.grbl.commons/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>org.goko.controller.grbl.commons</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,7 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
org.eclipse.jdt.core.compiler.compliance=1.7
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.7
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
eclipse.preferences.version=1
pluginProject.extensions=false
resolve.requirebundle=false
39 changes: 39 additions & 0 deletions org.goko.controller.grbl.commons/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: GRBL Commons
Bundle-SymbolicName: org.goko.controller.grbl.commons
Bundle-Version: 0.3.4.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Require-Bundle: org.goko.core,
org.eclipse.e4.ui.workbench;bundle-version="1.1.0",
org.eclipse.e4.ui.workbench.renderers.swt;bundle-version="0.12.0",
org.eclipse.e4.ui.workbench.swt;bundle-version="0.12.100",
org.eclipse.e4.core.services,
Goko;bundle-version="0.0.1",
org.eclipse.e4.core.di,
javax.inject;bundle-version="1.0.0",
org.eclipse.e4.core.contexts,
org.eclipse.equinox.preferences,
org.eclipse.jface.databinding;bundle-version="1.6.200",
org.eclipse.core.databinding;bundle-version="1.4.1",
org.eclipse.core.databinding.beans;bundle-version="1.2.200",
org.eclipse.core.databinding.observable;bundle-version="1.4.1",
org.eclipse.core.databinding.property;bundle-version="1.4.200",
org.eclipse.e4.ui.di;bundle-version="1.0.0",
org.eclipse.e4.ui.model.workbench,
org.eclipse.swt,
org.eclipse.e4.ui.services;bundle-version="1.1.0",
org.eclipse.jface;bundle-version="3.10.1",
org.eclipse.core.expressions;bundle-version="3.4.600",
javax.annotation,
org.eclipse.e4.core.di.extensions,
org.goko.gcode.rs274ngcv3,
org.goko.core.execution.monitor,
org.eclipse.core.runtime;bundle-version="3.11.1"
Export-Package: org.goko.controller.grbl.commons,
org.goko.controller.grbl.commons.bean,
org.goko.controller.grbl.commons.configuration,
org.goko.controller.grbl.commons.configuration.settings,
org.goko.controller.grbl.commons.jog,
org.goko.controller.grbl.commons.schedule,
org.goko.controller.grbl.commons.topic
4 changes: 4 additions & 0 deletions org.goko.controller.grbl.commons/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.
16 changes: 16 additions & 0 deletions org.goko.controller.grbl.commons/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>org.goko</groupId>
<artifactId>org.goko.controller.grbl.commons</artifactId>
<version>0.3.4-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>

<parent>
<groupId>org.goko</groupId>
<artifactId>org.goko.build.parent</artifactId>
<version>0.3.4-SNAPSHOT</version>
<relativePath>../org.goko.build.parent</relativePath>
</parent>
</project>
Loading

0 comments on commit 0be8456

Please sign in to comment.