Search Gradle plugins

org.framjet.repo

A Gradle plugin which provides easier access to FramJet Framework repositories without hard coding them

https://framjet.dev

Sources: https://github.com/framjet/java-framjet-gradle-repo-plugin.git

Version 1.1.0 (latest)

Created 04 October 2023.

This Gradle plugin designed to facilitate the seamless setup of repositories, optimized for FramJet projects. It manages interactions, credentials, configurations, and provides flexible publishing options to enhance the user and developer experience.

Using the plugins DSL:

plugins {
  id("org.framjet.repo") version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.framjet.gradle.plugins.repo:framjet-gradle-repo-plugin:1.1.0")
  }
}

apply(plugin = "org.framjet.repo")

Using the plugins DSL:

plugins {
  id "org.framjet.repo" version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.framjet.gradle.plugins.repo:framjet-gradle-repo-plugin:1.1.0"
  }
}

apply plugin: "org.framjet.repo"

Learn how to apply plugins to subprojects