ivy

Grails: working offline with snapshot dependencies

混江龙づ霸主 提交于 2019-12-02 08:56:41
问题 I am using some plugins which depend on snapshot versions of other plugins. As I understand, Ivy tries to fetch the newest version of these plugins every time you start grails. If Ivy does not succeed, grails will not start :-( As I like to develop offline, I am now looking for a way which lets me avoid this behaviour... 回答1: You could pull them down and store them on your machine using a local repository and comment out any remote repositories. Here is some documentation. Scroll down to

Playframework [1.2.7] dependencies failing

眉间皱痕 提交于 2019-12-02 08:03:41
We're experiencing a problem with play frameworks dependency management which was working fine a couple of days ago. We haven't made any configuration changes or changes to the dependency file but are getting the following errors on both our build server and locally (both located on different networks and ISP's). :: problems summary :: :::: WARNINGS module not found: vsvr1#minifymod;1.0.9 ==== vsvr1: tried -- artifact vsvr1#minifymod;1.0.9!minifymod.jar: https://github.com/maklemenz/minifymod/raw/master/dist/minifymod-1.0.9.zip [NOT FOUND ] play#recaptcha;1.3!recaptcha.zip(jar) (139ms) ====

Ivy: Using dynamic revisions

ε祈祈猫儿з 提交于 2019-12-02 07:44:46
I'm having problems understanding how I to use dynamic revisions of Ivy effectively in my Java projects. Currently, I have the following layout: lib-a revision: 1.0.0 status: release dependencies: none lib-b revision: 2.0.0 status: release dependencies: lib-a, rev 1.0.0 project-a revision: 3.0.0 status: release dependencies: lib-b, rev 2.0.0 project-b revision: 4.0.0 status: release dependencies: lib-b, rev 2.0.0 That means I always keep the status to release and use explicit version numbers. If I would change lib-a during development, say lib-a , this is quite painful. I save the changes in

How does one consolidate version management in Ivy, like parent-pom <dependencyManagement> in Maven?

房东的猫 提交于 2019-12-02 07:21:46
We have many projects that need to use common version numbers. What is best practice for doing this with Ant/Ivy? Do you just inherit a wad of properties from Ant that have the version numbers in them, or is there a more formal mechanism a la Maven? As you've pointed out I think this is the problem which the new extends functionality has been designed to solve. To be completely honest I'm not a fan of parent-child modules in Maven.... However, just like you sometimes I want to nail lots of my modules to a common version of Spring. The solution I used was to have a set of properties defined in

Integrate ivy and doxygen

牧云@^-^@ 提交于 2019-12-02 07:20:33
问题 Is there a way to integrate ivy and doxygen? I want to publish my doxygen docs through ivy is that possible? And if so how? Is there documentation for how to? 回答1: I'm not a doxygen user. I'm assuming that you're using it to create a zip archive of documents? Ivy can be used to publish any type of file. The following tutorial gives an example of how to publish text files to a local repository. To alternatively publish to a remote repository is only a matter of switching resolvers In previous

Ivy can not resolve the scope of a dependency which is a dependency of a transitive dependency

穿精又带淫゛_ 提交于 2019-12-02 07:01:42
I add a dependency(let's name it as A) to ivy.xml which has a pom file in maven central. Ivy uses ibiblio for resolving the maven dependencies. The dependency(A) which is added to ivy.xml has a transitive dependency(B). So far so good till here. The dependency(C) of transitive dependency(B) can not be resolved by ivy. I defined A in ivy.xml like this: <dependency org="Z" name="A" rev="0.6-SNAPSHOT" conf="*->default"/> In pom file of B, C is defined both in compile and test scopes like below: <dependency> <groupId>X</groupId> <artifactId>C</artifactId> </dependency> <dependency> <groupId>X<

IVY Build, how do I use an extlib directory in the project?

一世执手 提交于 2019-12-02 07:01:21
问题 There are several jar files, which are from a COTS product that we keep in our project's "extlib" folder at the root of the project. I want to have these included in ivy, but not put in the repository, just read from the project/extlib folder. Is this possible or do I need to add them to the artifactory? 回答1: Create an ivy settings file with the following content: <ivysettings> <settings defaultResolver='artifactory' /> <resolvers> <ibiblio name='artifactory' m2compatible='true' root="http:/

IVY Build, how do I use an extlib directory in the project?

南笙酒味 提交于 2019-12-02 05:22:18
There are several jar files, which are from a COTS product that we keep in our project's "extlib" folder at the root of the project. I want to have these included in ivy, but not put in the repository, just read from the project/extlib folder. Is this possible or do I need to add them to the artifactory? Create an ivy settings file with the following content: <ivysettings> <settings defaultResolver='artifactory' /> <resolvers> <ibiblio name='artifactory' m2compatible='true' root="http://my.artifactory.server"/> <filesystem name='local'> <artifact pattern='${ivy.settings.dir}/extlib/[artifact]'

Integrate ivy and doxygen

那年仲夏 提交于 2019-12-02 05:09:20
Is there a way to integrate ivy and doxygen? I want to publish my doxygen docs through ivy is that possible? And if so how? Is there documentation for how to? Mark O'Connor I'm not a doxygen user. I'm assuming that you're using it to create a zip archive of documents? Ivy can be used to publish any type of file. The following tutorial gives an example of how to publish text files to a local repository. To alternatively publish to a remote repository is only a matter of switching resolvers In previous company, we converted our existing FTP site into an ivy repository by including an ivy.xml

Using Apache Ivy with netbeans

℡╲_俬逩灬. 提交于 2019-12-02 04:30:08
I have an existing project that is developed using netbeans, and I would like to integrate Apache Ivy in the project. I updated the build.xml generated by netbeans to download ivy (if necesarry) and use it to retrieve the dependencies. Does anyone know how I can add the downloaded dependencies to the build path of the project, such that it will compile okay and also so that it doesn't show missing libraries errors in the interface. I would prefer to do this without using a netbeans plugin if this is possible. If not, what plugin would you recommend using. EDIT: Also I am doint this in the "