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
INFO [2015-03-31 17:47:33,000] [dev@netty]: App server started in 401ms
18
18
19
19
GET /assets/** [*/*] [*/*] (anonymous)
@@ -145,3 +145,35 @@ Make sure to enable the ```fork``` option too, otherwise ```vmArgs``` are ignore
145
145
### includes / excludes
146
146
147
147
List of file patterns to listen for file changes.
148
+
149
+
## eclipse
150
+
151
+
In order to run ```jooby:run``` from Eclipse follows these steps (no plugin required):
152
+
153
+
* Open your pom.xml, go to dependencies section and add:
154
+
155
+
```xml
156
+
<dependency>
157
+
<groupId>org.jooby</groupId>
158
+
<artifactId>jooby-run</artifactId>
159
+
<scope>provided</scope>
160
+
</dependency>
161
+
```
162
+
163
+
Make sure to set the ```scope``` to ```provided```, once you add the dependency you need to (re)generate Eclipse metadata with: ```mvn eclipse:clean eclipse:eclipse``` unless you have the ```m2 eclipse plugin``` installed.
164
+
165
+
* Create a new ```Java Run Configuration```
166
+
167
+
* Go to **Main** tab and set the *Main class* to: ```org.jooby.run.Main```
0 commit comments