Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .sdkmanrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
java=17.0.18-librca
gradle=8.14.4
groovy=4.0.30
gradle=8.14.5
groovy=4.0.32
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
Taggable Grails Plugin
======================

The [Taggable plugin](https://plugins.grails.org/plugin/grails/taggable) that adds a generic mechanism for tagging data.
[![Maven Central](https://img.shields.io/maven-central/v/io.github.gpc/taggable)](https://central.sonatype.com/artifact/io.github.gpc/taggable)
[![CI](https://github.com/gpc/taggable/actions/workflows/ci.yml/badge.svg?event=push)](https://github.com/gpc/taggable/actions/workflows/ci.yml)

The Taggable plugin that adds a generic mechanism for tagging data.

Taggable Plugin
---------------
This plugin provides an alternative to the Acts as Taggable hosted at grails.org and with the following features.

Classes can be made taggable by implementing the [grails.plugins.taggable.Taggable](/src/main/groovy/grails/plugins/taggable/Taggable.groovy) interface
Classes can be made taggable by implementing the [grails.plugins.taggable.Taggable](https://github.com/gpc/taggable/blob/7.0.x/plugin/src/main/groovy/grails/plugins/taggable/Taggable.groovy) interface
* Method chaining can be used to add tags
* The table name the domain classes use is customizable
* Utilizes extensive caching to improve performance
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
projectVersion=7.0.1-SNAPSHOT
grailsVersion=7.0.10
grailsVersion=7.1.2
githubUser=gpc
githubProject=taggable
# Comma-separated list of projects to publish
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.5-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Loading