Skip to content

Commit b86b43c

Browse files
committedOct 21, 2014
add empty .android project
1 parent 72b20b3 commit b86b43c

11 files changed

+199
-0
lines changed
 

‎org.nodeclipse.android/.classpath

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
5+
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
6+
<classpathentry kind="output" path="bin"/>
7+
</classpath>

‎org.nodeclipse.android/.project

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>org.nodeclipse.android</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.pde.ManifestBuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.pde.SchemaBuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
</buildSpec>
24+
<natures>
25+
<nature>org.eclipse.pde.PluginNature</nature>
26+
<nature>org.eclipse.jdt.core.javanature</nature>
27+
</natures>
28+
</projectDescription>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
4+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
5+
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
6+
org.eclipse.jdt.core.compiler.compliance=1.6
7+
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
8+
org.eclipse.jdt.core.compiler.debug.localVariable=generate
9+
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
10+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
11+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
12+
org.eclipse.jdt.core.compiler.source=1.6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Manifest-Version: 1.0
2+
Bundle-ManifestVersion: 2
3+
Bundle-Name: Nodeclipse Android
4+
Bundle-SymbolicName: org.nodeclipse.android;singleton:=true
5+
Bundle-Version: 0.17.0.qualifier
6+
Bundle-Activator: org.nodeclipse.ui.Activator
7+
Require-Bundle: org.eclipse.ui,
8+
org.eclipse.core.runtime,
9+
org.eclipse.core.resources,
10+
org.eclipse.ui.ide,
11+
org.eclipse.jface.text,
12+
org.eclipse.ui.editors,
13+
org.eclipse.ui.console,
14+
org.eclipse.debug.ui,
15+
org.eclipse.ui.navigator
16+
Bundle-ActivationPolicy: lazy
17+
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
18+
Bundle-Vendor: Nodeclipse organization
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source.. = src/
2+
output.. = bin/
3+
bin.includes = META-INF/,\
4+
.,\
5+
plugin.xml,\
6+
icons/
127 Bytes
Loading
360 Bytes
Loading
160 Bytes
Loading
Loading

‎org.nodeclipse.android/plugin.xml

+109
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<?eclipse version="3.4"?>
3+
<plugin>
4+
<extension
5+
point="org.eclipse.debug.core.launchConfigurationTypes">
6+
<launchConfigurationType
7+
delegate="org.nodeclipse.ui.npm.LaunchConfigurationDelegate"
8+
id="org.nodeclipse.ui.npm.LaunchConfigurationType"
9+
modes="run, debug"
10+
name="NPM">
11+
</launchConfigurationType>
12+
</extension>
13+
<extension
14+
point= "org.eclipse.debug.ui.launchConfigurationTypeImages" >
15+
<launchConfigurationTypeImage
16+
configTypeID= "org.nodeclipse.ui.npm.LaunchConfigurationType"
17+
icon= "icons/npm/npm_bottom_right_corner_run_half_size.png"
18+
id= "org.nodeclipse.ui.npm.LaunchConfigurationTypeImage" >
19+
</launchConfigurationTypeImage>
20+
</extension>
21+
<extension
22+
point= "org.eclipse.debug.ui.launchShortcuts" >
23+
<shortcut
24+
class= "org.nodeclipse.ui.npm.InstallLaunchShortcut"
25+
icon= "icons/npm/npm_bottom_right_corner_run_half_size.png"
26+
id= "org.nodeclipse.ui.npm.InstallLaunchShortcut"
27+
label= "npm install"
28+
modes= "run" >
29+
<configurationType
30+
id= "org.nodeclipse.ui.npm.LaunchConfigurationType" >
31+
</configurationType>
32+
<contextualLaunch>
33+
<enablement>
34+
<with
35+
variable= "selection" >
36+
<count
37+
value= "1" >
38+
</count>
39+
<iterate>
40+
<and>
41+
<instanceof value="org.eclipse.core.resources.IFile"/>
42+
<test
43+
property= "org.eclipse.debug.ui.matchesPattern"
44+
value= "package.json" >
45+
</test>
46+
</and>
47+
</iterate>
48+
</with>
49+
</enablement>
50+
</contextualLaunch>
51+
</shortcut>
52+
</extension>
53+
<extension
54+
point= "org.eclipse.debug.ui.launchShortcuts" >
55+
<shortcut
56+
class= "org.nodeclipse.ui.npm.LaunchShortcut"
57+
icon= "icons/npm/npm_bottom_right_corner_run_half_size.png"
58+
id= "org.nodeclipse.ui.npm.LaunchShortcut"
59+
label= "npm ..."
60+
modes= "run" >
61+
<configurationType
62+
id= "org.nodeclipse.ui.npm.LaunchConfigurationType" >
63+
</configurationType>
64+
<contextualLaunch>
65+
<enablement>
66+
<with
67+
variable= "selection" >
68+
<count
69+
value= "1" >
70+
</count>
71+
<iterate>
72+
<and>
73+
<instanceof value="org.eclipse.core.resources.IFile"/>
74+
<test
75+
property= "org.eclipse.debug.ui.matchesPattern"
76+
value= "package.json" >
77+
</test>
78+
</and>
79+
</iterate>
80+
</with>
81+
</enablement>
82+
</contextualLaunch>
83+
</shortcut>
84+
</extension>
85+
<extension
86+
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
87+
<launchConfigurationTabGroup
88+
class= "org.nodeclipse.ui.npm.LaunchConfigurationTabGroup"
89+
id= "org.nodeclipse.ui.npm.LaunchConfigurationTabGroup"
90+
type= "org.nodeclipse.ui.npm.LaunchConfigurationType" >
91+
</launchConfigurationTabGroup>
92+
</extension>
93+
<!--
94+
<extension
95+
point="org.eclipse.core.runtime.preferences">
96+
<initializer
97+
class="org.nodeclipse.ui.preferences.PreferenceInitializer">
98+
</initializer>
99+
</extension>
100+
<extension
101+
point="org.eclipse.ui.preferencePages">
102+
<page
103+
class="org.nodeclipse.ui.preferences.NodePreferencePage"
104+
id="org.nodeclipse.ui.preferences.NodePreferencePage"
105+
name="Nodeclipse">
106+
</page>
107+
</extension>
108+
-->
109+
</plugin>

‎org.nodeclipse.android/pom.xml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4+
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<parent>
8+
<groupId>org.nodeclipse.nodeclipse-1</groupId>
9+
<artifactId>parent</artifactId>
10+
<version>0.17.0-SNAPSHOT</version>
11+
</parent>
12+
13+
<artifactId>org.nodeclipse.android</artifactId>
14+
<packaging>eclipse-plugin</packaging>
15+
16+
<name>org.nodeclipse.android</name>
17+
<description>org.nodeclipse.android</description>
18+
</project>
19+

0 commit comments

Comments
 (0)
Please sign in to comment.