Advertisement
Guest User

Gradle/Ivy

a guest
Nov 5th, 2014
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.70 KB | None | 0 0
  1. > Could not resolve commons-codec:commons-codec:1.8.
  2. Required by:
  3. com.brightcove.roebuck:roebuck-rest-server:1.0-SNAPSHOT > org.apache.httpcomponents:httpclient:4.2.5
  4. > Could not parse Ivy file file:/Users/ahepburn/.gradle/caches/modules-2/metadata-2.13/descriptors/commons-codec/commons-codec/1.8/4471c3b2f5ea2d40ffaa8b3948cdbacd/ivy.xml
  5. > key can't be empty
  6. > Could not parse Ivy file file:/Users/ahepburn/.gradle/caches/modules-2/metadata-2.13/descriptors/commons-codec/commons-codec/1.8/daf17559c12241dfa14faa8ec744533e/ivy.xml
  7. > key can't be empty
  8. > Could not parse Ivy file file:/Users/ahepburn/.gradle/caches/modules-2/metadata-2.13/descriptors/commons-codec/commons-codec/1.8/4471c3b2f5ea2d40ffaa8b3948cdbacd/ivy.xml
  9. > key can't be empty
  10. > Could not parse Ivy file file:/Users/ahepburn/.gradle/caches/modules-2/metadata-2.13/descriptors/commons-codec/commons-codec/1.8/daf17559c12241dfa14faa8ec744533e/ivy.xml
  11. > key can't be empty
  12.  
  13. a sample .ivy file form the above is:
  14.  
  15. cat /Users/ahepburn/.gradle/caches/modules-2/metadata-2.13/descriptors/commons-codec/commons-codec/1.8/4471c3b2f5ea2d40ffaa8b3948cdbacd/ivy.xml
  16.  
  17. <?xml version="1.0" encoding="UTF-8"?>
  18. <ivy-module version="2.0" xmlns:m="http://ant.apache.org/ivy/maven">
  19. <info organisation="commons-codec" module="commons-codec" revision="1.8" status="release" publication="20141105080718">
  20. <description homepage="http://commons.apache.org/proper/commons-codec/">The codec package contains simple encoder and decoders for
  21. various formats such as Base64 and Hexadecimal. In addition to these
  22. widely used encoders and decoders, the codec package also maintains a
  23. collection of phonetic encoding utilities.</description>
  24. </info>
  25. <configurations>
  26. <conf name="default" visibility="public" description="runtime dependencies and master artifact can be used with this conf" extends="runtime,master"/>
  27. <conf name="master" visibility="public" description="contains only the artifact published by this module itself, with no transitive dependencies"/>
  28. <conf name="compile" visibility="public" description="this is the default scope, used if none is specified. Compile dependencies are available in all classpaths."/>
  29. <conf name="provided" visibility="public" description="this is much like compile, but indicates you expect the JDK or a container to provide it. It is only available on the compilation classpath, and is not transitive."/>
  30. <conf name="runtime" visibility="public" description="this scope indicates that the dependency is not required for compilation, but is for execution. It is in the runtime and test classpaths, but not the compile classpath." extends="compile"/>
  31. <conf name="test" visibility="private" description="this scope indicates that the dependency is not required for normal use of the application, and is only available for the test compilation and execution phases." extends="runtime"/>
  32. <conf name="system" visibility="public" description="this scope is similar to provided except that you have to provide the JAR which contains it explicitly. The artifact is always available and is not looked up in a repository."/>
  33. <conf name="sources" visibility="public" description="this configuration contains the source artifact of this module, if any."/>
  34. <conf name="javadoc" visibility="public" description="this configuration contains the javadoc artifact of this module, if any."/>
  35. <conf name="optional" visibility="public" description="contains all optional dependencies"/>
  36. </configurations>
  37. <publications/>
  38. <dependencies>
  39. <dependency org="junit" name="junit" rev="4.11" force="true" conf="test-&gt;runtime(*),master(*)"/>
  40. </dependencies>
  41. </ivy-module>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement