-
Notifications
You must be signed in to change notification settings - Fork 19
Setup Instructions
ipeirotis edited this page Dec 26, 2012
·
2 revisions
= Setup Instructions
- Install Maven 3
- Unpack the appengine SDK, version 1.6.6, after downloading from this url
- Create a $HOME/.m2 directory. Create a settings.xml file with these parameters:
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<profiles>
<profile>
<id>default</id>
<properties>
<gae.home>C:\apps\appengine-java-sdk-1.6.6</gae.home>
</properties>
</profile>
</profiles>
<activeProfiles>
<activeProfile>default</activeProfile>
</activeProfiles>
<servers>
<server>
<id>appengine.google.com</id>
<username>[email protected]</username>
<password>yourpassword</password>
</server>
</servers>
</settings>
In the file above, replace gae.home with the path where you've unpacked the SDK from previous step.
- Download lingpipe 4.1.0 jar from this url
- Open a shell session and issue the following command:
$ mvn install:install-file -DgroupId=com.alias-i -DartifactId=lingpipe -Dversion=4.1.0 -DgeneratePom=true -Dfile=lingpipe-4.1.0.jar -Dpackaging=jar