Skip to content
spaceemotion edited this page Sep 28, 2015 · 4 revisions

modular

Welcome to the modular wiki!

Modular is a lightweight, annotation-driven modular dependency system for java applications with integrated field-based dependency injection, filters and lots more. The project was created due to the lack of an API that is not just fast, but also very easy to use, thus inspired by jSPF and other java simple plugin systems.

This wiki has been created to provide a more detailed and structured documentation for the project, than a simple README can provide.

Getting started

A copy of modular can be retrieved through maven central. It is assumed that it is known how one installs a custom maven repository and dependency as this project uses that build system.

<dependency>
    <groupId>net.mountainblade</groupId>
    <artifactId>modular</artifactId>
    <version>1.0</version>
</dependency>

If the dependency could not be found, you might have to add the Sonatype Nexus repository to your build script:

<repository>
    <id>modular</id>
    <url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
Clone this wiki locally