https://github.com/mendhak/gsf-archive
Bintray mirror for https://bintray.com/mendhak/maven/gpslogger-support-files
https://github.com/mendhak/gsf-archive
Last synced: 7 months ago
JSON representation
Bintray mirror for https://bintray.com/mendhak/maven/gpslogger-support-files
- Host: GitHub
- URL: https://github.com/mendhak/gsf-archive
- Owner: mendhak
- Created: 2015-04-26T17:19:21.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-07-04T22:37:36.000Z (over 10 years ago)
- Last Synced: 2025-04-06T00:27:39.536Z (9 months ago)
- Size: 4.1 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Prerequisites
Install Maven
sudo apt-get install maven2
## Add to local Maven repo
Go to your new file and add it in:
mvn install:install-file -Dfile=windows-live-sdk.aar -DgroupId=com.mendhak.gpsloggersupport -DartifactId=windows-live-sdk -Dversion=0.0.1 -Dpackaging=aar -DlocalRepositoryPath=/home/mendhak/Code/gpslogger-support-files
Make sure the folder was added under `com/mendhak/gpsloggersupport`
## Run Nexus indexer
REPODIR=/home/mendhak/Code/gpslogger-support-files
java -jar nexus-indexer-3.0.4-cli.jar -r $REPODIR -i $REPODIR/.index -d $REPODIR/.index -n localrepo
Look at the `.index` directory.
## Prepare zip for upload
zip -r repository0.0.1.zip .index com
Inspect the zip to make sure it just has `com` and `.index`
## Replace files on Bintray
Go to the [version page](https://bintray.com/mendhak/maven/gpslogger-support-files/0.0.1).
Upload repository0.0.1.zip and choose to 'Explode this archive'. Publish.
## Use in Gradle project
Add to `build.gradle`:
maven {
url "https://dl.bintray.com/mendhak/maven"
}
You can then add packages like:
compile 'com.mendhak.gpsloggersupport:mail:0.0.1'
compile 'com.mendhak.gpsloggersupport:dropbox-android-sdk:1.6.3'
compile 'com.mendhak.gpsloggersupport:windows-live-sdk:0.0.1'