Atlas dev,
As APIs/features are added in Apache Atlas, it is useful to publish snapshot libraries regularly to make the latest APIs available for components that integrate with Apache Atlas – like Apache Ranger. Sarath updated Apache Atlas build to publish snapshot libraries at regular intervals, daily for now, from master and branch-0.8 branches. Any component that needs to refer to Apache Atlas snapshot libraries can do so by: 1. adding following repository in pom.xml: <repository> <id>apache.snapshots.https</id> <name>Apache Development Snapshot Repository</name> <url>https://repository.apache.org/content/repositories/snapshots</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> 2. using Atlas version ‘0.8.2-SNAPSHOT’ or ‘1.0.0-SNAPSHOT’ <atlas.version>0.8.2-SNAPSHOT</atlas.version> For an example of above , please look in at Apache Ranger pom.xml (in ranger-0.7 branch), which references Apache Atlas snapshot. Hope this helps. Madhan
