True.  Good point.  I was using "deploy" in the Maven sense which is pushing 
it to your defined distribution repositories.

But note that in Gradle "installing" as defined by the MavenPlugin is just a 
specialization of the Upload task which makes it confusing sometimes.

On Thursday, October 14, 2010, at 09:19 am, Paul Speed wrote:
> Note also that there is a difference between "uploading" and
> "installing".  I'm not sure which is considered "deploying" in this
> conversation.
> 
> Even using maven, I "install" from one project so that my other projects
> can use that snapshot.  In order to do this in gradle, you have to
> include the local maven cache as a repository because (last I checked)
> gradle doesn't have a similar feature... you have to piggy-back on maven.
> 
> I don't know if those distinctions make this conversation any different
> but I thought I'd mention it.
> 
> In my case, I have several separate open source projects (some of which
> rely on each other but must be built and maintained separately) and more
> than one proprietary gradle-built package that depends on those.  Using
> the .m2 cache is essential in this case.  So I 'gradle install' from one
> and then just make sure the .m2 cache is in my repository list in the
> dependers.
> 
> -Paul
> 
> On 10/14/2010 10:04 AM, Robert Fischer wrote:
> > Yeah, I agree, but you may be better served by having a standalone local
> > repo and leaving the cache alone.  I don't think Ivy will copy files
> > from a local directory into the cache anyway, so you're not really
> > gaining anything by deploying into the cache.
> > 
> > ~~ Robert.
> > 
> > On 14 October 2010 09:36, Steve Ebersole <[email protected]
> > 
> > <mailto:[email protected]>> wrote:
> >     Personally I consider it bad form to have to look to the internet for
> >     something I just built locally.  YMMV :P
> >     
> >     Also note that I wrote up a plugin that better accounts for
> >     non-standard locations:
> >     http://github.com/hibernate/hibernate-
> >     core/blob/master/buildSrc/src/main/java/org/hibernate/build/gradle/ma
> >     ven/LocalMavenRepoSniffer.java
> >     
> >     And a Gradle JIRA to have this feature added to Gradle:
> >     http://jira.codehaus.org/browse/GRADLE-1173
> >     
> >     On Thursday, October 14, 2010, at 08:24 am, Robert Fischer wrote:
> >      > For the record, it's generally considered bad form to deploy to
> >     
> >     your cache
> >     
> >      > or use it as a repository, although I've never really figured out
> >     
> >     why.
> >     
> >      >  Probably just the frequency with which the cache mutates or
> >     
> >     something.
> >     
> >      > ~~ Robert.
> >      > 
> >      > On 13 October 2010 13:31, Steve Ebersole <[email protected]
> >     
> >     <mailto:[email protected]>> wrote:
> >      > > Another option is to utilize your local maven repo cache.
> >       
> >       Personally I
> >       
> >      > > set up
> >      > > my projects to install there on assemble.  And then name it as a
> >      > > respository
> >      > > as well; the convention for doing that is:
> >      > > 
> >      > > repositories {
> >      > > 
> >      > >    mavenRepo urls: "file://" + System.getProperty('user.home') +
> >      > > 
> >      > > "/.m2/repository/"
> >      > > }
> >      > > 
> >      > > On Wednesday, October 13, 2010, at 12:03 pm, Rene Groeschke 
wrote:
> >      > > >  Hi Donald,
> >      > > > 
> >      > > > gradle 0.9-rc1 introduces a default timeout for SNAPSHOT
> >     
> >     artifacts. As
> >     
> >      > > > default gradle looks for a newer snapshot version only if the
> >     
> >     download
> >     
> >      > > > of the latest snapshot is more than 24h ago. you can switch
> >     
> >     of this
> >     
> >      > > > behaviour by setting the timeout for your maven repository to
> >     
> >     zero:
> >      > > > repositories {
> >      > > > 
> >      > > >     mavenRepo(urls:
> >      > > > "http://repo.mycompany.com/maven2";).setSnapshotTimeout(0)
> >      > > > }
> >      > > > 
> >      > > > regards,
> >      > > > René
> >      > > > 
> >      > > > Am 13.10.10 18:54, schrieb Donal Mc Namee:
> >      > > > > Hi,
> >      > > > > 
> >      > > > > I'm having trouble downloading SNAPSHOT dependencies.
> >      > > > > 
> >      > > > > 
> >      > > > > 
> >      > > > > I'm able to publish a SNAPSHOT artifact to our local
> >     
> >     Artifactory
> >     
> >      > > > > snapshots-repository using the following code:
> >      > > > > 
> >      > > > > 
> >      > > > > 
> >      > > > > apply {
> >      > > > > 
> >      > > > >                 plugin 'maven'
> >      > > > > 
> >      > > > > }
> >      > > > > 
> >      > > > > 
> >      > > > > 
> >      > > > > version = '1.1-SNAPSHOT'
> >      > > > > 
> >      > > > > 
> >      > > > > 
> >      > > > > uploadArchives {
> >      > > > > 
> >      > > > >         repositories.mavenDeployer {
> >      > > > >         
> >      > > > >             configuration = configurations.deployerJars
> >      > > > > 
> >      > > > >             repository(url:
> >      > > > > "http://vmsys124:8081/artifactory/libs-release-local";) {
> >      > > > > 
> >      > > > >                 authentication(userName: "admin", password:
> >      > > > > "xxxxxxxx")
> >      > > > > 
> >      > > > >             }
> >      > > > > 
> >      > > > > snapshotRepository(url:
> >      > > > > "http://vmsys124:8081/artifactory/libs-snapshots-local";) {
> >      > > > > 
> >      > > > >                                 authentication(userName:
> >     "admin",
> >     
> >      > > > > password: " xxxxxxxx ")
> >      > > > > 
> >      > > > >                 }
> >      > > > >         
> >      > > > >         }
> >      > > > >     
> >      > > > >     }
> >      > > > > 
> >      > > > > And this seems to work fine. I can see that the new
> >     
> >     SNAPSHOT artifact
> >     
> >      > > is
> >      > > 
> >      > > > > published to Artifactory.
> >      > > > > 
> >      > > > > 
> >      > > > > 
> >      > > > > However, my second project does not resolve this new
> >      > > > > snapshot.
> >      > > > > 
> >      > > > > My dependency there is declared with the following:
> >      > > > > 
> >      > > > > 
> >      > > > > 
> >      > > > > dependencies {
> >      > > > > 
> >      > > > >     compile 'ie.vhi:ea_app_common:1.1-SNAPSHOT'
> >      > > > > 
> >      > > > > }
> >      > > > > 
> >      > > > > 
> >      > > > > 
> >      > > > > The relevant output after running 'gradle -d' is below:
> >      > > > > 
> >      > > > > 
> >      > > > > 
> >      > > > > 17:20:18.909 [main] DEBUG
> >     
> >     org.gradle.logging.IvyLoggingAdaper - ==
> >     
> >      > > > > resolving dependencies
> >     
> >     ie.vhi.myvhi#myvhi_app_service;1.0->ie.vhi#ea_app_common;1.1-SNAPSHOT
> >     
> >      > > > > [compile->default]
> >      > > > > 
> >      > > > > 17:20:18.909 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >      > > 
> >      > > loadData
> >      > > 
> >      > > > > of ie.vhi#ea_app_common;1.1-SNAPSHOT of rootConf=compile
> >      > > > > 
> >      > > > > 17:20:18.909 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - using
> >      > > > > clientModuleChain to resolve
> >     
> >     ie.vhi#ea_app_common;1.1-SNAPSHOT
> >     
> >      > > > > 17:20:18.909 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - clientModuleChain:
> >      > > > > Checking cache for: dependency:
> >      > > > > ie.vhi#ea_app_common;1.1-SNAPSHOT {compile=[default]}
> >      > > > > 
> >      > > > > 17:20:18.909 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >     
> >      > > > > no ivy file in cache for ie.vhi#ea_app_common;1.1-SNAPSHOT:
> >     tried
> >     
> >      > > > > C:\Documents and
> >     
> >     Settings\mcnamee_do\.gradle\cache\ie.vhi\ea_app_common\ivy-1.1-SNAPSH
> >     OT.
> >     
> >      > > > > xml
> >      > > > > 
> >      > > > > 17:20:18.909 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - chain: Checking cache
> >      > > > > for: dependency:
> >      > > > > ie.vhi#ea_app_common;1.1-SNAPSHOT {compile=[default]}
> >      > > > > 
> >      > > > > 17:20:18.909 [main] DEBUG
> >     
> >     org.gradle.logging.IvyLoggingAdaper - don't
> >     
> >      > > > > use cache for ie.vhi#ea_app_common;1.1-SNAPSHOT:
> >      > > > > changing=true
> >      > > > > 
> >      > > > > 17:20:18.909 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >      > > > > 
> >      > > > > http://vmsys124:8081/artifactory/repo1_poms: no namespace
> >     
> >     defined:
> >      > > using
> >      > > 
> >      > > > > system
> >      > > > > 
> >      > > > > 17:20:18.909 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >     
> >      > > > > no ivy file in cache for ie.vhi#ea_app_common;1.1-SNAPSHOT:
> >     tried
> >     
> >      > > > > C:\Documents and
> >     
> >     Settings\mcnamee_do\.gradle\cache\ie.vhi\ea_app_common\ivy-1.1-SNAPSH
> >     OT.
> >     
> >      > > > > xml
> >      > > > > 
> >      > > > > 17:20:18.956 [main] DEBUG
> >     
> >     org.gradle.logging.IvyLoggingAdaper - HTTP
> >     
> >      > > > > response status: 404
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/repo1/ie/vhi/ea_app_common/1.1-SNAP
> >     
> >      > > > > SHOT/maven-metadata.xml
> >      > > > > 
> >      > > > > 17:20:18.956 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - CLIENT ERROR: Not
> >      > > > > Found
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/repo1/ie/vhi/ea_app_common/1.1-SNAP
> >     
> >      > > > > SHOT/maven-metadata.xml
> >      > > > > 
> >      > > > > 17:20:18.956 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >     
> >      > > > > maven-metadata not available:
> >     http://vmsys124:8081/artifactory/repo1/ie/vhi/ea_app_common/1.1-SNAPS
> >     HOT
> >     
> >      > > > > /maven-metadata.xml
> >      > > > > 
> >      > > > > 17:20:18.956 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - trying
> >     
> >     http://vmsys124:8081/artifactory/repo1/ie/vhi/ea_app_common/1.1-SNAPS
> >     HOT
> >     
> >      > > > > /ea_app_common-1.1-SNAPSHOT.pom
> >      > > > > 
> >      > > > > 17:20:18.956 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - tried
> >     
> >     http://vmsys124:8081/artifactory/repo1/ie/vhi/ea_app_common/1.1-SNAPS
> >     HOT
> >     
> >      > > > > /ea_app_common-1.1-SNAPSHOT.pom
> >      > > > > 
> >      > > > > 17:20:18.956 [main] DEBUG
> >     
> >     org.gradle.logging.IvyLoggingAdaper - HTTP
> >     
> >      > > > > response status: 404
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/repo1/ie/vhi/ea_app_common/1.1-SNAP
> >     
> >      > > > > SHOT/ea_app_common-1.1-SNAPSHOT.pom
> >      > > > > 
> >      > > > > 17:20:18.956 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - CLIENT ERROR: The
> >      > > > > repository 'repo1' rejected the artifact
> >     
> >     'repo1:ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.p
> >     om'
> >     
> >      > > > > due to its snapshot/release handling policy.
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/repo1/ie/vhi/ea_app_common/1.1-SNAP
> >     
> >      > > > > SHOT/ea_app_common-1.1-SNAPSHOT.pom
> >      > > > > 
> >      > > > > 17:20:18.956 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >      > > > > http://vmsys124:8081/artifactory/repo1_poms: resource not
> >     
> >     reachable
> >     
> >      > > for
> >      > > 
> >      > > > > ie/vhi#ea_app_common;1.1-SNAPSHOT:
> >      > > > > res=
> >     
> >     http://vmsys124:8081/artifactory/repo1/ie/vhi/ea_app_common/1.1-SNAP
> >     
> >      > > > > SHOT/ea_app_common-1.1-SNAPSHOT.pom
> >      > > > > 
> >      > > > > 17:20:18.956 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >     
> >      > > > > maven-metadata not available:
> >     http://vmsys124:8081/artifactory/repo1/ie/vhi/ea_app_common/1.1-SNAPS
> >     HOT
> >     
> >      > > > > /maven-metadata.xml
> >      > > > > 
> >      > > > > 17:20:18.956 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - trying
> >     
> >     http://vmsys124:8081/artifactory/repo1/ie/vhi/ea_app_common/1.1-SNAPS
> >     HOT
> >     
> >      > > > > /ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.956 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - tried
> >     
> >     http://vmsys124:8081/artifactory/repo1/ie/vhi/ea_app_common/1.1-SNAPS
> >     HOT
> >     
> >      > > > > /ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.971 [main] DEBUG
> >     
> >     org.gradle.logging.IvyLoggingAdaper - HTTP
> >     
> >      > > > > response status: 404
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/repo1/ie/vhi/ea_app_common/1.1-SNAP
> >     
> >      > > > > SHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.971 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - CLIENT ERROR: The
> >      > > > > repository 'repo1' rejected the artifact
> >     
> >     'repo1:ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.j
> >     ar'
> >     
> >      > > > > due to its snapshot/release handling policy.
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/repo1/ie/vhi/ea_app_common/1.1-SNAP
> >     
> >      > > > > SHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.971 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >      > > > > http://vmsys124:8081/artifactory/repo1_poms: resource not
> >     
> >     reachable
> >     
> >      > > for
> >      > > 
> >      > > > > ie/vhi#ea_app_common;1.1-SNAPSHOT:
> >      > > > > res=
> >     
> >     http://vmsys124:8081/artifactory/repo1/ie/vhi/ea_app_common/1.1-SNAP
> >     
> >      > > > > SHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.971 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >      > > > > http://vmsys124:8081/artifactory/repo1_poms: no ivy file
> >     
> >     nor artifact
> >     
> >      > > > > found for ie.vhi#ea_app_common;1.1-SNAPSHOT
> >      > > > > 
> >      > > > > 17:20:18.971 [main] DEBUG
> >     
> >     org.gradle.logging.IvyLoggingAdaper - ivy
> >     
> >      > > > > resolver didn't find dependency:
> >     ie.vhi#ea_app_common;1.1-SNAPSHOT
> >     
> >      > > > > {compile=[default]}: trying with artifact resolver
> >      > > > > 
> >      > > > > 17:20:18.971 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >      > > > > 
> >      > > > > http://vmsys124:8081/artifactory/repo1_jars: no namespace
> >     
> >     defined:
> >      > > using
> >      > > 
> >      > > > > system
> >      > > > > 
> >      > > > > 17:20:18.971 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >     
> >      > > > > no ivy file in cache for ie.vhi#ea_app_common;1.1-SNAPSHOT:
> >     tried
> >     
> >      > > > > C:\Documents and
> >     
> >     Settings\mcnamee_do\.gradle\cache\ie.vhi\ea_app_common\ivy-1.1-SNAPSH
> >     OT.
> >     
> >      > > > > xml
> >      > > > > 
> >      > > > > 17:20:18.971 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - trying
> >     
> >     http://vmsys124:8081/artifactory/repo1/ie/vhi/ea_app_common/1.1-SNAPS
> >     HOT
> >     
> >      > > > > /ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.971 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - tried
> >     
> >     http://vmsys124:8081/artifactory/repo1/ie/vhi/ea_app_common/1.1-SNAPS
> >     HOT
> >     
> >      > > > > /ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.971 [main] DEBUG
> >     
> >     org.gradle.logging.IvyLoggingAdaper - HTTP
> >     
> >      > > > > response status: 404
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/repo1/ie/vhi/ea_app_common/1.1-SNAP
> >     
> >      > > > > SHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.971 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - CLIENT ERROR: The
> >      > > > > repository 'repo1' rejected the artifact
> >     
> >     'repo1:ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.j
> >     ar'
> >     
> >      > > > > due to its snapshot/release handling policy.
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/repo1/ie/vhi/ea_app_common/1.1-SNAP
> >     
> >      > > > > SHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.971 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >      > > > > http://vmsys124:8081/artifactory/repo1_jars: resource not
> >     
> >     reachable
> >     
> >      > > for
> >      > > 
> >      > > > > ie/vhi#ea_app_common;1.1-SNAPSHOT:
> >      > > > > res=
> >     
> >     http://vmsys124:8081/artifactory/repo1/ie/vhi/ea_app_common/1.1-SNAP
> >     
> >      > > > > SHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.971 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - trying
> >     
> >     http://vmsys124:8081/artifactory/java.net.m2/ie/vhi/ea_app_common/1.1
> >     -SN
> >     
> >      > > > > APSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.971 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - tried
> >     
> >     http://vmsys124:8081/artifactory/java.net.m2/ie/vhi/ea_app_common/1.1
> >     -SN
> >     
> >      > > > > APSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.987 [main] DEBUG
> >     
> >     org.gradle.logging.IvyLoggingAdaper - HTTP
> >     
> >      > > > > response status: 404
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/java.net.m2/ie/vhi/ea_app_common/1.
> >     
> >      > > > > 1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.987 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - CLIENT ERROR: Not
> >      > > > > found
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/java.net.m2/ie/vhi/ea_app_common/1.
> >     
> >      > > > > 1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.987 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >      > > > > http://vmsys124:8081/artifactory/repo1_jars: resource not
> >     
> >     reachable
> >     
> >      > > for
> >      > > 
> >      > > > > ie/vhi#ea_app_common;1.1-SNAPSHOT:
> >      > > > > res=
> >     
> >     http://vmsys124:8081/artifactory/java.net.m2/ie/vhi/ea_app_common/1.
> >     
> >      > > > > 1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.987 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - trying
> >     
> >     http://vmsys124:8081/artifactory/SpringFrameworkRelease/ie/vhi/ea_app
> >     _co
> >     
> >      > > > > mmon/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.987 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - tried
> >     
> >     http://vmsys124:8081/artifactory/SpringFrameworkRelease/ie/vhi/ea_app
> >     _co
> >     
> >      > > > > mmon/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.987 [main] DEBUG
> >     
> >     org.gradle.logging.IvyLoggingAdaper - HTTP
> >     
> >      > > > > response status: 404
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/SpringFrameworkRelease/ie/vhi/ea_ap
> >     
> >      > > > > p_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.987 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - CLIENT ERROR: Not
> >      > > > > Found
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/SpringFrameworkRelease/ie/vhi/ea_ap
> >     
> >      > > > > p_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.987 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >      > > > > http://vmsys124:8081/artifactory/repo1_jars: resource not
> >     
> >     reachable
> >     
> >      > > for
> >      > > 
> >      > > > > ie/vhi#ea_app_common;1.1-SNAPSHOT:
> >      > > > > res=
> >     
> >     http://vmsys124:8081/artifactory/SpringFrameworkRelease/ie/vhi/ea_ap
> >     
> >      > > > > p_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.987 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - trying
> >     
> >     http://vmsys124:8081/artifactory/jboss/ie/vhi/ea_app_common/1.1-SNAPS
> >     HOT
> >     
> >      > > > > /ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.987 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - tried
> >     
> >     http://vmsys124:8081/artifactory/jboss/ie/vhi/ea_app_common/1.1-SNAPS
> >     HOT
> >     
> >      > > > > /ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.987 [main] DEBUG
> >     
> >     org.gradle.logging.IvyLoggingAdaper - HTTP
> >     
> >      > > > > response status: 404
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/jboss/ie/vhi/ea_app_common/1.1-SNAP
> >     
> >      > > > > SHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.987 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - CLIENT ERROR: The
> >      > > > > repository 'jboss' rejected the artifact
> >     
> >     'jboss:ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.j
> >     ar'
> >     
> >      > > > > due to its snapshot/release handling policy.
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/jboss/ie/vhi/ea_app_common/1.1-SNAP
> >     
> >      > > > > SHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.987 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >      > > > > http://vmsys124:8081/artifactory/repo1_jars: resource not
> >     
> >     reachable
> >     
> >      > > for
> >      > > 
> >      > > > > ie/vhi#ea_app_common;1.1-SNAPSHOT:
> >      > > > > res=
> >     
> >     http://vmsys124:8081/artifactory/jboss/ie/vhi/ea_app_common/1.1-SNAP
> >     
> >      > > > > SHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.987 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - trying
> >     
> >     http://vmsys124:8081/artifactory/java.net.m1/ie/vhi/ea_app_common/1.1
> >     -SN
> >     
> >      > > > > APSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:18.987 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - tried
> >     
> >     http://vmsys124:8081/artifactory/java.net.m1/ie/vhi/ea_app_common/1.1
> >     -SN
> >     
> >      > > > > APSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:19.331 [main] DEBUG
> >     
> >     org.gradle.logging.IvyLoggingAdaper - HTTP
> >     
> >      > > > > response status: 404
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/java.net.m1/ie/vhi/ea_app_common/1.
> >     
> >      > > > > 1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:19.331 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - CLIENT ERROR: Not
> >      > > > > found
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/java.net.m1/ie/vhi/ea_app_common/1.
> >     
> >      > > > > 1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:19.331 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >      > > > > http://vmsys124:8081/artifactory/repo1_jars: resource not
> >     
> >     reachable
> >     
> >      > > for
> >      > > 
> >      > > > > ie/vhi#ea_app_common;1.1-SNAPSHOT:
> >      > > > > res=
> >     
> >     http://vmsys124:8081/artifactory/java.net.m1/ie/vhi/ea_app_common/1.
> >     
> >      > > > > 1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:19.331 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - trying
> >     
> >     http://vmsys124:8081/artifactory/ext-releases-local/ie/vhi/ea_app_com
> >     mon
> >     
> >      > > > > /1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:19.331 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - tried
> >     
> >     http://vmsys124:8081/artifactory/ext-releases-local/ie/vhi/ea_app_com
> >     mon
> >     
> >      > > > > /1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:19.331 [main] DEBUG
> >     
> >     org.gradle.logging.IvyLoggingAdaper - HTTP
> >     
> >      > > > > response status: 404
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/ext-releases-local/ie/vhi/ea_app_co
> >     
> >      > > > > mmon/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:19.331 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - CLIENT ERROR: The
> >      > > > > repository 'ext-releases-local' rejected the artifact
> >     
> >     'ext-releases-local:ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1
> >     .1-
> >     
> >      > > > > SNAPSHOT.jar' due to its snapshot/release handling policy.
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/ext-releases-local/ie/vhi/ea_app_co
> >     
> >      > > > > mmon/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:19.331 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >      > > > > http://vmsys124:8081/artifactory/repo1_jars: resource not
> >     
> >     reachable
> >     
> >      > > for
> >      > > 
> >      > > > > ie/vhi#ea_app_common;1.1-SNAPSHOT:
> >      > > > > res=
> >     
> >     http://vmsys124:8081/artifactory/ext-releases-local/ie/vhi/ea_app_co
> >     
> >      > > > > mmon/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:19.331 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - trying
> >     
> >     http://vmsys124:8081/artifactory/com.springsource.repository.bundles.
> >     rel
> >     
> >     
> >     ease/ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >     
> >      > > > > 17:20:19.331 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - tried
> >     
> >     http://vmsys124:8081/artifactory/com.springsource.repository.bundles.
> >     rel
> >     
> >     
> >     ease/ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >     
> >      > > > > 17:20:19.331 [main] DEBUG
> >     
> >     org.gradle.logging.IvyLoggingAdaper - HTTP
> >     
> >      > > > > response status: 404
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/com.springsource.repository.bundles
> >     
> >     
> >     .release/ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT
> >     .ja
> >     
> >      > > > > r
> >      > > > > 
> >      > > > > 17:20:19.331 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - CLIENT ERROR: Not
> >      > > > > Found
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/com.springsource.repository.bundles
> >     
> >     
> >     .release/ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT
> >     .ja
> >     
> >      > > > > r
> >      > > > > 
> >      > > > > 17:20:19.331 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >      > > > > http://vmsys124:8081/artifactory/repo1_jars: resource not
> >     
> >     reachable
> >     
> >      > > for
> >      > > 
> >      > > > > ie/vhi#ea_app_common;1.1-SNAPSHOT:
> >      > > > > res=
> >     
> >     http://vmsys124:8081/artifactory/com.springsource.repository.bundles
> >     
> >     
> >     .release/ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT
> >     .ja
> >     
> >      > > > > r
> >      > > > > 
> >      > > > > 17:20:19.331 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - trying
> >     
> >     http://vmsys124:8081/artifactory/com.springsource.repository.bundles.
> >     ext
> >     
> >     
> >     ernal/ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.ja
> >     
> >      > > > > r
> >      > > > > 
> >      > > > > 17:20:19.331 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - tried
> >     
> >     http://vmsys124:8081/artifactory/com.springsource.repository.bundles.
> >     ext
> >     
> >     
> >     ernal/ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.ja
> >     
> >      > > > > r
> >      > > > > 
> >      > > > > 17:20:19.346 [main] DEBUG
> >     
> >     org.gradle.logging.IvyLoggingAdaper - HTTP
> >     
> >      > > > > response status: 404
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/com.springsource.repository.bundles
> >     
> >     
> >     .external/ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHO
> >     T.j
> >     
> >      > > > > ar
> >      > > > > 
> >      > > > > 17:20:19.346 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - CLIENT ERROR: Not
> >      > > > > Found
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/com.springsource.repository.bundles
> >     
> >     
> >     .external/ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHO
> >     T.j
> >     
> >      > > > > ar
> >      > > > > 
> >      > > > > 17:20:19.346 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >      > > > > http://vmsys124:8081/artifactory/repo1_jars: resource not
> >     
> >     reachable
> >     
> >      > > for
> >      > > 
> >      > > > > ie/vhi#ea_app_common;1.1-SNAPSHOT:
> >      > > > > res=
> >     
> >     http://vmsys124:8081/artifactory/com.springsource.repository.bundles
> >     
> >     
> >     .external/ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHO
> >     T.j
> >     
> >      > > > > ar
> >      > > > > 
> >      > > > > 17:20:19.346 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - trying
> >     
> >     http://vmsys124:8081/artifactory/com.springsource.repository.librarie
> >     s.r
> >     
> >     
> >     elease/ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.j
> >     
> >      > > > > ar
> >      > > > > 
> >      > > > > 17:20:19.346 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - tried
> >     
> >     http://vmsys124:8081/artifactory/com.springsource.repository.librarie
> >     s.r
> >     
> >     
> >     elease/ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.j
> >     
> >      > > > > ar
> >      > > > > 
> >      > > > > 17:20:19.346 [main] DEBUG
> >     
> >     org.gradle.logging.IvyLoggingAdaper - HTTP
> >     
> >      > > > > response status: 404
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/com.springsource.repository.librari
> >     
> >     
> >     es.release/ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSH
> >     OT.
> >     
> >      > > > > jar
> >      > > > > 
> >      > > > > 17:20:19.346 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - CLIENT ERROR: Not
> >      > > > > Found
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/com.springsource.repository.librari
> >     
> >     
> >     es.release/ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSH
> >     OT.
> >     
> >      > > > > jar
> >      > > > > 
> >      > > > > 17:20:19.346 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >      > > > > http://vmsys124:8081/artifactory/repo1_jars: resource not
> >     
> >     reachable
> >     
> >      > > for
> >      > > 
> >      > > > > ie/vhi#ea_app_common;1.1-SNAPSHOT:
> >      > > > > res=
> >     
> >     http://vmsys124:8081/artifactory/com.springsource.repository.librari
> >     
> >     
> >     es.release/ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSH
> >     OT.
> >     
> >      > > > > jar
> >      > > > > 
> >      > > > > 17:20:19.346 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - trying
> >     
> >     http://vmsys124:8081/artifactory/com.springsource.repository.librarie
> >     s.e
> >     
> >     
> >     xternal/ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.
> >     jar
> >     
> >      > > > > 17:20:19.346 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - tried
> >     
> >     http://vmsys124:8081/artifactory/com.springsource.repository.librarie
> >     s.e
> >     
> >     
> >     xternal/ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.
> >     jar
> >     
> >      > > > > 17:20:19.362 [main] DEBUG
> >     
> >     org.gradle.logging.IvyLoggingAdaper - HTTP
> >     
> >      > > > > response status: 404
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/com.springsource.repository.librari
> >     
> >     
> >     es.external/ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPS
> >     HOT
> >     
> >      > > > > .jar
> >      > > > > 
> >      > > > > 17:20:19.362 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - CLIENT ERROR: Not
> >      > > > > Found
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/com.springsource.repository.librari
> >     
> >     
> >     es.external/ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPS
> >     HOT
> >     
> >      > > > > .jar
> >      > > > > 
> >      > > > > 17:20:19.362 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >      > > > > http://vmsys124:8081/artifactory/repo1_jars: resource not
> >     
> >     reachable
> >     
> >      > > for
> >      > > 
> >      > > > > ie/vhi#ea_app_common;1.1-SNAPSHOT:
> >      > > > > res=
> >     
> >     http://vmsys124:8081/artifactory/com.springsource.repository.librari
> >     
> >     
> >     es.external/ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-1.1-SNAPS
> >     HOT
> >     
> >      > > > > .jar
> >      > > > > 
> >      > > > > 17:20:19.362 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - trying
> >     
> >     http://vmsys124:8081/artifactory/libs-releases-local/ie/vhi/ea_app_co
> >     mmo
> >     
> >      > > > > n/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:19.362 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - tried
> >     
> >     http://vmsys124:8081/artifactory/libs-releases-local/ie/vhi/ea_app_co
> >     mmo
> >     
> >      > > > > n/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:19.362 [main] DEBUG
> >     
> >     org.gradle.logging.IvyLoggingAdaper - HTTP
> >     
> >      > > > > response status: 404
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/libs-releases-local/ie/vhi/ea_app_c
> >     
> >      > > > > ommon/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:19.362 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - CLIENT ERROR: The
> >      > > > > repository 'libs-releases-local' rejected the artifact
> >     
> >     'libs-releases-local:ie/vhi/ea_app_common/1.1-SNAPSHOT/ea_app_common-
> >     1.1
> >     
> >      > > > > -SNAPSHOT.jar' due to its snapshot/release handling policy.
> >      > > > > url=
> >     
> >     http://vmsys124:8081/artifactory/libs-releases-local/ie/vhi/ea_app_c
> >     
> >      > > > > ommon/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:19.362 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >      > > > > http://vmsys124:8081/artifactory/repo1_jars: resource not
> >     
> >     reachable
> >     
> >      > > for
> >      > > 
> >      > > > > ie/vhi#ea_app_common;1.1-SNAPSHOT:
> >      > > > > res=
> >     
> >     http://vmsys124:8081/artifactory/libs-releases-local/ie/vhi/ea_app_c
> >     
> >      > > > > ommon/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:19.362 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - trying
> >     
> >     http://vmsys124:8081/artifactory/libs-snapshots-local/ie/vhi/ea_app_c
> >     omm
> >     
> >      > > > > on/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:19.362 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - tried
> >     
> >     http://vmsys124:8081/artifactory/libs-snapshots-local/ie/vhi/ea_app_c
> >     omm
> >     
> >      > > > > on/1.1-SNAPSHOT/ea_app_common-1.1-SNAPSHOT.jar
> >      > > > > 
> >      > > > > 17:20:19.378 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper -
> >      > > > > http://vmsys124:8081/artifactory/repo1_jars: no ivy file
> >     
> >     found for
> >     
> >      > > > > ie.vhi#ea_app_common;1.1-SNAPSHOT: using default data
> >      > > > > 
> >      > > > > 17:20:19.409 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - checking
> >      > > > > ie.vhi#ea_app_common;1.1-SNAPSHOT[default] from
> >      > > > > http://vmsys124:8081/artifactory/repo1_jars against [none]
> >      > > > > 
> >      > > > > 17:20:19.409 [main] DEBUG
> >      > > > > org.gradle.logging.IvyLoggingAdaper - module revision kept
> >      > > > > as first found:
> >      > > > > ie.vhi#ea_app_common;1.1-SNAPSHOT[default] from
> >      > > > > http://vmsys124:8081/artifactory/repo1_jars
> >      > > > > 
> >      > > > > 17:20:19.424 [main] INFO 
> >      > > > > org.gradle.logging.IvyLoggingAdaper - found
> >      > > > > ie.vhi#ea_app_common;1.1-SNAPSHOT in
> >      > > > > http://vmsys124:8081/artifactory/repo1_jars
> >      > > > > 
> >      > > > > 
> >      > > > > 
> >      > > > > Is there any reason why Gradle will not detect that there
> >     
> >     is a new
> >     
> >      > > > > SNAPSHOT artifact and resolve that one as opposed to the
> >     
> >     one in the
> >     
> >      > > > > cache?
> >      > > > > 
> >      > > > > 
> >      > > > > 
> >      > > > > Thanks,
> >      > > > > 
> >      > > > > Donal.
> >      > > 
> >      > > ---
> >      > > Steve Ebersole <[email protected]
> >      > > <mailto:[email protected]>> http://hibernate.org
> >     
> >     ---------------------------------------------------------------------
> >     
> >      > > To unsubscribe from this list, please visit:
> >      > > http://xircles.codehaus.org/manage_email
> >     
> >     ---
> >     Steve Ebersole <[email protected] <mailto:[email protected]>>
> >     http://hibernate.org
> >     
> >     ---------------------------------------------------------------------
> >     To unsubscribe from this list, please visit:
> >     
> >     http://xircles.codehaus.org/manage_email
> 
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
> 
>     http://xircles.codehaus.org/manage_email

---
Steve Ebersole <[email protected]>
http://hibernate.org

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to