Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for AntlrPlugin (0.25 sec)

  1. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrPlugin.java

     */
    @SuppressWarnings("JavadocReference")
    public abstract class AntlrPlugin implements Plugin<Project> {
        public static final String ANTLR_CONFIGURATION_NAME = "antlr";
        private final ObjectFactory objectFactory;
    
        @Inject
        public AntlrPlugin(ObjectFactory objectFactory) {
            this.objectFactory = objectFactory;
        }
    
        @SuppressWarnings("deprecation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. platforms/software/antlr/src/test/groovy/org/gradle/api/plugins/antlr/AntlrPluginTest.groovy

    import static org.gradle.api.reflect.TypeOf.typeOf
    
    class AntlrPluginTest extends AbstractProjectBuilderSpec {
    
        def addsAntlrPropertiesToEachSourceSet() {
            when:
            project.pluginManager.apply(AntlrPlugin)
    
            then:
            def main = project.sourceSets.main
            main.antlr.srcDirs == [project.file('src/main/antlr')] as Set
    
            def test = project.sourceSets.test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/software/antlr/src/main/resources/META-INF/gradle-plugins/org.gradle.antlr.properties

    implementation-class=org.gradle.api.plugins.antlr.AntlrPlugin...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 62 bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/configuration-factory-methods.txt

    Method <org.gradle.api.plugins.antlr.AntlrPlugin.apply(org.gradle.api.Project)> calls method <org.gradle.api.internal.artifacts.configurations.RoleBasedConfigurationContainerInternal.resolvableDependencyScopeUnlocked(java.lang.String)> in (AntlrPlugin.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ==== Deprecated for consumption configurations are now non-consumable
    
    The following configurations were never meant to be consumed:
    
     - The `antlr` configuration created by the `AntlrPlugin`
     - The `zinc` configuration created by the `ScalaBasePlugin`
     - The `providedCompile` and `providedRuntime` configurations created by the `WarPlugin`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top