Questions tagged «ivy»

5
Gradle-获取依赖项的最新发行版
告诉Gradle以下内容的最简单方法是: 检索“ junit”依赖项并获取其最新的“发行版”版本。 管理Maven和Ivy存储库对我来说是新的。我尝试了以下步骤,但它们导致Could not resolve dependency ...错误: compile "junit:junit:latest.release"使用仅设置为(但是,如果我说“ junit:junit:4.10”)的存储库写mavenCentral() 。 compile "junit:junit:latest.release"使用存储库设置以下列方式写入: ivy { // I also tried 'http://maven.org' and other possible variants. url "http://repo1.maven.org" layout "maven" } 尝试使用Spring Source Ivy存储库: ivy { artifactPattern "http://repository.springsource.com/ivy/libraries/release/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" ivyPattern "http://repository.springsource.com/ivy/libraries/release/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" } 也许我误会了一些东西。为什么要获得最新版本的依赖项是一项艰巨的任务?


6
如何获取sbt以使用本地Maven代理存储库(Nexus)?
我有一个sbt(Scala)项目,当前该项目从网络上提取工件。我们希望转向可缓存工件的公司标准化Nexus存储库。从Nexus文档中,我了解了如何对Maven项目执行此操作。但是sbt显然使用了不同的方法。(我了解常春藤以某种方式参与其中,但我从未使用过它,也不了解它是如何工作的。) 如何告诉sbt和/或底层Ivy对所有依赖项使用公司Nexus存储库系统?我想答案是使用某种项目级别的配置文件,以便源存储库的新克隆将自动使用代理。(即,在点目录中处理每个用户的配置文件是不可行的。) 谢谢!
73 scala  maven  ivy  nexus  sbt 

4
有人可以解释ivy.xml依赖项的conf属性吗?
我找不到有关Ivy依赖项标签的conf属性的详细解释: <dependency org="hibernate" name="hibernate" rev="3.1.3" conf="runtime, standalone -> runtime(*)"/> 看到那个conf属性吗?我找不到关于该->符号右侧的任何解释(我能理解)。请记住,我不了解有关Maven的第一件事,因此请考虑一下此属性。 是的,我已经看过了:http : //ant.apache.org/ivy/history/latest-milestone/ivyfile/dependency.html 谢谢, 丹
68 java  apache  ant  ivy 

1
Angular 9 Ivy-通用类型'ɵɵFactoryDe​​f'需要2个类型参数
看起来Angular Ivy尚未准备好。我正在尝试使用ivular构建我的项目,这是Angular 9的主要思想。许多库与此功能不兼容,其中一个库是@angular/flex-layout。材料和服务工人也有同样的问题。 使用ng build --prod --aot -c=production脚本构建项目后,我得到了: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ node_modules/@angular/flex-layout/core/typings/media-trigger/media-trigger.d.ts:71:18 - error TS2314: Generic type 'ɵɵFactoryDef' requires 2 type argument(s). 71 static ɵfac: ɵngcc0.ɵɵFactoryDef<MediaTrigger>; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ node_modules/@angular/flex-layout/extended/typings/show-hide/show-hide.d.ts:18:18 - error TS2314: Generic type 'ɵɵFactoryDef' requires 2 type argument(s). 18 static ɵfac: ɵngcc0.ɵɵFactoryDef<ShowHideStyleBuilder>; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ node_modules/@angular/flex-layout/extended/typings/show-hide/show-hide.d.ts:49:18 - error TS2314: Generic type 'ɵɵFactoryDef' requires 2 …
17 angular  ivy  angular9 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.