/
Maven Repo
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/
, multiple selections available,
Related content
Downloads
Downloads
More like this
Building from source
Building from source
More like this
Installing Arduino Library
Installing Arduino Library
More like this
Configuration
Configuration
More like this
Setting-up the Server
Setting-up the Server
More like this
Contribuition Guide
Contribuition Guide
More like this