Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MyCo (0.18 sec)

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

            assertNotNull(depResults);
            assertEquals(1, depResults.size());
            assertTrue(depResults.containsKey("org.myco.plugins:my-plugin"));
            assertEquals(
                    exec.getPlugin().getArtifact().key(),
                    depResults.get("org.myco.plugins:my-plugin").key(),
                    "dependency artifact is wrong.");
        }
    
        @Test
    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. apache-maven/src/assembly/maven/conf/settings.xml

         | provides a specific path to the Tomcat instance. To use this, your plugin configuration might
         | hypothetically look like:
         |
         | ...
         | <plugin>
         |   <groupId>org.myco.myplugins</groupId>
         |   <artifactId>myplugin</artifactId>
         |
         |   <configuration>
         |     <tomcatLocation>${tomcatPath}</tomcatLocation>
         |   </configuration>
         | </plugin>
         | ...
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jan 22 07:44:50 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java

            assertEquals("test/somepath", out.getScm().getConnection());
        }
    
        @Test
        public void shouldInterpolateOrganizationNameCorrectly() throws Exception {
            String orgName = "MyCo";
    
            Model model = new Model(org.apache.maven.api.model.Model.newBuilder()
                    .name("${project.organization.name} Tools")
                    .organization(org.apache.maven.api.model.Organization.newBuilder()
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Mar 30 23:08:36 UTC 2025
    - 18.2K bytes
    - Viewed (0)
  4. impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

        }
    
        private MojoExecution newMojoExecution() {
            PluginDescriptor pd = new PluginDescriptor();
            pd.setArtifactId("my-plugin");
            pd.setGroupId("org.myco.plugins");
            pd.setVersion("1");
    
            MojoDescriptor md = new MojoDescriptor();
            md.setPluginDescriptor(pd);
    
            pd.addComponentDescriptor(md);
    
            return new MojoExecution(md);
    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