我有这个项目:https://github.com/TomGrill/gdx-facebook/并且想要使用它的人必须手动将第三方依赖项添加到他们的build.gradle文件中。 (https://github.com/TomGrill/gdx-facebook/wiki/3.-Setup-gdx-facebook)
像这样:
compile "de.tomgrill.gdxfacebook:gdx-facebook-android:1.0.0"
compile "com.facebook.android:facebook-android-sdk:4.7.0" //3rd party project
我想要的只是这一行:
compile "de.tomgrill.gdxfacebook:gdx-facebook-android:1.0.0"
(1)因此当有人将依赖项(gdx-facebook)广告到他的build.gradle时,第三方项目(android-sdk)将通过gradle自动获取。
或
(2)如何将第三方项目包含到我的项目中,以便在我发布项目时自动编译/交付项目。
答案 0 :(得分:0)
In your module gdx-facebook-android
just add the dependency:
dependencies {
compile "com.facebook.android:facebook-android-sdk:4.7.0"
}
In this way the pom file will contain the dependency (as the current gdx-facebook-core module)