Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 126 for globals (0.18 sec)

  1. apache-maven/src/test/java/org/apache/maven/settings/GlobalSettingsTest.java

    import org.apache.maven.api.settings.InputSource;
    import org.apache.maven.settings.v4.SettingsStaxReader;
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Tests that the global settings.xml shipped with the distribution is in good state.
     *
     */
    class GlobalSettingsTest {
    
        @Test
        void testValidGlobalSettings() throws Exception {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/merged-plugin-exec-order/wo-plugin-mgmt/pom.xml

                <id>parent-1</id>
                <phase>validate</phase>
                <goals>
                  <goal>parent-1</goal>
                </goals>
              </execution>
              <execution>
                <id>parent-2</id>
                <phase>validate</phase>
                <goals>
                  <goal>parent-2</goal>
                </goals>
              </execution>
              <execution>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.1K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/merged-plugin-exec-order/wo-plugin-mgmt/sub/pom.xml

                <id>child-1</id>
                <phase>validate</phase>
                <goals>
                  <goal>child-1</goal>
                </goals>
              </execution>
              <execution>
                <id>child-2</id>
                <phase>validate</phase>
                <goals>
                  <goal>child-2</goal>
                </goals>
              </execution>
              <execution>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.1K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/join-different-containers-same-id/pom.xml

              <artifactId>maven-it-plugin-b</artifactId>
              <version>1.0-SNAPSHOT</version>
                <executions>
                  <execution>
                    <id>foo</id>
                    <goals>
                      <goal>a</goal>
                    </goals>
                  </execution>
                </executions>
            </plugin>
          </plugins>
        </pluginManagement>
        <plugins>
          <plugin>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.9K bytes
    - Viewed (0)
  5. maven-core/src/test/projects/project-builder/mng-3023/dependency/pom.xml

                <phase>initialize</phase>
                <goals>
                  <goal>set</goal>
                </goals>
                <configuration>
                  <mainFile>dependency-classes</mainFile>
                </configuration>
              </execution>
              <execution>
                <id>install</id>
                <phase>generate-sources</phase>
                <goals>
                  <goal>set</goal>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 2.2K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/plugin-exec-inheritance/pom.xml

            <executions>
              <execution>
                <id>inherited-execution</id>
                <inherited>true</inherited>
                <phase>validate</phase>
                <goals>
                  <goal>log-string</goal>
                </goals>
                <configuration>
                  <logFile>target/executions.txt</logFile>
                  <string>inherited-execution</string>
                </configuration>
              </execution>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  7. api/maven-api-model/pom.xml

            <groupId>org.codehaus.modello</groupId>
            <artifactId>modello-maven-plugin</artifactId>
            <executions>
              <execution>
                <id>velocity</id>
                <goals>
                  <goal>velocity</goal>
                </goals>
                <configuration>
                  <version>4.1.0</version>
                  <velocityBasedir>${project.basedir}/../../src/mdo</velocityBasedir>
                  <models>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/w-plugin-mgmt/sub/pom.xml

            <executions>
              <execution>
                <id>merge</id>
                <phase>validate</phase>
                <goals>
                  <goal>child-a</goal>
                  <goal>merged</goal>
                  <goal>child-b</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.7K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/plugin-exec-goals-order/wo-plugin-mgmt/pom.xml

            <version>1.0-SNAPSHOT</version>
            <executions>
              <execution>
                <goals>
                  <goal>b</goal>
                  <goal>a</goal>
                  <goal>d</goal>
                  <goal>c</goal>
                  <goal>e</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.8K bytes
    - Viewed (0)
  10. apache-maven/src/assembly/maven/conf/settings.xml

     |                 and is normally provided in ${user.home}/.m2/settings.xml.
     |
     |                 NOTE: This location can be overridden with the CLI option:
     |
     |                 -s /path/to/user/settings.xml
     |
     |  2. Global Level. This settings.xml file provides configuration for all Maven
     |                 users on a machine (assuming they're all using the same Maven
     |                 installation). It's normally provided in
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:06:01 GMT 2023
    - 11K bytes
    - Viewed (0)
Back to top