-
Notifications
You must be signed in to change notification settings - Fork 7
Installation
Martynas Jusevičius edited this page Oct 14, 2015
·
6 revisions
To run Graphity Processor:
- build from source as a Maven Web application
- run the webapp in an IDE or deploy the
.war
on a servlet container such as Tomcat - open the webapp in a browser (on an address such as http://localhost:8080/graphity-processor; it depends on host, Tomcat port and application context path)
To add Graphity Processor dependency:
-
for a stable version
-
for a
SNAPSHOT
version -
add GP as a Maven dependency in your project using an IDE, or in the
pom.xml
file:<dependencies> <dependency> <groupId>org.graphity</groupId> <artifactId>processor</artifactId> <version>1.1.3</version> </dependency> </dependencies>
-
add or edit
main/webapp/WEB-INF/web.xml
with Configuration
- install Graphity Core dependency
- checkout the source code
- build it as
jar
using Maven (dependency
Maven profile:mvn -Pdependency package
) - build it as
war
using Maven (standalone
Maven profile:mvn -Pstandalone package
)
See also Graphity Client installation.