https://github.com/mendhak/gpslogger-support-files
https://github.com/mendhak/gpslogger-support-files
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mendhak/gpslogger-support-files
- Owner: mendhak
- Created: 2016-01-30T11:47:07.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-30T12:50:43.000Z (over 10 years ago)
- Last Synced: 2025-08-25T08:13:43.540Z (10 months ago)
- Language: Shell
- Size: 2.98 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Third party JARs for GPSLogger for Android project
Several JARs used by GPSLogger for Android don't have a maven repo anywhere. Github can allow a repository to act as a maven repo.
### Add JARs
Put the jar in the `jars` directory.
Add a corresponding line to the `mvncommands.sh`, such as
mvn install:install-file -DgroupId=com.mendhak.gpsloggersupportfiles -DartifactId=owncloud-android-library -Dversion=0.0.3 -Dfile=jars/owncloud-android-library.aar -Dpackaging=aar -DgeneratePom=true -DlocalRepositoryPath=./repository -DcreateChecksum=true
Run `./mvncommands.sh` and it will populate the `repository` directory.
It will also run the Nexus Indexer jar to produce an `.index` directory in the `repository` directory.
Push to github.
### Use JARs
When referencing from a Gradle project, Use
maven {
url "https://raw.github.com/mendhak/gpslogger-support-files/master/repository"
}
Then when you call
compile 'com.mendhak.gpsloggersupportfiles:dropbox-android-sdk:1.6.3'
It will find it in the repo and use it.