我在我的android工作室中有一個android項目(gradl),我有一個maven模塊,我想在我的android項目中使用。結構如下:在Android Studio中使用maven模塊
- Androidproject(gradle這個)
- 子項目(gradle這個)
- - 的build.gradle
- MyFancyStuff(gradle這個)
- - ...
- build.gradle
- settings.gradl
- 共享模型(Maven項目)
- 的pom.xml
- ...
現在我調整我的settings.gradle
如下:
include ':MyFancyStuff',':shared-models'
project(':shared-models').projectDir = new File('../shared-models')
我這從幾個其他的stackoverflow主題。
現在子項目的build.gradle
:
apply plugin: 'com.android.library'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
minSdkVersion 18
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'MyFancyStuff:[email protected]'
compile 'org.codehaus.jackson:jackson-mapper-asl:1.9.0'
compile 'com.sun.jersey:jersey-client:1.9.1'
compile 'com.google.code.gson:gson:1.7.2'
compile project(':shared-models')
}
repositories{
flatDir{
dirs 'libs'
}
ivy {
url "../shared-models"
}
}
現在我得到以下錯誤:
Error:Configuration with name 'default' not found.
基於計算器上的其他線程,我不知道這個問題...
gradle是不可能的? – thardes2
根據我的經驗,Gradle不提供解析POM文件的原生支持,但Groovy的[XmlSlurper](http://groovy.codehaus.org/Reading+XML+using+Groovy's+XmlSlurper)使得XML解析變得簡單方便。請檢查此鏈接:http://willis7.github.io/blog/2015/02/read-pom-from-xml.html –