basant307/AI_Governance_Project
048
1/*2Language: Gradle3Description: Gradle is an open-source build automation tool focused on flexibility and performance.4Website: https://gradle.org5Author: Damian Mee <mee.damian@gmail.com>6Category: build-system7*/8 9function gradle(hljs) {10 const KEYWORDS = [11 "task",12 "project",13 "allprojects",14 "subprojects",15 "artifacts",16 "buildscript",17 "configurations",18 "dependencies",19 "repositories",20 "sourceSets",21 "description",22 "delete",23 "from",24 "into",25 "include",26 "exclude",27 "source",28 "classpath",29 "destinationDir",30 "includes",31 "options",32 "sourceCompatibility",33 "targetCompatibility",34 "group",35 "flatDir",36 "doLast",37 "doFirst",38 "flatten",39 "todir",40 "fromdir",41 "ant",42 "def",43 "abstract",44 "break",45 "case",46 "catch",47 "continue",48 "default",49 "do",50 "else",51 "extends",52 "final",53 "finally",54 "for",55 "if",56 "implements",57 "instanceof",58 "native",59 "new",60 "private",61 "protected",62 "public",63 "return",64 "static",65 "switch",66 "synchronized",67 "throw",68 "throws",69 "transient",70 "try",71 "volatile",72 "while",73 "strictfp",74 "package",75 "import",76 "false",77 "null",78 "super",79 "this",80 "true",81 "antlrtask",82 "checkstyle",83 "codenarc",84 "copy",85 "boolean",86 "byte",87 "char",88 "class",89 "double",90 "float",91 "int",92 "interface",93 "long",94 "short",95 "void",96 "compile",97 "runTime",98 "file",99 "fileTree",100 "abs",101 "any",102 "append",103 "asList",104 "asWritable",105 "call",106 "collect",107 "compareTo",108 "count",109 "div",110 "dump",111 "each",112 "eachByte",113 "eachFile",114 "eachLine",115 "every",116 "find",117 "findAll",118 "flatten",119 "getAt",120 "getErr",121 "getIn",122 "getOut",123 "getText",124 "grep",125 "immutable",126 "inject",127 "inspect",128 "intersect",129 "invokeMethods",130 "isCase",131 "join",132 "leftShift",133 "minus",134 "multiply",135 "newInputStream",136 "newOutputStream",137 "newPrintWriter",138 "newReader",139 "newWriter",140 "next",141 "plus",142 "pop",143 "power",144 "previous",145 "print",146 "println",147 "push",148 "putAt",149 "read",150 "readBytes",151 "readLines",152 "reverse",153 "reverseEach",154 "round",155 "size",156 "sort",157 "splitEachLine",158 "step",159 "subMap",160 "times",161 "toInteger",162 "toList",163 "tokenize",164 "upto",165 "waitForOrKill",166 "withPrintWriter",167 "withReader",168 "withStream",169 "withWriter",170 "withWriterAppend",171 "write",172 "writeLine"173 ];174 return {175 name: 'Gradle',176 case_insensitive: true,177 keywords: KEYWORDS,178 contains: [179 hljs.C_LINE_COMMENT_MODE,180 hljs.C_BLOCK_COMMENT_MODE,181 hljs.APOS_STRING_MODE,182 hljs.QUOTE_STRING_MODE,183 hljs.NUMBER_MODE,184 hljs.REGEXP_MODE185 186 ]187 };188}189 190export { gradle as default };191 