Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel
bgColorwhite
titleColorwhite
titleBGColor#3c83bc
titleAfter reading this section, you will know...

...  how to get access to MoSKito:

  1. via Maven, or
  2. by getting the source code.
Panel
bgColorwhite
titleColorwhite
titleBGColor#3c83bc
titleIn this section

Table of Contents
maxLevel3

Panel
bgColorwhite
titleColorwhite
titleBGColor#3c83bc
titleLinks to MoSKito resources:

Table of Contents
minLevel3
 

Working with MoSKito via Maven

Info

Maven users can get MoSKito by simply defining it as a dependency in the pom.xml. 

Tip

The pom.xml of MoSKito Demo Project on GitHub is a very good reference for working via Maven.

Include repository

We have our own repository (nexus), include it to your Maven settings or proxy by your repository.

In Maven case, the settings part is the following:

Code Block
						<repositories>
                                <repository>
                                        <id>provided</id>
                                        <url>http://nexus.anotheria.net/nexus/content/groups/public</url>
                                        <releases>
                                                <enabled>true</enabled>
                                        </releases>
                                        <snapshots>
                                                <enabled>true</enabled>
                                        </snapshots>
                                </repository>
                        </repositories>

 

In case you use a proxy, simply use the proxy-address below:

Code Block
languagephp
http://nexus.anotheria.net/nexus/content/repositories/releases/

Define dependencies

The currently released versions of MoSKito components are:

 

Code Block
<dependency>
    <groupId>net.anotheria</groupId>
    <artifactId>moskito-core</artifactId>
    <version>2.7.2</version>
</dependency>
<dependency>
    <groupId>net.anotheria</groupId>
    <artifactId>moskito-web</artifactId>
    <version>2.7.2</version>
</dependency>
<dependency>
    <groupId>net.anotheria</groupId>
    <artifactId>moskito-webui</artifactId>
    <version>2.7.2</version>
</dependency>

Getting MoSKito Source Code

Nexus

GitHub

MoSKito-Essential Project

and its components:
  • moskito-core

  • moskito-webui

  • moskito-integration

  • moskito-aop

  • moskito-web

  • moskito-minimal 

    is hosted on GitHub: https://github.com/anotheria/moskito/

    Ivy

    We are sorry, but we had to remove ivy support.

    Next Steps

    You've got MoSKito via Maven or by source code.

    With this, you can collect performance data from your application, but cannot view it. To see the data, you'll need MoSKito-Inspect, MoSKito's embedded web interface.

    So, we recommend the following steps:

    1. Embed MoSKito-WebUI into a Maven.built war
    2. Embed Moskito-WebUI into your application


     

    Tip
    titleGo to Previous:

    Getting MoSKito-Essential