Search Gradle plugins

com.github.saurabh73.competitive-programming

This plugin aims to help in the competitive programming challenges by allowing you to develop in several files with a one click build, and sharing a common set of codes between challenges. Don't reinvent the wheel, focus on the subject! Supports Problem parsing and Junit based test case matching for better testing and debugging.

https://github.com/saurabh73/competitive-programming

Sources: https://github.com/saurabh73/competitive-programming

Version 2.0.0 (latest)

Created 12 November 2021.

This plugin aims to help in the competitive programming challenges by allowing you to develop in several files with a one click build, and sharing a common set of codes between challenges. Don't reinvent the wheel, focus on the subject! Supports Problem parsing and Junit based test case matching for better testing and debugging.

Using the plugins DSL:

plugins {
  id("com.github.saurabh73.competitive-programming") version "2.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.saurabh73:competitive-programming:2.0.0")
  }
}

apply(plugin = "com.github.saurabh73.competitive-programming")

Using the plugins DSL:

plugins {
  id "com.github.saurabh73.competitive-programming" version "2.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.saurabh73:competitive-programming:2.0.0"
  }
}

apply plugin: "com.github.saurabh73.competitive-programming"

Learn how to apply plugins to subprojects