Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 101 for isCall (0.14 sec)

  1. maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleExecutor.java

                plugins.add(newPlugin("maven-surefire-plugin", "test"));
                plugins.add(newPlugin("maven-jar-plugin", "jar"));
                plugins.add(newPlugin("maven-install-plugin", "install"));
                plugins.add(newPlugin("maven-deploy-plugin", "deploy"));
            } else {
                plugins = Collections.emptySet();
            }
    
            return plugins;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/single-configuration-inheritance/pom.xml

      </parent>
      <groupId>org.mortbay.jetty</groupId>
      <artifactId>project</artifactId>
      <packaging>pom</packaging>
      <name>Jetty Server Project</name>
      <version>6.1.12</version>
      <build>
        <defaultGoal>install</defaultGoal>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-enforcer-plugin</artifactId>
            <executions>
              <execution>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 1.3K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/lifecycle/internal/builder/BuilderCommonTest.java

                            + "stub-plugin-test-compile, "
                            + "stub-plugin-test, "
                            + "stub-plugin-package, "
                            + "stub-plugin-install], "
                            + "you should define versions in pluginManagement section of your pom.xml or parent");
        }
    
        @Test
        void testHandleBuildError() throws Exception {}
    
        @Test
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/AbstractLifecycleMappingProvider.java

        protected static final String COMPILER_PLUGIN_VERSION = "3.13.0";
    
        protected static final String SUREFIRE_PLUGIN_VERSION = "3.2.5";
    
        protected static final String INSTALL_PLUGIN_VERSION = "3.1.1";
    
        protected static final String DEPLOY_PLUGIN_VERSION = "3.1.1";
    
        // packaging
    
        protected static final String JAR_PLUGIN_VERSION = "3.4.1";
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 15:34:45 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    shortcut to the frequently used not(equalTo(x)). static Matcher<java.lang.Object> IsNull.notNullValue() A shortcut to the frequently used not(nullValue()). static <T> Matcher<T> IsNull.notNullValue(java.lang.Class<T> type) A shortcut to the frequently used not(nullValue(X.class)). static Matcher<java.lang.Object> IsNull.nullValue() Creates a matcher that matches if examined object is null. static <T> Matcher<T> IsNull.nullValue(java.lang.Class<T> type) Creates a matcher that matches if examined object...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 236.8K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

        void injectAuthentication(RepositorySystemSession session, List<ArtifactRepository> repositories);
    
        ArtifactResolutionResult resolve(ArtifactResolutionRequest request);
    
        // Install
    
        // Deploy
    
        // Map types of artifacts
    
        //
        // Raw file transfers
        //
        void publish(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 7.7K bytes
    - Viewed (0)
  7. maven-core/src/test/remote-repo/org/apache/maven/plugins/maven-install-plugin/0.1/maven-install-plugin-0.1.pom

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-install-plugin</artifactId>
      <version>0.1</version>
      <packaging>maven-plugin</packaging>
    
      <name>Maven Integration Test Plugin</name>
      <description>
        A test plugin to assist testing of Maven core.
      </description>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 2.1K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/artifact/installer/ArtifactInstaller.java

         *             method
         */
        @Deprecated
        void install(String basedir, String finalName, Artifact artifact, ArtifactRepository localRepository)
                throws ArtifactInstallationException;
    
        /**
         * Install an artifact from a particular file.
         *
         * @param source the file to install
         * @param artifact the artifact definition
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/PomLifecycleMappingProvider.java

        // START SNIPPET: pom
        @SuppressWarnings("checkstyle:linelength")
        private static final String[] BINDINGS = {
            "install", "org.apache.maven.plugins:maven-install-plugin:" + INSTALL_PLUGIN_VERSION + ":install",
            "deploy", "org.apache.maven.plugins:maven-deploy-plugin:" + DEPLOY_PLUGIN_VERSION + ":deploy"
        };
        // END SNIPPET: pom
    
        @Inject
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.6K bytes
    - Viewed (0)
  10. 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 May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 5K bytes
    - Viewed (0)
Back to top