An open API service indexing awesome lists of open source software.

https://github.com/multi-os-engine/moe-bindings

Multi-OS Engine: Bindings for 3rd party libraries
https://github.com/multi-os-engine/moe-bindings

Last synced: about 1 year ago
JSON representation

Multi-OS Engine: Bindings for 3rd party libraries

Awesome Lists containing this project

README

          

# MOE Bindings

## Table of Contents

* [Configuration](#configuration)
* [Xcode Project](#xcode-project)
* [Publish](#publish)

## Configuration

### Xcode Project

Xcode project can be configured as follows:

```bash
cd //xcode
pod install
```

## Publish

Build and publish _release_ version to Maven local repository:

```bash
cd
./gradlew ::publishMavenJavaPublicationToMavenLocal
```

Build and publish _snapshot_ version to Maven local repository:

```bash
cd
./gradlew ::publishMavenJavaSnapshotPublicationToMavenLocal
```

Build and publish _release_ version to Bintray:

```bash
cd
./gradlew ::bintrayUpload \
-Pbintray.user=user \
-Pbintray.key=key
```

Build and publish _snapshot_ version to Artifactory:

```bash
cd
./gradlew ::artifactoryPublish \
-Partifactory.url=url \
-Partifactory.key=key \
-Partifactory.user=user \
-Partifactory.pass=pass
```