Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for finalName (0.28 sec)

  1. apache-maven/pom.xml

          </snapshots>
          <id>apache.snapshots</id>
          <url>https://repository.apache.org/snapshots/</url>
        </pluginRepository>
      </pluginRepositories>
    
      <build>
        <finalName>${distributionFileName}</finalName>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.apache.rat</groupId>
              <artifactId>apache-rat-plugin</artifactId>
              <configuration>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/installer/ArtifactInstaller.java

         * Install an artifact from a particular directory. The artifact handler is used to determine
         * the filename of the source file.
         *
         * @param basedir the directory where the artifact is stored
         * @param finalName the name of the artifact sans extension
         * @param artifact the artifact definition
         * @param localRepository the local repository to install into
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/installer/DefaultArtifactInstaller.java

        @Deprecated
        public void install(String basedir, String finalName, Artifact artifact, ArtifactRepository localRepository)
                throws ArtifactInstallationException {
            String extension = artifact.getArtifactHandler().getExtension();
            File source = new File(basedir, finalName + "." + extension);
    
            install(source, artifact, localRepository);
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/core/test/test-lifecycle-and-artifactHandler/1/test-lifecycle-and-artifactHandler-1.pom

                  <goal>single</goal>
                </goals>
                <configuration>
                  <descriptors>
                    <descriptor>repo.xml</descriptor>
                  </descriptors>
                  <finalName>test-extension</finalName>
                  <appendAssemblyId>true</appendAssemblyId>
                  <outputDirectory>${pom.basedir}/../../resources/org/apache/maven/extension</outputDirectory>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Dec 24 18:09:10 GMT 2020
    - 1.5K bytes
    - Viewed (0)
  5. guava/module.json

              "version": {
                "requires": "${j2objc.version}"
              }
            }
          ],
          "files": [
            {
              "name": "${project.build.finalName}.jar",
              "url": "${project.build.finalName}.jar"
            }
          ],
          "capabilities": [
            {
              "group": "com.google.guava",
              "name": "guava",
              "version": "${pom.version}"
            },
    Json
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Oct 17 18:11:49 GMT 2023
    - 7.9K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/consumer/simple/simple-parent/simple-webapp/pom.xml

      <dependencies>
        <dependency>
          <groupId>org.sonatype.mavenbook.multi</groupId>
          <artifactId>simple-weather</artifactId>
        </dependency>
      </dependencies>
      <build>
        <finalName>simple-webapp</finalName>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-war-plugin</artifactId>
              <version>3.3.2</version>
    XML
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Tue Nov 28 17:17:10 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/apache/maven/core/test/test-lifecycle-and-artifactHandler/1/test-lifecycle-and-artifactHandler-1.pom

                  <goal>single</goal>
                </goals>
                <configuration>
                  <descriptors>
                    <descriptor>repo.xml</descriptor>
                  </descriptors>
                  <finalName>test-extension</finalName>
                  <appendAssemblyId>true</appendAssemblyId>
                  <outputDirectory>${pom.basedir}/../../resources/org/apache/maven/extension</outputDirectory>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 1.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/resources/org/apache/maven/model/pom-4.1.0.xml

      </properties>
    
      <build>
        <directory>${project.basedir}/target</directory>
        <outputDirectory>${project.build.directory}/classes</outputDirectory>
        <finalName>${project.artifactId}-${project.version}</finalName>
        <testOutputDirectory>${project.build.directory}/test-classes</testOutputDirectory>
        <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/apache/maven/core/test/test-extension/1/test-extension-1.pom

                  <goal>single</goal>
                </goals>
                <configuration>
                  <descriptors>
                    <descriptor>repo.xml</descriptor>
                  </descriptors>
                  <finalName>test-extension</finalName>
                  <appendAssemblyId>true</appendAssemblyId>
                  <outputDirectory>${pom.basedir}/../../resources/org/apache/maven/extension</outputDirectory>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/deployer/ArtifactDeployer.java

         * Deploy an artifact from a particular directory. The artifact handler is used to determine the
         * filename of the source file.
         *
         * @param basedir the directory where the artifact is stored
         * @param finalName the name of the artifact without extension
         * @param artifact the artifact definition
         * @param deploymentRepository the repository to deploy to
         * @param localRepository the local repository to install into
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.6K bytes
    - Viewed (0)
Back to top