Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MavenLocalModule (0.52 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenLocalModule.groovy

     * limitations under the License.
     */
    package org.gradle.test.fixtures.maven
    
    import org.gradle.test.fixtures.file.TestFile
    
    class MavenLocalModule extends MavenFileModule {
        private boolean uniqueSnapshots = false;
    
        MavenLocalModule(TestFile rootDir, TestFile moduleDir, String groupId, String artifactId, String version) {
            super(rootDir, moduleDir, groupId, artifactId, version)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/maven/MavenLocalModuleTest.groovy

        TestFile testFile
        MavenModule mavenLocalModule
        MavenModule snapshotMavenLocalModule
        private String mavenMetadataFileName = 'maven-metadata-local.xml'
    
        def setup() {
            testFile = tmpDir.file("file")
            mavenLocalModule = new MavenLocalModule(testFile, testFile, "my-company", "my-artifact", "1.0")
    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/main/groovy/org/gradle/test/fixtures/maven/MavenLocalRepository.groovy

            this.rootDir = rootDir
        }
    
        URI getUri() {
            return rootDir.toURI()
        }
    
        MavenLocalModule module(String groupId, String artifactId, String version = '1.0') {
            def artifactDir = rootDir.file("${groupId.replace('.', '/')}/$artifactId/$version")
            return new MavenLocalModule(rootDir, artifactDir, groupId, artifactId, version as String)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top