Metadata-Version: 2.0
Name: marun
Version: 0.0.1.dev3
Summary: get an artifact and dependencies (java jar files) from maven repositories, like pip in python.
Home-page: https://github.com/nishemon/marun
Author: S.Takai
Author-email: shtk@cccis.jp
License: MIT
Keywords: java,maven,deploy,ivy,repository,package,artifact,run
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Java
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=2.7, <3
Requires-Dist: pyyaml

# marun - Maven Artifact Runner
* get jar files and their dependencies from maven repositories
* run easily

Marun is a support tool install and run java programs from maven repositories.
It has no capability to compile, archive and do other build commands unlike Apache Maven or Gradle, but it can read pom.xml and resolve dependencies using Apache Ivy.

## usage
1. install marun
```
> pip install marun
```

2. install a jar (gradle short format)
```
> marun install org.apache.commons:commons-compress:+
```

3. run
```
> marun run org.apache.commons.compress.archivers.sevenz.CLI
```

## configuration
It is expected that you have some private maven repository.
Use Amazon S3(e.g. [aws-maven](https://github.com/spring-projects/aws-maven)), [Nexus](http://www.sonatype.org/nexus/), [Artifactory](https://www.jfrog.com/artifactory/) or a http server.

```
#/etc/marun.conf
...
repositories=yours,jcenter

[repository:yours]
...
```

## requirements
* Java8
* Python 2.7

## limitation
This is WIP.



