嗨,我是 swagger 的新手,自从我为 Android 开发以来已经有一段时间了 - 还没有完全理解 gradle 文件等。
我坚持这个问题依赖于 JUnit 4.12
我有一个项目,我不想与使用 swagger-codegen 生成的项目创建的项目合并
我已经导入了源代码,但现在我无法解决 Junit:2.14
无法解决:junit:junit:4.12
我试图将它添加到 gradlebuild 不同的方式中,并阅读了一些你应该将 maven 添加为存储库的地方。已导入 pom.xml。
在 swagger-codegen 项目中有一个名为 build.sbt 的文件不在我的项目中。跟那个文件有关系吗?不太明白为什么应该还有另一个构建文件。
应用插件:'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "24.0.0"
defaultConfig {
applicationId "com.xxxxx.app.xxxxx"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
buildscript {
repositories {
jcenter()
maven { url 'http://repo1.maven.org/maven2' }
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.google.android.gms:play-services-gcm:7.8.0'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
androidTestCompile 'junit:junit:4.12'
}