Skip to content
Martynas Jusevičius edited this page Dec 30, 2020 · 6 revisions

Running standalone Processor

Use Docker image atomgraph/processor.

Using Processor in your application

To add AtomGraph Processor dependency:

  • for a stable version

  • for a SNAPSHOT version

  • add Maven dependency in your project using an IDE, or in the pom.xml file:

      <dependencies>
          <dependency>
              <groupId>com.atomgraph</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 AtomGraph 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 AtomGraph Client installation.