Skip to content
Alexey Valikov edited this page Aug 31, 2017 · 1 revision

Maven Repository

Hyperjaxb3 in the central Maven repository

Since version 0.5.6 Hyperjaxb3 is distributed via the central Maven repository.

Hyperjaxb3 artifacts can be found here:

http://repo1.maven.org/maven2/org/jvnet/hyperjaxb3/

Samples, templates, tutorials and tests are deployed to the highsource.org Maven repository:

http://repository.highsource.org/maven2/releases/org/jvnet/hyperjaxb3/

Icon For a quick start with Hyperjaxb3 check our project templates.

Maven usage for versions prior to 0.5.6

Icon This configurations are obsolete for versions 0.5.6 and higher. You do not need to configure any special repositories.

The information below is left for reference purposes only.

In order to use Hyperjaxb3 in your Maven project, add the following repositories to your pom.xml:

<repositories>
    <!-- ... -->
    <repository>
        <id>maven2-repository.dev.java.net</id>
        <url>http://download.java.net/maven/2</url>
    </repository>
    <repository>
        <id>maven-repository.dev.java.net</id>
        <url>http://download.java.net/maven/1</url>
        <layout>legacy</layout>
    </repository>
    <!-- ... -->
</repositories>
<pluginRepositories>
    <!-- ... -->
    <pluginRepository>
        <id>maven2-repository.dev.java.net</id>
        <url>http://download.java.net/maven/2</url>
    </pluginRepository>
    <!-- ... -->
</pluginRepositories>

If you're using Hibernate, you may also want to add the JBoss Maven2 repository:

<repositories>
    <!-- ... -->
    <repository>
        <id>maven2-repository.jboss.com</id>
        <url>http://repository.jboss.com/maven2</url>
    </repository>
    <!-- ... -->
</repositories>

You can directly access the repositories under the following URLs:

http://download.java.net/maven/2/ http://download.java.net/maven/1/

Hyperjaxb3 artifacts can be found here:

http://download.java.net/maven/2/org/jvnet/hyperjaxb3/

Clone this wiki locally