arrow_back history picture_as_pdf This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ~~NOTRANS~~ ~~Title: JVx With Maven~~ JVx is available in all public Maven repositories, e.g., [[https://search.maven.org/search?q=jvx|http://search.maven.org/]] Use following dependency in your pom.xml: <file xml> <dependencies> <dependency> <groupId>com.sibvisions.jvx</groupId> <artifactId>jvxall</artifactId> <version>2.7</version> </dependency> <dependencies> </file> for your server project and following dependency: <file xml> <dependencies> <dependency> <groupId>com.sibvisions.jvx</groupId> <artifactId>jvxclient</artifactId> <version>2.7</version> </dependency> <dependencies> </file> for your client project. The jvxall artifact contains client and server classes. The jvxclient artifact does not contain server classes and is about 200Kb smaller. Use the client artifact for your applications and jvxall only on server-side within your application server like Tomcat, JBoss. It's also possible to create a new JVx project based on JVx's archetype: <file script> GroupId: com.sibvisions.jvx ArtifactId: jvxapplication-archetype Version: 2.7 Repository: http://repo1.maven.org/maven2/ </file> The archetype creates your new application project, see it [[http://www.youtube.com/watch?v=UJmm2oZY5JM|in action]]. \\ **<fs 20px>Note</fs>** You can use the snapshot repository if you want to use [[https://collab.sibvisions.com/jvx.nightly/|nightly builds]]: <file xml> <repository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </repository> </file> //(The nightly builds are created daily. These are test versions based on current source code. We don't offer support for these versions)//