Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for txt (0.02 sec)

  1. maven-model-builder/src/test/java/org/apache/maven/model/building/GraphTest.java

        }
    
        @Test
        public void testPerf() throws IOException {
            List<String[]> data = new ArrayList<>();
            String k = null;
            for (String line : Files.readAllLines(Paths.get("src/test/resources/dag.txt"))) {
                if (line.startsWith("\t")) {
                    data.add(new String[] {k, line.trim()});
                } else {
                    k = line;
                }
            }
            Collections.shuffle(data);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/execution-configuration-join/pom.xml

                        <execution>
                            <configuration>
                                <fileset dir="${basedir}">
                                    <include name="LICENSE.txt" />
                                    <include name="NOTICE.txt" />
                                </fileset>
                            </configuration>
                        </execution>
                    </executions>
                    </plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 1.2K bytes
    - Viewed (0)
  3. apache-maven/src/main/appended-resources/META-INF/LICENSE.vm

    #*    *###
    #*    *### copy license file to lib/$artifactId.license
    #*    *##set ( $licFile = $directory + '/' + $project.artifact.artifactId + '.license' )
    #*    *##set ( $downloaded = $locator.getResourceAsFile( "licenses/${spdx}.txt", "licenses/${licFile}" ) )
    
    #*    *### add dependency info to output
    
    - $directory/${project.artifact.artifactId}-${project.artifact.version}.jar: $project.artifact.toString().replace( ':eclipse-plugin:', ':jar:' )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java

        protected File getLocalRepositoryPath() throws FileNotFoundException, URISyntaxException {
            File markerFile = getFileForClasspathResource("local-repo/marker.txt");
    
            return markerFile.getAbsoluteFile().getParentFile();
        }
    
        protected static File getFileForClasspathResource(String resource)
                throws FileNotFoundException, URISyntaxException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/plugin-management-for-implicit-plugin/pom.xml

              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-resources-plugin</artifactId>
              <version>0.1-stub-SNAPSHOT</version>
              <configuration>
                <pathname>passed.txt</pathname>
              </configuration>
            </plugin>
            <plugin>
              <!-- this checks handling of a plugin which is explicitly bound to the lifecycle -->
              <groupId>org.apache.maven.its.plugins</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom

        </notifiers>
      </ciManagement>
      <inceptionYear>2001</inceptionYear>
      <licenses>
        <license>
          <name>The Apache Software License, Version 2.0</name>
          <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
          <distribution>repo</distribution>
        </license>
      </licenses>
      <mailingLists>
        <mailingList>
          <name>Plexus User List</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/projects/transform/jar/before.pom

        <url>https://github.com/helpermethod/zip-forge</url>
        <licenses>
            <license>
                <name>The Apache License, Version 2.0</name>
                <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
            </license>
        </licenses>
        <scm>
            <connection>scm:git:******@****.***:helpermethod/zip-forge.git</connection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 12:04:39 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. maven-builder-support/src/test/java/org/apache/maven/building/UrlSourceTest.java

            assertEquals("url cannot be null", e.getMessage());
        }
    
        @Test
        void testGetInputStream() throws Exception {
            URL txtFile = new File("target/test-classes/source.txt").toURI().toURL();
            UrlSource source = new UrlSource(txtFile);
            try (InputStream is = source.getInputStream();
                    Scanner scanner = new Scanner(is)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/url-inheritance/pom.xml

      <organization>
        <name>parent-org</name>
        <url>https://parent.url/org</url>
      </organization>
      <licenses>
        <license>
          <name>parent-license</name>
          <url>https://parent.url/license.txt</url>
          <distribution>repo</distribution>
        </license>
      </licenses>
    
      <scm>
        <url>https://parent.url/viewvc</url>
        <connection>https://parent.url/scm</connection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/projects/transform/jar/after.pom

      <url>https://github.com/helpermethod/zip-forge</url>
      <licenses>
        <license>
          <name>The Apache License, Version 2.0</name>
          <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
        </license>
      </licenses>
      <scm>
        <connection>scm:git:******@****.***:helpermethod/zip-forge.git</connection>
        <developerConnection>scm:git:******@****.***:helpermethod/zip-forge.git</developerConnection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 12:04:39 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top