view src/main/groovy/org/ssdt_ohio/gradle/doc/tools/UserDocHelper.groovy @ 35:80e46acfd82a version-0.4.6 tip

Add publishing configuration for publishToMavenLocal task :
author Kyle Miller <kyle.miller@mcoecn.org>
date Tue, 09 Aug 2022 13:05:45 +0100
parents 3741247de37a
children
line wrap: on
line source
/*
 * Copyright (c) 2014.  Ohio Department of Education. - All Rights Reserved.
 * Unauthorized copying of this file, in any medium, is strictly prohibited.
 * Written by State Software Development Team (http://ssdt.oecn.k12.oh.us/)
 */

package org.ssdt_ohio.gradle.doc.tools

import org.codehaus.groovy.groovydoc.GroovyClassDoc

/**
 * Created by smith on 12/31/2014.
 */
class UserDocHelper {


    UserClassDocProxy wrap(GroovyClassDoc classDoc) {
        new UserClassDocProxy().wrap(classDoc)
    }

}