Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for uploader (0.2 sec)

  1. maven-core/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java

        }
    
        protected static File getFileForClasspathResource(String resource)
                throws FileNotFoundException, URISyntaxException {
            ClassLoader cloader = Thread.currentThread().getContextClassLoader();
    
            URL resourceUrl = cloader.getResource(resource);
    
            if (resourceUrl == null) {
                throw new FileNotFoundException("Unable to find: " + resource);
            }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedComponentConfigurator.java

                ExpressionEvaluator evaluator,
                ClassLoader loader,
                ConfigurationListener listener)
                throws ComponentConfigurationException {
            new EnhancedConfigurationConverter()
                    .processConfiguration(
                            converterLookup,
                            component,
                            loader, //
                            configuration,
                            evaluator,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 05 09:45:47 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/merged-plugin-class-path-order/w-plugin-mgmt/sub/pom.xml

      </description>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-class-loader</artifactId>
            <version>2.1-SNAPSHOT</version>
            <dependencies>
              <dependency>
                <groupId>org.apache.maven.its.mng3906</groupId>
                <artifactId>c</artifactId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingHelper.java

        /**
         * Updates the context class loader such that the container will search the project realm when the model builder
         * injects the lifecycle bindings from the packaging in the next step. The context class loader is to be reset by
         * the project builder when the project is fully assembled.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar

    on the instantiated LogFactory instance. Once an implementation class name is selected, the corresponding class is loaded from the current Thread context class loader (if there is one), or from the class loader that loaded the LogFactory class itself otherwise. This allows a copy of commons-logging.jar to be shared in a multiple class loader environment (such as a servlet container), but still allow each web application to provide its own LogFactory implementation, if it so desires. An instance of...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 37.1K bytes
    - Viewed (0)
  6. maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/pom.xml

      </description>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.apache.maven.its.plugins</groupId>
              <artifactId>maven-it-plugin-class-loader</artifactId>
              <version>2.1-SNAPSHOT</version>
              <dependencies>
                <dependency>
                  <groupId>org.apache.maven.its.mng3906</groupId>
                  <artifactId>e</artifactId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 2K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/merged-plugin-class-path-order/w-plugin-mgmt/pom.xml

      <build>
        <!-- NOTE: This parent uses plugin management -->
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.apache.maven.its.plugins</groupId>
              <artifactId>maven-it-plugin-class-loader</artifactId>
              <version>2.1-SNAPSHOT</version>
              <dependencies>
                <dependency>
                  <groupId>org.apache.maven.its.mng3906</groupId>
                  <artifactId>e</artifactId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Dec 24 18:50:27 GMT 2020
    - 2.1K bytes
    - Viewed (0)
  8. maven-core/plugin-manager.txt

     * h3. create an isolated classloader
     *
     * h3. lookup the plugin with a configuration
     *
     * h3. execute the plugin
     *
     * h3. plugins may have to deal with particular actions when a plugin is - installed - loaded -
     * unloaded - update - uninstalled
     *
     * h3. plugins should be able to have specific metadata for a plugin model and that be translated -
     * dependencies - resources - configuration - extension points of plugins
     *
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedConfigurationConverter.java

                if (null == value && implType.isInterface() && configuration.getChildCount() == 0) {
                    return null; // nothing to process
                }
                final Object bean = instantiateObject(implType);
                if (null == value) {
                    processConfiguration(lookup, bean, loader, configuration, evaluator, listener);
                } else {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/profile-plugin-mng-dependencies/pom.xml

        <module>sub</module>
      </modules>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.apache.maven.its.plugins</groupId>
              <artifactId>maven-it-plugin-class-loader</artifactId>
              <version>2.1-SNAPSHOT</version>
            </plugin>
          </plugins>
        </pluginManagement>
      </build>
    
      <profiles>
        <profile>
          <id>maven-core-it</id>
          <activation>
    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)
Back to top