code-intelligence.com/cifuzz@v0.40.0/examples/gradle/build.gradle (about)

     1  /*
     2   * This file was generated by the Gradle 'init' task.
     3   *
     4   * This generated file contains a sample Java application project to get you started.
     5   * For more details take a look at the 'Building Java & JVM projects' chapter in the Gradle
     6   * User Manual available at https://docs.gradle.org/7.5.1/userguide/building_java_projects.html
     7   */
     8  
     9  plugins {
    10      // Apply the application plugin to add support for building a CLI application in Java.
    11      id 'application'
    12      id "com.code-intelligence.cifuzz" version "1.3.0"
    13  }
    14  
    15  repositories {
    16      // Use Maven Central for resolving dependencies.
    17      mavenCentral()
    18  }
    19  
    20  application {
    21      // Define the main class for the application.
    22      mainClass = 'com.example.App'
    23  }