Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testValidateUniqueProxyId (0.2 sec)

  1. maven-api-impl/src/test/java/org/apache/maven/internal/impl/DefaultSettingsValidatorTest.java

                    "'profiles.profile[pro].repositories.repository.id' must be unique"
                            + " but found duplicate repository with id test");
        }
    
        @Test
        void testValidateUniqueProxyId() throws Exception {
            Settings settings = new Settings();
            Proxy proxy = new Proxy();
            String id = "foo";
            proxy.setId(id);
            proxy.setHost("www.example.com");
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 8.6K bytes
    - Viewed (0)
Back to top