Project

rvn

0.0
No commit activity in last 3 years
No release in over 3 years
Ruby over the maven command line
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

rvn¶ ↑

Description¶ ↑

rvn is a command line tool that wraps the maven command line to add utilities

So far…

* add colors to the maven command line
* resolve dependencies from maven central repo

Installation¶ ↑

$ gem install rvn

To uninstall

$ gem uninstall rvn

Resolving dependencies from maven central repo¶ ↑

$ rvn search springframework

+-----------------------------------------+
| Available artifacts for springframework |
+-----------------------------------------+
| spring                                  |
| spring-mock                             |
| spring-core                             |
| spring-context                          |
| spring-beans                            |
| spring-web                              |
| spring-webmvc                           |
| spring-orm                              |
| spring-aop                              |
| spring-dao                              |
| spring-full                             |
| spring-remoting                         |
| spring-parent                           |
| spring-hibernate                        |
| spring-jdbc                             |
| spring-support                          |
+-----------------------------------------+

$ rvn search springframework:spring-remoting

+--------------------------------------------------------+
| Available versions for springframework:spring-remoting |
+--------------------------------------------------------+
| 1.2.6                                                  |
| 1.2.5                                                  |
| 1.2.4                                                  |
| 1.2.3                                                  |
| 1.2.2                                                  |
| 1.2.1                                                  |
| 1.2                                                    |
+--------------------------------------------------------+

$ rvn search springframework:spring-remoting:1.2.6

<dependency>
    <groupId>springframework</groupId>
    <artifactId>spring-remoting</artifactId>
    <version>1.2.6</version>
</dependency>