- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我导入了一个与同事一起运行良好的项目,但是,尽管我们使用相同的构建,但 gradle 依赖项 (org.json:json) 正在作为不同版本导入。 gradle 文件如下所示
我的依赖项版本是 2013 年,他们的版本是 2010 年,其中 JSONObject.getString()
函数不同,导致运行应用程序时我的计算机出现错误。
如何确保我获得与他们相同的依赖关系以及是什么导致了这种差异?
build.gradle文件如下所示:
buildscript {
ext {
springBootVersion = '1.5.9.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
apply plugin: 'war'
group = 'com.ejada'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.7
repositories {
mavenCentral()
mavenLocal()
maven {
url 'http://repo.enonic.com/public/'
}
}
configurations {
providedRuntime
}
dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
providedRuntime('org.springframework.boot:spring-boot-starter-tomcat')
testCompile('org.springframework.boot:spring-boot-starter-test')
compile("org.springframework:spring-context-support")
compile("org.springframework:spring-jdbc")
compile files('libs/ojdbc6.jar')
compile group: 'nl.captcha', name: 'simplecaptcha', version: '1.2.1'
compile group: 'commons-codec', name: 'commons-codec', version: '1.9'
compile group: 'org.antlr', name: 'stringtemplate', version: '4.0.2'
compile("org.json:json")
compile('com.google.code.gson:gson:2.7')
// For XML Response
compile('com.fasterxml.jackson.dataformat:jackson-dataformat-xml')
compile("org.springframework.boot:spring-boot-starter-security")
compile("org.springframework.ldap:spring-ldap-core")
compile("org.springframework.security:spring-security-ldap")
compile("com.unboundid:unboundid-ldapsdk")
compile("org.springframework:spring-tx")
compile('org.apache.directory.studio:org.apache.commons.io:2.4')
compile("org.springframework.boot:spring-boot-devtools")
compile group: 'com.github.ulisesbocchio', name: 'jasypt-spring-boot-starter', version: '1.4-java7'
compile('javax.servlet:javax.servlet-api')
compile("org.aspectj:aspectjweaver")
compile("com.fasterxml.jackson.core:jackson-databind")
}
按照请求添加 cmd gradlew dependency --configuration runtime
的输出(下面的两台机器完全相同):
runtime - Runtime dependencies for source set 'main' (deprecated, use 'runtimeOnly ' instead).
+--- org.springframework.boot:spring-boot-starter-web: -> 1.5.9.RELEASE
| +--- org.springframework.boot:spring-boot-starter:1.5.9.RELEASE
| | +--- org.springframework.boot:spring-boot:1.5.9.RELEASE
| | | +--- org.springframework:spring-core:4.3.13.RELEASE
| | | \--- org.springframework:spring-context:4.3.13.RELEASE
| | | +--- org.springframework:spring-aop:4.3.13.RELEASE
| | | | +--- org.springframework:spring-beans:4.3.13.RELEASE
| | | | | \--- org.springframework:spring-core:4.3.13.RELEASE
| | | | \--- org.springframework:spring-core:4.3.13.RELEASE
| | | +--- org.springframework:spring-beans:4.3.13.RELEASE (*)
| | | +--- org.springframework:spring-core:4.3.13.RELEASE
| | | \--- org.springframework:spring-expression:4.3.13.RELEASE
| | | \--- org.springframework:spring-core:4.3.13.RELEASE
| | +--- org.springframework.boot:spring-boot-autoconfigure:1.5.9.RELEASE
| | | \--- org.springframework.boot:spring-boot:1.5.9.RELEASE (*)
| | +--- org.springframework.boot:spring-boot-starter-logging:1.5.9.RELEASE
| | | +--- ch.qos.logback:logback-classic:1.1.11
| | | | +--- ch.qos.logback:logback-core:1.1.11
| | | | \--- org.slf4j:slf4j-api:1.7.22 -> 1.7.25
| | | +--- org.slf4j:jcl-over-slf4j:1.7.25
| | | | \--- org.slf4j:slf4j-api:1.7.25
| | | +--- org.slf4j:jul-to-slf4j:1.7.25
| | | | \--- org.slf4j:slf4j-api:1.7.25
| | | \--- org.slf4j:log4j-over-slf4j:1.7.25
| | | \--- org.slf4j:slf4j-api:1.7.25
| | +--- org.springframework:spring-core:4.3.13.RELEASE
| | \--- org.yaml:snakeyaml:1.17
| +--- org.springframework.boot:spring-boot-starter-tomcat:1.5.9.RELEASE
| | +--- org.apache.tomcat.embed:tomcat-embed-core:8.5.23
| | | \--- org.apache.tomcat:tomcat-annotations-api:8.5.23
| | +--- org.apache.tomcat.embed:tomcat-embed-el:8.5.23
| | \--- org.apache.tomcat.embed:tomcat-embed-websocket:8.5.23
| | \--- org.apache.tomcat.embed:tomcat-embed-core:8.5.23 (*)
| +--- org.hibernate:hibernate-validator:5.3.6.Final
| | +--- javax.validation:validation-api:1.1.0.Final
| | +--- org.jboss.logging:jboss-logging:3.3.0.Final -> 3.3.1.Final
| | \--- com.fasterxml:classmate:1.3.1 -> 1.3.4
| +--- com.fasterxml.jackson.core:jackson-databind:2.8.10
| | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0
| | \--- com.fasterxml.jackson.core:jackson-core:2.8.10
| +--- org.springframework:spring-web:4.3.13.RELEASE
| | +--- org.springframework:spring-aop:4.3.13.RELEASE (*)
| | +--- org.springframework:spring-beans:4.3.13.RELEASE (*)
| | +--- org.springframework:spring-context:4.3.13.RELEASE (*)
| | \--- org.springframework:spring-core:4.3.13.RELEASE
| \--- org.springframework:spring-webmvc:4.3.13.RELEASE
| +--- org.springframework:spring-aop:4.3.13.RELEASE (*)
| +--- org.springframework:spring-beans:4.3.13.RELEASE (*)
| +--- org.springframework:spring-context:4.3.13.RELEASE (*)
| +--- org.springframework:spring-core:4.3.13.RELEASE
| +--- org.springframework:spring-expression:4.3.13.RELEASE (*)
| \--- org.springframework:spring-web:4.3.13.RELEASE (*)
+--- org.springframework:spring-context-support: -> 4.3.13.RELEASE
| +--- org.springframework:spring-beans:4.3.13.RELEASE (*)
| +--- org.springframework:spring-context:4.3.13.RELEASE (*)
| \--- org.springframework:spring-core:4.3.13.RELEASE
+--- org.springframework:spring-jdbc: -> 4.3.13.RELEASE
| +--- org.springframework:spring-beans:4.3.13.RELEASE (*)
| +--- org.springframework:spring-core:4.3.13.RELEASE
| \--- org.springframework:spring-tx:4.3.13.RELEASE
| +--- org.springframework:spring-beans:4.3.13.RELEASE (*)
| \--- org.springframework:spring-core:4.3.13.RELEASE
+--- nl.captcha:simplecaptcha:1.2.1
+--- commons-codec:commons-codec:1.9
+--- org.antlr:stringtemplate:4.0.2
| \--- org.antlr:antlr-runtime:3.3
| \--- org.antlr:stringtemplate:3.2.1 -> 4.0.2 (*)
+--- org.json:json: -> 20140107
+--- com.google.code.gson:gson:2.7
+--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml: -> 2.8.10
| +--- com.fasterxml.jackson.core:jackson-core:2.8.10
| +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0
| +--- com.fasterxml.jackson.core:jackson-databind:2.8.10 (*)
| +--- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.8.10
| | +--- com.fasterxml.jackson.core:jackson-core:2.8.10
| | +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0
| | \--- com.fasterxml.jackson.core:jackson-databind:2.8.10 (*)
| +--- org.codehaus.woodstox:stax2-api:3.1.4
| \--- com.fasterxml.woodstox:woodstox-core:5.0.3
| \--- org.codehaus.woodstox:stax2-api:3.1.4
+--- org.springframework.boot:spring-boot-starter-security: -> 1.5.9.RELEASE
| +--- org.springframework.boot:spring-boot-starter:1.5.9.RELEASE (*)
| +--- org.springframework:spring-aop:4.3.13.RELEASE (*)
| +--- org.springframework.security:spring-security-config:4.2.3.RELEASE
| | +--- org.springframework.security:spring-security-core:4.2.3.RELEASE
| | | +--- aopalliance:aopalliance:1.0
| | | +--- org.springframework:spring-aop:4.3.9.RELEASE -> 4.3.13.RELEASE (*)
| | | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.13.RELEASE (*)
| | | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.13.RELEASE (*)
| | | +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.13.RELEASE
| | | \--- org.springframework:spring-expression:4.3.9.RELEASE -> 4.3.13.RELEASE (*)
| | +--- org.springframework:spring-aop:4.3.9.RELEASE -> 4.3.13.RELEASE (*)
| | +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.13.RELEASE (*)
| | +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.13.RELEASE (*)
| | \--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.13.RELEASE
| \--- org.springframework.security:spring-security-web:4.2.3.RELEASE
| +--- org.springframework.security:spring-security-core:4.2.3.RELEASE (*)
| +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.13.RELEASE (*)
| +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.13.RELEASE (*)
| +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.13.RELEASE
| +--- org.springframework:spring-expression:4.3.9.RELEASE -> 4.3.13.RELEASE (*)
| \--- org.springframework:spring-web:4.3.9.RELEASE -> 4.3.13.RELEASE (*)
+--- org.springframework.ldap:spring-ldap-core: -> 2.3.2.RELEASE
| +--- org.slf4j:slf4j-api:1.7.21 -> 1.7.25
| +--- org.springframework:spring-beans:4.3.4.RELEASE -> 4.3.13.RELEASE (*)
| +--- org.springframework:spring-core:4.3.4.RELEASE -> 4.3.13.RELEASE
| \--- org.springframework:spring-tx:4.3.4.RELEASE -> 4.3.13.RELEASE (*)
+--- org.springframework.security:spring-security-ldap: -> 4.2.3.RELEASE
| +--- org.springframework.ldap:spring-ldap-core:2.2.0.RELEASE -> 2.3.2.RELEASE (*)
| +--- org.springframework.security:spring-security-core:4.2.3.RELEASE (*)
| +--- org.springframework:spring-beans:4.3.9.RELEASE -> 4.3.13.RELEASE (*)
| +--- org.springframework:spring-context:4.3.9.RELEASE -> 4.3.13.RELEASE (*)
| +--- org.springframework:spring-core:4.3.9.RELEASE -> 4.3.13.RELEASE
| \--- org.springframework:spring-tx:4.3.9.RELEASE -> 4.3.13.RELEASE (*)
+--- com.unboundid:unboundid-ldapsdk: -> 3.2.1
+--- org.springframework:spring-tx: -> 4.3.13.RELEASE (*)
+--- org.apache.directory.studio:org.apache.commons.io:2.4
| \--- commons-io:commons-io:2.4
+--- org.springframework.boot:spring-boot-devtools: -> 1.5.9.RELEASE
| +--- org.springframework.boot:spring-boot:1.5.9.RELEASE (*)
| \--- org.springframework.boot:spring-boot-autoconfigure:1.5.9.RELEASE (*)
+--- com.github.ulisesbocchio:jasypt-spring-boot-starter:1.4-java7
| \--- com.github.ulisesbocchio:jasypt-spring-boot:1.4-java7
| \--- org.jasypt:jasypt:1.9.2
+--- javax.servlet:javax.servlet-api: -> 3.1.0
+--- org.aspectj:aspectjweaver: -> 1.8.13
+--- com.fasterxml.jackson.core:jackson-databind: -> 2.8.10 (*)
\--- org.springframework.boot:spring-boot-starter-tomcat: -> 1.5.9.RELEASE (*)
最佳答案
您可以使用gradle依赖项--configuration运行时
来弄清楚如何包含不同的版本。稍后,您可以从不需要的组(或工件)中排除依赖项,并将所需的版本定义为依赖项。
compile('group:artifact:version') {
exclude group: 'org.json', module: 'json'
}
compile("org.json:json:requiredVersion")
关于java - 相同的 build.gradle 文件获取不同版本的依赖项(org.json :json),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49358470/
Xcode 4 中的以下操作有什么作用? 为测试而构建 为运行而构建 为分析而构建 为存档而构建 我不确定何时使用这些(或是否使用其中任何一个)。 最佳答案 Running 用于运行您的应用(在 Ma
工具: Jenkins 版1.470 Maven 2 颠覆 环境 假设我的构建有许多项目 A-D。如图所示,依赖关系图存在。也就是说:B 依赖于 A 中的类,C 依赖于 B 中的类,D 依赖于 A 中
我正在创建一个软件项目,我想使用 autotools 为我生成 makefile 等脚本,我手动创建了 Makefile.am 和 configure.in 文件,我正在使用 autogen.sh 脚
什么yarn build命令做什么? 是 yarn build和 npm build相同?如果不是有什么区别? 最佳答案 yarn build和 npm build默认情况下不是现有的命令。我想你是说
如果我有一个包含许多相互依赖的项目的大型代码库,例如,projects/A、projects/B 和 projects/C ,其中 A 需要 B,B 需要 C,每个项目都有一个Cake 构建脚本,例如
我正在尝试使用 Wix/Detox 来测试我的 react-native 应用程序(iOS 版本)。我已成功遵循 https://github.com/wix/detox/blob/master/do
我们有许多编译 .NET 代码的 Nant 脚本。这些构建需要 5 到 10 分钟才能运行,我想找到一种方法来加速它们。 我们的 Nant 脚本看起来像
你好 当我在 windows 下使用 gnu 构建 ffmpeg-3.4.1 时,谁能帮我解决这个错误: /tmp/9747a756ee05ef34cc3fcf51eabde826/sysroot/u
构建解决方案/项目/程序意味着什么?我想确保我的定义是正确的(所以我在交谈时听起来不像个白痴)。在 IDE 中,您可以(如果我错了,请纠正我)编译源代码/编程代码为计算机可读的机器代码。您可以调试程序
为什么 Eclipse 在构建 Android 项目时会陷入无限循环,用于构建工作区...和(重新)构建工作区...和(重新)构建工作区... 这是一个已知的错误吗? 摆脱这个循环的正确方法是什么?
我的 Angular 项目是 @Angular4.3.3 ng build -prod 构建需要 77 秒 ng build --prod --build-optimizer=true 构建需要 19
所以我刚刚使用命令创建了一个 React Native 项目 react-native init "项目名称" 我进入应用程序级别的 build.gradle 以连接 firebase,但出现错误提示
我想弄清楚 TFS Online 2017 中的两个预定义变量之间是否存在差异:$(Build.Repository.LocalPath)和 $(Build.SourcesDirectory) .我有
编译项目时,当系统用户名匹配时,此脚本应将 Xcode 项目的构建版本递增 1。请记住,这些只是 Target->Build Phases->Run Script in Xcode 中脚本(不是 Ap
是否有一种工具可以在给定 MS Build 项目文件的情况下构建一个视觉对象,显示将在何时以及从哪个导入文件执行哪个目标? 如果给定一个解决方案文件,它会构建项目构建顺序的视觉效果? 最佳答案 是的,
我正在尝试使用 Bazel 进行以下设置。通过调用“bazel build”,Python 脚本应该生成未知数量的具有随机名称的 *.cc 文件,然后将这些文件编译成单个静态库(.a 文件),所有这些
我正在将我的 Cmake 项目迁移到 Bazel。我项目的根目录是 build我用来运行 Cmake 的文件夹。 迁移到 Bazel ,我需要创建一个 BUILD我的项目根目录下的文件。但是,在 ma
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 5 年前。 此帖子已于
当我的Dockerfile如下所示时,它运行良好。 ... RUN pip install git+https://user_name:my_password@github.com/repo_name
当前的自动构建功能集是否可以从存储库中添加新标签并标记生成的图像?还是我需要3party服务将新标签自动推送到Docker Registry? 最佳答案 目前不行。 当前(2014年10月)尚无Doc
我是一名优秀的程序员,十分优秀!