gpt4 book ai didi

android jaxws-api 依赖导致冲突

转载 作者:行者123 更新时间:2023-11-29 02:42:08 24 4
gpt4 key购买 nike

我使用 wsimport 从 wsdl 生成类。现在我正在解决缺少的依赖项,其中一些属于 javax.xml.ws:jaxws-api:

导入 javax.xml.ws.Service;
导入 javax.xml.ws.WebServiceException;
导入 javax.xml.ws.WebServiceFeature;
当我添加依赖项时,gradle 构建失败:

错误:与项目“:app”中的依赖项“javax.annotation:javax.annotation-api”冲突。应用程序 (1.2-b03) 和测试应用程序 (1.2) 的已解决版本不同。参见 http://g.co/androidstudio/app-test-app-conflict了解详情。

为什么这种依赖会导致这个奇怪的错误?我尝试更改版本并从 build.gradle 中删除一些其他依赖项,但没有。这是我的 build.gradle:

apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.prova"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile 'org.springframework.android:spring-android-rest-template:1.0.1.RELEASE'
compile 'com.fasterxml.jackson.core:jackson-databind:2.3.2'
compile 'javax.xml.bind:jaxb-api:2.2.11'
compile 'javax.xml.ws:jaxws-api:2.2.11'//this is causing conflict
}

非常感谢您的帮助

编辑

我尝试添加以下内容:

configurations.all{
resolutionStrategy.force 'javax.annotation:javax.annotation-api:1.2'
}

但是又出现了一个奇怪的错误:

错误:处理“javax/xml/soap/AttachmentPart.class”时遇到问题:错误:不明智或错误地使用核心类(java.* 或 javax.*)错误:未构建核心库时。....

最佳答案

build.gradle 应用程序中的这些代码是罪魁祸首。

   androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
testCompile 'junit:junit:4.12'

删除它们后,gradle compire 错误解决了。还要检查外部库..那个额外的 javax.annotation-api-1.2 已经不存在了。享受吧!!

关于android jaxws-api 依赖导致冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43409804/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com