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

https://github.com/ractive/lametric-frames


https://github.com/ractive/lametric-frames

Last synced: 3 months ago
JSON representation

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'
}
```