项目作者: atomist-attic

项目描述 :
Resolver library used to resolve Rug Operations and Archives
高级语言: Java
项目地址: git://github.com/atomist-attic/rug-resolver.git
创建时间: 2016-11-24T09:59:17Z
项目社区:https://github.com/atomist-attic/rug-resolver

开源协议:GNU General Public License v3.0

下载


Atomist ‘rug-resolver’

Build Status

Resolver library used to resolve Rug Operations and Archives.

Using

Most users will not need to use this project directly, but will use
tools, e.g., rug-cli, that build on this project.

If you wish to develop tools using this project, you will need to add
this project as a dependency and the maven repository where it is
published to your build tool’s configuration. For example, if you use
maven, add the dependency to the <dependencies> section and the
repository to the <repositories> section of your pom.xml:

  1. <?xml version='1.0' encoding='UTF-8'?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
  5. <modelVersion>4.0.0</modelVersion>
  6. ...
  7. <dependencies>
  8. ...
  9. <dependency>
  10. <groupId>com.atomist</groupId>
  11. <artifactId>rug-resolver</artifactId>
  12. <version>0.3.0</version>
  13. <exclusions>
  14. <exclusion>
  15. <groupId>com.atomist</groupId>
  16. <artifactId>rug</artifactId>
  17. </exclusion>
  18. <exclusion>
  19. <groupId>ch.qos.logback</groupId>
  20. <artifactId>logback-classic</artifactId>
  21. </exclusion>
  22. <exclusion>
  23. <groupId>ch.qos.logback</groupId>
  24. <artifactId>logback-access</artifactId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>
  28. ...
  29. </dependencies>
  30. ...
  31. <repositories>
  32. <repository>
  33. <id>public-atomist-release</id>
  34. <name>Atomist Release</name>
  35. <url>https://atomist.jfrog.io/atomist/libs-release</url>
  36. <snapshots>
  37. <enabled>false</enabled>
  38. </snapshots>
  39. </repository>
  40. </repositories>
  41. ...
  42. </project>

Be sure to change the <version> to the one you want to use.

Support

General support questions should be discussed in the #support
channel on our community slack team
at atomist-community.slack.com.

If you find a problem, please create an issue.

Development

You can build, test, and install the project locally with maven.

  1. $ mvn install

To create a new release of the project, simply push a tag of the form
M.N.P where M, N, and P are integers that form the next
appropriate semantic version for release. For example:

  1. $ git tag -a 1.2.3

The Travis CI build (see badge at the top of this page) will
automatically create a GitHub release using the tag name for the
release and the comment provided on the annotated tag as the contents
of the release notes. It will also automatically upload the needed
artifacts.