Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for 4shared (0.16 sec)

  1. apache-maven/src/assembly/component.xml

      </fileSets>
    
      <files>
        <file>
          <sources>
            <source>src/assembly/shared/validate.cmd</source>
            <source>src/assembly/shared/mvnvalidate.cmd</source>
            <source>src/assembly/shared/init.cmd</source>
            <source>src/assembly/shared/mvnlauncher.cmd</source>
            <source>src/assembly/shared/run.cmd</source>
          </sources>
          <destName>mvn.cmd</destName>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Jun 04 19:03:41 GMT 2023
    - 4.4K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/apache/3/apache-3.pom

             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
    
      <!-- Shared parent. Doesn't define a lot of things about Apache like general mailing lists, but does
           define the settings common to all projects at Apache -->
      <groupId>org.apache</groupId>
      <artifactId>apache</artifactId>
    Plain Text
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 3.3K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar

    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 this class will then be created, and cached per class loader....
    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)
  4. maven-core/plugin-manager.txt

    - we also seem to have artifact information tangled inside the plugin model
    - we have to deal with scripting implementations (groovy, beanshell, ruby)
    - we need to deal with a shared context for plugins, like the guarded mojos
    - we need to deal with plugins as core application logic which can also interact with plugins
    
    * Along with this comes the testing strategies that make this work
    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)
  5. maven-core/src/main/java/org/apache/maven/project/ReactorModelPool.java

         * @param artifactId never {@code null}
         * @param version can be {@code null}
         * @return the matching model or {@code null}
         * @throws IllegalStateException if version was null and multiple modules share the same groupId + artifactId
         */
        public Model get(String groupId, String artifactId, String version) {
            return modelsByGa.getOrDefault(new GAKey(groupId, artifactId), Collections.emptySet()).stream()
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/licenses/Apache-2.0.txt

          "control" means (i) the power, direct or indirect, to cause the
          direction or management of such entity, whether by contract or
          otherwise, or (ii) ownership of fifty percent (50%) or more of the
          outstanding shares, or (iii) beneficial ownership of such entity.
    
          "You" (or "Your") shall mean an individual or Legal Entity
          exercising permissions granted by this License.
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 28 11:47:17 GMT 2020
    - 11.1K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         */
        @Nonnull
        @Override
        public String option(Iterable<? extends Path> paths) {
            return format(null, paths);
        }
    
        /**
         * Implementation shared with {@link Modular}.
         */
        String format(String moduleName, Iterable<? extends Path> paths) {
            if (option == null) {
                throw new IllegalStateException("No option is associated to this path type.");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

                if (relocatedArtifact != null) {
                    if (withinSameGav(relocatedArtifact, a)) {
                        result.setArtifact(relocatedArtifact);
                        return model; // they share same model
                    } else {
                        result.addRelocation(a);
                        a = relocatedArtifact;
                        result.setArtifact(a);
                    }
                } else {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 13.9K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

                } else {
                    repoMetadata.setMetadata(metadata);
                    setRepository = true;
                }
            }
            return setRepository;
        }
    
        /*
         * TODO share with DefaultPluginMappingManager.
         */
        protected Metadata readMetadata(File mappingFile) throws RepositoryMetadataReadException {
    
            try (InputStream in = Files.newInputStream(mappingFile.toPath())) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/foo/sub/pom.xml

        </dependency>
        <dependency>
          <groupId>org.codehaus.plexus</groupId>
          <artifactId>plexus-container-default</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven.shared</groupId>
          <artifactId>maven-plugin-testing-harness</artifactId>
          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>commons-io</groupId>
          <artifactId>commons-io</artifactId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 08:59:31 GMT 2023
    - 15.6K bytes
    - Viewed (0)
Back to top