几年前,当我使用NetBeans构建使用Google Drive API的桌面应用时,我需要手动下载所有必需的jar文件
https://github.com/yccheok/jstock/tree/master/libs/drive
现在,Google引入了gradle构建系统,可以无缝地获取所有必需的库。
apply plugin: 'java'
apply plugin: 'application'
mainClassName = 'DriveQuickstart'
sourceCompatibility = 1.7
targetCompatibility = 1.7
version = '1.0'
repositories {
mavenCentral()
}
dependencies {
compile 'com.google.api-client:google-api-client:1.20.0'
compile 'com.google.oauth-client:google-oauth-client-jetty:1.20.0'
compile 'com.google.apis:google-api-services-drive:v2-rev170-1.20.0'
}
我希望继续使用NetBeans作为我的开发工具,在我的旧桌面应用项目中使用Google Drive API。 (旧版桌面应用程序是先前使用NetBeans构建的。我无意切换到其他开发工具)
我需要jar文件中的所有库,以便我可以将它们包含在NetBeans中。
我想在运行gradle -q run
之后,我可以在本地文件夹中找到依赖jar文件。
但是,我在本地文件夹中找不到任何相关的Google Drive API jar文件。
我可以知道,如何为Google Drive API下载必要的jar文件?或者,换句话说,我如何使用NetBeans为Google Drive API开发桌面应用程序?
答案 0 :(得分:0)
在Linux中,我意识到,在运行gradle -q run
之后,可以在
find ~/.gradle/ -name "*jar"
我只是将所有jar文件复制到我的本地项目lib文件夹,并使用NetBeans引用它们。