Agregar Dependencias

Editar el archivo pom.xml y agregar el repositorio

 <repositories>

        <repository>
            <id>jitpack.io</id>
            <url>https://jitpack.io</url>
        </repository>
    </repositories>

Agregar la dependencia

  <dependency>
        <groupId>com.github.avbravo</groupId>
        <artifactId>ejbjmoordb</artifactId>
        <version>0.2</version>
    </dependency>

     <dependency>
        <groupId>com.github.avbravo</groupId>
        <artifactId>avbravoutils</artifactId>
        <version>0.7</version>
    </dependency>

En el Build

 <finalName>${project.artifactId}</finalName>

Last updated