Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for XmlSlurper (0.13 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/JUnitXmlTestExecutionResult.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.integtests.fixtures
    
    import groovy.xml.XmlParser
    import groovy.xml.XmlSlurper
    import org.gradle.test.fixtures.file.TestFile
    
    import static org.hamcrest.CoreMatchers.*
    import static org.hamcrest.core.StringStartsWith.startsWith
    import static org.hamcrest.MatcherAssert.assertThat
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/maven/MavenLocalModuleTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.maven
    
    import groovy.xml.XmlSlurper
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import org.junit.Rule
    import spock.lang.Specification
    
    class MavenLocalModuleTest extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/maven/MavenFileModuleTest.groovy

            publishedFiles.find { it.name == 'maven-metadata.xml' }.exists()
            new XmlSlurper().parseText(publishedFiles.find { it.name == 'maven-metadata.xml' }.text).versioning.snapshot.timestamp.text() == '20100101.120001'
            new XmlSlurper().parseText(publishedFiles.find { it.name == 'maven-metadata.xml' }.text).versioning.snapshot.buildNumber.text() == '1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestNGExecutionResult.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures
    
    import groovy.xml.XmlSlurper
    import groovy.xml.slurpersupport.GPathResult
    import org.gradle.test.fixtures.file.TestFile
    import org.hamcrest.Matcher
    
    import static org.hamcrest.CoreMatchers.hasItems
    import static org.hamcrest.CoreMatchers.not
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/JUnitTestClassExecutionResult.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures
    
    import groovy.xml.XmlSlurper
    import groovy.xml.slurpersupport.GPathResult
    import groovy.xml.slurpersupport.NodeChild
    import org.hamcrest.CoreMatchers
    import org.hamcrest.Matcher
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GradleVersionsPluginSmokeTest.groovy

        def 'can check for updated versions'() {
            Assume.assumeTrue('Incompatible with Groovy 4: Execution failed for task \':dependencyUpdates\'. > groovy/util/XmlSlurper', VersionNumber.parse(GroovySystem.version).major < 4) // TODO Watch for merge and release of https://github.com/ben-manes/gradle-versions-plugin/pull/656
            given:
            buildFile << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreatorTest.groovy

            def noRelocationClassNames = ['org/gradle/MyClass',
                                          'java/lang/String',
                                          'javax/inject/Inject',
                                          'groovy/util/XmlSlurper',
                                          'groovyjarjarantlr/TokenStream',
                                          'net/rubygrapefruit/platform/FileInfo',
                                          'org/codehaus/groovy/ant/Groovyc',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top