Gradle + bintray:正确指定依赖项的依赖关系

时间:2015-06-06 11:56:41

标签: java maven gradle dependencies

我有以下情况:

我想在我的另一个项目中使用我的一个项目(在bintray.com上托管)。

我设置了一个maven存储库,上传了工件和pom文件,然后能够利用上传到bintray maven repo的jar文件,并使用以下build.gradle文件:

apply plugin: 'java'
apply plugin: 'application'

mainClassName = 'randers.test.usageTest.UsageTest'

repositories {
    maven { url 'http://dl.bintray.com/randers00/NotEnoughVocab' }
    jcenter()
}

dependencies {
    compile(group: 'randers.notenoughvocab.core', name: 'notenoughvocab-core', version: '0.0.1', ext: 'jar')
}

jar {
    manifest {
        attributes "Main-Class": mainClassName
    }
}

这个构建文件成功地为项目配备了我的核心库,甚至在IDE中提供了源代码等(我使用的IntelliJ IDEA)

问题是:核心本身使用的库是gradle无法获得的。

这是bintray上的pom文件:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>randers.notenoughvocab.core</groupId>
  <artifactId>notenoughvocab-core</artifactId>
  <version>0.0.1</version>
  <dependencies>
    <dependency>
      <groupId>ch.qos.logback</groupId>
      <artifactId>logback-classic</artifactId>
      <version>1.1.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>joda-time</groupId>
      <artifactId>joda-time</artifactId>
      <version>2.7</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.jdom</groupId>
      <artifactId>jdom2</artifactId>
      <version>2.0.6</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>commons-configuration</groupId>
      <artifactId>commons-configuration</artifactId>
      <version>1.10</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>commons-collections</groupId>
      <artifactId>commons-collections</artifactId>
      <version>3.2.1</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
  <licenses>
    <license>
      <name>GNU General Public License, Version 3.0</name>
      <url>http://www.gnu.org/licenses/gpl.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <contributors>
    <contributor>
      <name>Ruben Anders</name>
      <email>RAnders00@users.noreply.github.com</email>
      <url>https://github.com/RAnders00</url>
    </contributor>
  </contributors>
</project>

我查看了bintray上的其他项目,他们的pom文件看起来很相似。

1 个答案:

答案 0 :(得分:1)

宣布依赖传统和简单的方式可以正常工作:

compile 'randers.notenoughvocab.core:notenoughvocab-core:0.0.1'

指定ext: 'jar'时不起作用,因为它用于下载单个工件。来自user guide

  

仅限神器符号

     

如上所述,如果找不到模块描述符文件,Gradle默认下载一个带有模块名称的jar。但有时,即使存储库包含模块描述符,您也只想下载工件jar,而不需要依赖项。 [14] 有时您想从存储库下载一个没有模块描述符的zip。 Gradle仅为这些用例提供了一个工件表示法 - 只需在您希望下载的扩展名前加上“@”符号:

     

例50.5。仅限神器符号

     

的build.gradle

dependencies {
   runtime "org.groovy:groovy:2.2.0@jar"
   runtime group: 'org.groovy', name: 'groovy', version: '2.2.0', ext: 'jar'
}