码迷,mamicode.com
首页 > 其他好文 > 详细

Gradle 1.3之前的Publishing artifacts

时间:2014-07-16 20:54:27      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   使用   

在Gradle1.3之前,Publishing artifacts是使用uploadConfigurationName来publish

声明artifacts是靠使用

build.gradle

artifacts {
    artifact
}

声明。

生成artifact:可以使用三种途径:

1、使用已定义的任务:

task myJar(type: Jar)
artifacts {
   archives myJar
}

2、使用一个file:

def someFile = file(‘build/somefile.txt‘)
artifacts {
  archives someFile
}

3、自定义一个artifact

task myTask(type: MyTaskType) {
  destFile = file(‘build/somefile.txt‘)
}
artifacts {
  archives(myTask.destFile) {
  name ‘my-artifact‘
  type ‘text‘
  builtBy myTask
  }
}

开始上传:

repositories {
 flatDir {
  name "fileRepo"
  dirs "repo"
  }
}
uploadArchives {
  repositories {
    add project.repositories.fileRepo
    ivy {
      credentials {
         username "username"
         password "pw"
       }
    url "http://repo.mycompany.com"
   }
  }
}

这个uploadArchives 其实就是uploadConfigurationName,其中archives就是上文中的artifacts 的configurationName

备注:gradle1.3之后采用新的机制上传组件,这个待下篇分讲。

Gradle 1.3之前的Publishing artifacts,布布扣,bubuko.com

Gradle 1.3之前的Publishing artifacts

标签:des   style   blog   http   color   使用   

原文地址:http://www.cnblogs.com/beiyeren/p/3836499.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!