You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: org.nodeclipse.enide.gradle/README.md
+23-1Lines changed: 23 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,9 +10,31 @@
10
10
*Description*:
11
11
Right-click any `.gradle` file, and select `Run As -> Gradle GUI`
12
12
13
+
To run/execute with gradle add this to `build.gradle`
14
+
15
+
task execute(type:JavaExec) {
16
+
main = mainClass
17
+
classpath = sourceSets.main.runtimeClasspath
18
+
}
19
+
20
+
then execution is via
21
+
22
+
gradle execute -PmainClass=runclass.RunClass
23
+
24
+
see [Gradle to execute Java class (without modifying build.gradle)](http://stackoverflow.com/questions/21358466/gradle-to-execute-java-class-without-modifying-build-gradle)
25
+
13
26
### Developing
14
27
15
-
`git clone`, import this project and `org.nodeclipse.coomon` (2) in Eclipse with PDE (e.g. Eclipse SDK/Classic)
28
+
1.`git clone`;
29
+
2. import this project and `org.nodeclipse.common` (2) in Eclipse with PDE (e.g. Eclipse SDK/Classic)
16
30
as "Existing Projects into Workspace".
17
31
18
32
maven build is optional for full build with other plugins.
0 commit comments