Maven Repo
Add these configs in your pom.xml
Maven Repository
<repositories> <repository> <id>oss.sonatype.org</id> <url>https://oss.sonatype.org/content/repositories/releases</url> </repository> <repository> <id>oss.sonatype.org-snapshot</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </repository> </repositories>
Dependency declaration in Maven’s pom.xml
 <dependencies> <dependency> <groupId>io.opendevice</groupId> <artifactId>{{ module name}}</artifactId> <version>{{ module version}}</version> </dependency> </dependencies>
- artifactId:Â Put the name of the component you need (see on repository)
- version : Find in maven central last version
- See full pom.xml sample
Repository :Â https://oss.sonatype.org/content/groups/public/io/opendevice/
Repository (Old Snapshots) :Â https://oss.sonatype.org/content/repositories/snapshots/br/com/criativasoft/opendevice/