https://github.com/ractive/lametric-frames
https://github.com/ractive/lametric-frames
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ractive/lametric-frames
- Owner: ractive
- Created: 2019-03-31T15:59:58.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2026-03-07T21:59:26.000Z (3 months ago)
- Last Synced: 2026-03-08T03:11:22.191Z (3 months ago)
- Language: Java
- Size: 53.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# lametric-frames
Java library for building LaMetric app frames.
Published to Google Artifact Registry: `europe-west1-maven.pkg.dev/lametric-playground/maven-libs`
## Publishing a new version
1. Update the version in `build.gradle`:
```groovy
version = '1.x'
```
2. Run the publish task (requires Corretto 8 JDK for javadoc generation):
```bash
JAVA_HOME=/Users/james/Library/Java/JavaVirtualMachines/corretto-1.8.0_482/Contents/Home ./gradlew publish
```
You need to be authenticated with GCP before publishing:
```bash
gcloud auth application-default login
```
## Using in another project
Add the Artifact Registry plugin and repository to your `build.gradle`:
```groovy
plugins {
id 'com.google.cloud.artifactregistry.gradle-plugin' version '2.2.2'
}
repositories {
maven {
url 'artifactregistry://europe-west1-maven.pkg.dev/lametric-playground/maven-libs'
}
}
dependencies {
implementation 'ch.ractive:lametric-frames:1.1'
}
```