Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for failOnError (0.37 sec)

  1. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/BasicZincScalaCompilerIntegrationTest.groovy

        }
    
        def "compile bad scala code do not fail the build when options.failOnError is false"() {
            given:
            badCode()
    
            and:
            buildFile << "compileScala.options.failOnError = false\n"
    
            expect:
            succeeds 'compileScala'
        }
    
        def "compile bad scala code do not fail the build when scalaCompileOptions.failOnError is false"() {
            given:
            badCode()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

         */
        @Input
        public boolean isFailOnError() {
            return failOnError;
        }
    
        /**
         * Sets whether to fail the build when compilation fails. Defaults to {@code true}.
         */
        public void setFailOnError(boolean failOnError) {
            this.failOnError = failOnError;
        }
    
        /**
         * Tells whether to produce verbose output. Defaults to {@code false}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. pom.xml

    				<executions>
    					<execution>
    						<id>check-compatibility</id>
    						<goals>
    							<goal>check</goal>
    						</goals>
    					</execution>
    				</executions>
    				<configuration>
    					<failOnError>false</failOnError>
    					<ignored>
    						<difference>
    							<!-- seems to be a clirr bug that it cannot handle the different inherited 
    								return types -->
    							<className>**</className>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 26 04:00:03 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                                "methodName": "getFailOnError",
                                "methodDescriptor": "()Lorg/gradle/api/provider/Property;",
                                "propertyName": "failOnError",
                                "replacedAccessors": [{
                                    "binaryCompatibility": "ACCESSORS_REMOVED",
                                    "descriptor": "()Z",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  5. guava-gwt/pom.xml

                <goals>
                  <goal>compile</goal>
                </goals>
                <configuration>
                  <module>com.google.common.ForceGuavaCompilation</module>
                  <failOnError>true</failOnError>
                  <logLevel>${gwt.logLevel}</logLevel>
                  <generateJsInteropExports>true</generateJsInteropExports>
                  <validateOnly>true</validateOnly>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

            javaClassFile("").assertHasDescendants()
        }
    
        def "can compile bad code without failing"() {
            given:
            badCode()
    
            and:
            buildFile << "compileJava.options.failOnError = false"
    
            when:
            succeeds("compileJava")
    
            then:
            output.contains(logStatement())
            result.assertHasErrorOutput("';' expected")
            javaClassFile("").assertHasDescendants()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top