Developer Setup » History » Version 16
Prokopis Prokopidis, 2016-02-12 02:53 PM
1 | 12 | Prokopis Prokopidis | # Developer Setup |
---|---|---|---|
2 | 2 | Prokopis Prokopidis | |
3 | 4 | Prokopis Prokopidis | We assume a recent Eclipse installation with Maven Integration (m2e) installed. The following were tested in Eclipse Juno with m2e 1.1 |
4 | 2 | Prokopis Prokopidis | |
5 | 14 | Prokopis Prokopidis | * Go to the [Files](/redmine/projects/ilsp-fc/files) section of this site and download the latest ilsp-fc*project.zip archive. |
6 | 15 | Prokopis Prokopidis | * In Eclipse, go to menu `File->Import->General->Existing Projects Into Workspace`. |
7 | 2 | Prokopis Prokopidis | * Choose Next. |
8 | 2 | Prokopis Prokopidis | * Click Select archive file. |
9 | 2 | Prokopis Prokopidis | * Browse to where you saved the ilsp-fc*project.zip archive. |
10 | 2 | Prokopis Prokopidis | * Press Finish. |
11 | 2 | Prokopis Prokopidis | * The project will now be imported and all dependencies will be downloaded. |
12 | 10 | Prokopis Prokopidis | |
13 | 10 | Prokopis Prokopidis | An alternative way of building ILSP-FC using Maven only is the following: |
14 | 10 | Prokopis Prokopidis | |
15 | 1 | Prokopis Prokopidis | * Make sure a recent version of Maven (3.*) is installed on your machine |
16 | 1 | Prokopis Prokopidis | * Download from the [Files](/redmine/projects/ilsp-fc/files) section of this site the latest ilsp-fc*project.zip archive, e.g. |
17 | 15 | Prokopis Prokopidis | |
18 | 15 | Prokopis Prokopidis | ```` |
19 | 16 | Prokopis Prokopidis | [user@machine:~/src ]$ wget http://nlp.ilsp.gr/redmine/pathxxxxxx/ilsp-fc-x.x-project.zip |
20 | 16 | Prokopis Prokopidis | [user@machine:~/src ]$ unzip ilsp-fc-x.x-project.zip |
21 | 16 | Prokopis Prokopidis | [user@machine:~/src ]$ cd ilsp-fc-x.x |
22 | 1 | Prokopis Prokopidis | [user@machine:~/src/ilsp-fc-2.2 ]$ mvn clean install |
23 | 1 | Prokopis Prokopidis | ```` |
24 | 15 | Prokopis Prokopidis | |
25 | 13 | Prokopis Prokopidis | * A runnable jar is now created. You can test it by running, e.g., |
26 | 15 | Prokopis Prokopidis | |
27 | 13 | Prokopis Prokopidis | ``` |
28 | 1 | Prokopis Prokopidis | [user@machine:~/src/ilsp-fc-2.2 ]$ java -jar ./target/ilsp-fc-2.2-jar-with-dependencies.jar --help |
29 | 13 | Prokopis Prokopidis | ``` |
30 | 15 | Prokopis Prokopidis | |
31 | 10 | Prokopis Prokopidis | * See the [[GettingStarted|Getting Started]] page for more examples on how to run ILSP-FC |