Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 137 for Settings (0.31 sec)

  1. api/maven-api-settings/src/main/mdo/settings.mdo

      xml.namespace="http://maven.apache.org/SETTINGS/${version}"
      xml.schemaLocation="http://maven.apache.org/xsd/settings-${version}.xsd">
      <id>settings</id>
      <name>Settings</name>
      <description>
        <![CDATA[
        <p>This is a reference for the user-specific configuration for Maven.</p>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-settings/settings-no-pom/settings.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <settings
      xmlns="http://maven.apache.org/SETTINGS/1.0.0"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
    
      <profiles>
        <profile>
          <id>local-profile</id>
          <properties>
            <local-profile-prop>local-profile-prop-value</local-profile-prop>
          </properties>
        </profile>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Dec 24 18:50:27 GMT 2020
    - 565 bytes
    - Viewed (0)
  3. apache-maven/src/assembly/maven/conf/settings.xml

     |
     |  1. User Level. This settings.xml file provides configuration for a single user,
     |                 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
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:06:01 GMT 2023
    - 11K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-settings/test-pom-and-settings-interpolation/settings.xml

    under the License.
    -->
    
    <settings>
      <profiles>
        <profile>
          <id>settings</id>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
          <properties>
            <settingsProfile>applied</settingsProfile>
            <pomVsSettings>settings</pomVsSettings>
          </properties>
        </profile>
      </profiles>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Mar 31 21:07:56 GMT 2009
    - 1.1K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-settings/repositories/settings.xml

    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <settings>
      <profiles>
        <profile>
          <id>maven-core-it-repo</id>
          <repositories>
            <repository>
              <id>maven-core-it-0</id>
              <url>@baseurl@/repo-0</url>
              <releases>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 21 23:11:40 GMT 2009
    - 1.7K bytes
    - Viewed (0)
  6. maven-compat/src/main/resources/META-INF/maven/plugin-expressions/settings.paramdoc.xml

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 ../../../../../../../maven-plugin-parameter-documenter/target/generated-site/xsd/paramdoc-1.0.0.xsd ">
      <expressions>
        <expression>
          <syntax>settings.offline</syntax>
          <configuration>
            <![CDATA[
        <offline>true</offline>
        ]]></configuration>
          <description>
            <![CDATA[
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 2K bytes
    - Viewed (0)
  7. maven-api-impl/src/test/resources/settings-simple.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <settings>
      <localRepository>${user.home}/.m2/repository</localRepository>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 895 bytes
    - Viewed (0)
  8. maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/settings-template.xml

    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <settings>
      <profiles>
        <profile>
          <id>maven-core-it-repo</id>
          <repositories>
            <repository>
              <id>maven-core-it</id>
              <url>@baseurl@/repo</url>
              <releases>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri May 29 20:00:15 GMT 2009
    - 1.7K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilder.java

    import org.apache.maven.api.settings.Settings;
    
    /**
     * Builds the effective settings from a user settings file and/or a global settings file.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface SettingsBuilder extends Service {
    
        /**
         * Builds the effective settings of the specified settings files.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderResult.java

    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.settings.Settings;
    
    /**
     *
     * @since 4.0.0
     */
    @Experimental
    public interface SettingsBuilderResult {
    
        /**
         * Gets the assembled settings.
         *
         * @return the assembled settings, never {@code null}
         */
        @Nonnull
        Settings getEffectiveSettings();
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 1.7K bytes
    - Viewed (0)
Back to top