Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testPOMPropertyExtractionWithMissingProjectWithDotNotation (0.22 sec)

  1. impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

            Object value = ee.evaluate(expr);
    
            assertEquals(expr, value);
        }
    
        @Test
        public void testPOMPropertyExtractionWithMissingProjectWithDotNotation() throws Exception {
            String key = "m2.name";
            String checkValue = "value";
    
            MavenProject project = createDefaultProject();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Mar 26 19:31:34 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

            Object value = ee.evaluate(expr);
    
            assertEquals(expr, value);
        }
    
        @Test
        void testPOMPropertyExtractionWithMissingProjectWithDotNotation() throws Exception {
            String key = "m2.name";
            String checkValue = "value";
    
            Properties properties = new Properties();
            properties.setProperty(key, checkValue);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Mar 26 19:31:34 UTC 2025
    - 19.4K bytes
    - Viewed (0)
Back to top