All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openbakery.oclint.OCLintPluginExtension.groovy Maven / Gradle / Ivy

Go to download

XCode-Plugin is a plugin to allow custom XCode projects to build as generated by CMake

There is a newer version: 0.0.201
Show newest version
package org.openbakery.oclint

import org.gradle.api.Project

class OCLintPluginExtension {

	def String reportType = "html"

	def rules = []
	def disableRules = []
	def excludes = []

	def maxPriority1 = 0
	def maxPriority2 = 10
	def maxPriority3 = 20


	private final Project project

	public OCLintPluginExtension(Project project) {
		this.project = project
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy