Subscribe to Mailing List
Submit requests and bugs
Follow Astroboa on Twitter
Installation Guide
Maven Repository
Get Source code at GITHUB
Building from Sources
API Documentation
Submit a Bug or Request

BetaCONCEPT Maven Repository

BetaCONCEPT framework (including Astroboa) resources and their dependencies can be accessed through our own MAVEN repository which is maintained by NEXUS repository manager. NEXUS is provided by the team that develops MAVEN and it is much more polished, stable and integrated with the MAVEN environment.

The new repository is completely open and does not require any special account or registration in order to be used. You can either access it from the web to browse and download resources or you may declare it into your MAVEN projects to automatically get access to all BetaCONCEPTframework (including Astroboa) resources and their dependencies.

You may access the new repository from the web in the following address:

http://nexus.betaconcept.com

Do not miss to frequently check the System Feeds for reports about the new deployments of Astroboa modules (new snapshots).

How to use BetaCONCEPT framework MAVEN Repository with your projects

If you build your MAVEN project utilizing the Astroboa modules you should declare inside your pom.xml the new NEXUS BetaCONCEPT framework MAVEN repository. This will allow MAVEN to download any required Astroboa modules along with their dependencies into your local MAVEN repository. Add the following inside your project's pom.xml file to declare the repository:

<repositories>
    <repository>
        <id>public.betaconcept</id>
        <name>BetaCONCEPT Maven Repository grouping the
            betaconceptframework.org Release Repository
            and other proxied Release repositories</name>
        <url>
            http://nexus.betaconceptframework.org/nexus/content/groups/public/
        </url>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
        <releases>
            <enabled>true</enabled>
        </releases>
    </repository>

    <repository>
        <id>public-snapshots.betaconcept</id>
        <name>BetaCONCEPT Maven Repository grouping the
            betaconceptframework.org Snapshots Repository
            and other proxied Snapshot repositories</name>
        <url>
            http://nexus.betaconceptframework.org/nexus/content/groups/public-snapshots/
        </url>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
        <releases>
            <enabled>false</enabled>
        </releases>
    </repository>
</repositories>

 


Last Modified: 17 December 2011
ajax activity image Loading...