We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The plugin is almost ready for its maiden release. Some things to consider first:
The text was updated successfully, but these errors were encountered:
while this isnt published to the gradle repo, something similar can be achieved by using gradles plugin management functionality
pluginManagement { repositories { mavenCentral() gradlePluginPortal() maven(url = "https://jitpack.io/") { content { includeGroupByRegex("(com|io)\\.github\\..+") } } } resolutionStrategy { eachPlugin { when (requested.id.id) { "ch.fhnw.thga.frege" -> useModule("com.github.tricktron:frege-gradle-plugin:${requested.version}") } } } }
Sorry, something went wrong.
@romangraef Nice alternative solution, thanks.
No branches or pull requests
The plugin is almost ready for its maiden release. Some things to consider first:
The text was updated successfully, but these errors were encountered: