Skip to content
Martynas Jusevičius edited this page Oct 14, 2015 · 6 revisions

Running standalone Processor

To run Graphity Processor:

Using Processor in your application

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

Building from source

  • 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.

Clone this wiki locally