I'n sure I'm missing something in the documentation, but when I upload my archives to our local nexus instance the jar and pom get a datetimestamp thrown onto it that prevents the artifact from being resolved in other applications. Anyway to turn that feature off?
Here is what my build.gradle looks like: apply plugin: 'groovy' apply plugin: 'eclipse' apply plugin: 'maven' apply from: 'http://resolver/gradle-scripts/repo-settings/internal-maven.gradle' group="com.carfax.examples" version='0.0.1-SNAPSHOT' dependencies { groovy 'org.codehaus.groovy:groovy:1.7.5' compile 'commons-lang:commons-lang:2.3' } uploadArchives { repositories.mavenDeployer { repository(url: "http://resolver/libs-snapshot-local") pom.version = version pom.artifactId = project.name pom.groupId = group } } What am I missing here? Thanks, james --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email
