Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hotchemi/deploygate-maven-plugin
DeployGate plugin for maven.
https://github.com/hotchemi/deploygate-maven-plugin
Last synced: 3 months ago
JSON representation
DeployGate plugin for maven.
- Host: GitHub
- URL: https://github.com/hotchemi/deploygate-maven-plugin
- Owner: hotchemi
- License: apache-2.0
- Created: 2014-09-21T10:20:08.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-03T09:48:04.000Z (almost 10 years ago)
- Last Synced: 2024-04-15T00:17:43.412Z (9 months ago)
- Language: Java
- Homepage: http://hotchemi.github.io/deploygate-maven-plugin/
- Size: 191 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
deploygate-maven-plugin
=======================[![Build Status](https://travis-ci.org/hotchemi/deploygate-maven-plugin.svg?branch=master)](https://travis-ci.org/hotchemi/deploygate-maven-plugin)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.hotchemi/deploygate-maven-plugin/badge.svg?style=flat)](https://maven-badges.herokuapp.com/maven-central/com.github.hotchemi/deploygate-maven-plugin)
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-deploygate--maven--plugin-brightgreen.svg?style=flat)](https://android-arsenal.com/details/1/974)This is the DeployGate plugin for maven.
Through this plugin, you can use the deploygate API from maven easily.For issue tracking see the [GitHub issues page](https://github.com/hotchemi/deploygate-maven-plugin/issues).
## Install
Add plugin to your pom.xml.
```xml
com.github.hotchemi
deploygate-maven-plugin
1.0.0```
## Usage
Execute following command to upload to deploygate.
```sh
mvn deploygate:upload
```### Params
Please check [Push API](https://deploygate.com/docs/api) for params information.
- `ownerName` required.
- `token` required.
- `file` required.
- `message` optional.
- `distributionKey` optional.
- `releaseNote` optional.```sh
% mvn deploygate:upload -DownerName="owner name" -Dtoken="token" -Dfile="file.apk" -Dmessage="message" -DdistributionKey="distributinKey" -DreleaseNote="releaseNote"
```or
```xml
com.github,hotchemi
deploygate-maven-plugin
1.0.0
ownerName
token
file.apk
message
distributionKey
releaseNote
```
## Contribute
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request## ChangeLog
- 2014/09/21 1.0.0 release.
## Licence
```
Copyright 2014 Shintaro KatafuchiLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```