It won't be needed unless a dependency is a snapshot, which can only occur during development.
Releases don't have snapshot dependencies, this was added as enforcer rule recently. Thomas On Mon, Oct 26, 2015 at 2:14 PM, Pramod Immaneni <[email protected]> wrote: > Does this setting file need to remain for future releases as well. > > On Mon, Oct 26, 2015 at 2:06 PM, Thomas Weise <[email protected]> > wrote: > > > Once Apex Core 3.2.0 is released, we will update Malhar to replace the > > snapshot dependency with the release. Until then, you can utilize the > > Apache snapshot repository to retrieve the artifacts (see below). > > > > The Travis CI environment uses this repository by default. > > > > Thanks, > > Thomas > > > > Add the following to your ~/.m2/settings.xml > > > > <profiles> > > <profile> > > <activation> > > <activeByDefault>true</activeByDefault> > > </activation> > > <repositories> > > <repository> > > <id>apache.snapshots</id> > > <name>Apache Snapshot Repository</name> > > <url>http://repository.apache.org/snapshots</url> > > <releases> > > <enabled>false</enabled> > > </releases> > > </repository> > > </repositories> > > </profile> > > </profiles> > > >
