Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
Martynas Jusevičius edited this pageSep 18, 2019 ·32 revisions

Running standalone Web-Client

Use Docker imageatomgraph/web-client.

Using Web-Client in your application

To add Web-Client dependency:

  • for a stable version

  • for aSNAPSHOT version

  • add Web-Client as a Maven dependency in your project using an IDE, or in thepom.xml file.<classifier>classes</classifier> addresses thejar artifact built intowar. The<type>war</type> dependency enables reuse of static resources from AtomGraph Web-Client, such asTwitter Bootstrap

      <dependencies>      <dependency>          <groupId>com.atomgraph</groupId>          <artifactId>client</artifactId>          <version>2.0.4</version>          <classifier>classes</classifier>      </dependency>      <dependency>          <groupId>com.atomgraph</groupId>          <artifactId>client</artifactId>          <version>2.0.4</version>          <type>war</type>      </dependency>  </dependencies>
  • to import static resources enabled by the<type>war</type> dependency, add aMaven overlay under<configuration> ofmaven-war-plugin:

      <overlays>      <overlay>          <groupId>com.atomgraph</groupId>          <artifactId>client</artifactId>      </overlay>  </overlays>
  • add or editmain/webapp/WEB-INF/web.xml withConfiguration

Building from source

  • build it asjar using Maven (dependency Maven profile:mvn -Pdependency package)
  • build it aswar using Maven (standalone Maven profile:mvn -Pstandalone package)
Clone this wiki locally

[8]ページ先頭

©2009-2025 Movatter.jp