Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for readLocalRepository (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/mvnsettings/DefaultMavenSettingsProvider.java

         */
        @Override
        public String getLocalRepository() {
            String localRepo = readLocalRepository(mavenFileLocations.getUserSettingsFile());
            if (localRepo == null) {
                localRepo = readLocalRepository(mavenFileLocations.getGlobalSettingsFile());
            }
            return localRepo;
        }
    
        private String readLocalRepository(File settingsFile) {
            if (settingsFile == null || !settingsFile.exists()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top