Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LockfileFixture (0.12 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/AbstractLockingIntegrationTest.groovy

    }
    """
    
    
            lockfileFixture.createLockfile('lockedConf', ["org:foo:1.0"], false)
            lockfileFixture.createLockfile('otherLockedConf', ["org:foo:1.1"], false)
    
            when:
            succeeds 'dependencies', '--write-locks'
    
            then:
            lockfileFixture.verifyLockfile([lockedConf: ['org:foo:1.1'], otherLockedConf: ['org:foo:2.0']])
            lockfileFixture.assertLegacyLockfileMissing('lockedConf')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/LockingInteractionsIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractHttpDependencyResolutionTest
    
    class LockingInteractionsIntegrationTest extends AbstractHttpDependencyResolutionTest {
    
        def lockfileFixture = new LockfileFixture(testDirectory: testDirectory)
    
        def setup() {
            settingsFile << "rootProject.name = 'locking-interactions'"
        }
    
        def 'locking constraints do not bring back excluded modules'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/UsingLockingOnNonProjectConfigurationsIntegrationTest.groovy

    import org.junit.Rule
    
    class UsingLockingOnNonProjectConfigurationsIntegrationTest extends AbstractDependencyResolutionTest {
    
        def pluginBuilder = new PluginBuilder(file("plugin"))
        def lockfileFixture = new LockfileFixture(testDirectory: testDirectory)
    
        @Rule
        MavenHttpPluginRepository pluginRepo = MavenHttpPluginRepository.asGradlePluginPortal(executer, mavenRepo)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top