Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for antrun (0.11 sec)

  1. maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java

            assertFalse(md.isThreadSafe());
            assertEquals("package", md.getPhase());
            assertEquals("org.apache.maven.plugin.jar.JarMojo", md.getImplementation());
            assertEquals("antrun", md.getComponentConfigurator());
            assertEquals("java", md.getLanguage());
            assertEquals("per-lookup", md.getInstantiationStrategy());
            assertEquals("some-goal", md.getExecuteGoal());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Nov 17 15:51:47 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

    import org.codehaus.plexus.classworlds.realm.ClassRealm;
    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.repository.RemoteRepository;
    import org.slf4j.LoggerFactory;
    
    // TODO the antrun plugin has its own configurator, the only plugin that does. might need to think about how that works
    // TODO remove the coreArtifactFilterManager
    
    /**
     * DefaultBuildPluginManager
     */
    @Named
    @Singleton
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/foo/sub/pom.xml

                </configuration>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-antrun-plugin</artifactId>
            <dependencies>
              <dependency>
                <groupId>ant</groupId>
                <artifactId>ant-antlr</artifactId>
                <version>1.6.5</version>
              </dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 08:59:31 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  4. guava-gwt/pom.xml

                <version>${project.version}</version>
                <classifier>test-sources</classifier>
              </dependency>
            </dependencies>
          </plugin>
          <plugin>
            <artifactId>maven-antrun-plugin</artifactId>
            <executions>
              <execution>
                <id>copy-gwt-files</id>
                <phase>generate-resources</phase>
                <goals><goal>run</goal></goals>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. android/pom.xml

            </plugin>
            <plugin>
              <artifactId>maven-dependency-plugin</artifactId>
              <version>3.1.1</version>
            </plugin>
            <plugin>
              <artifactId>maven-antrun-plugin</artifactId>
              <version>1.6</version>
            </plugin>
            <plugin>
              <artifactId>maven-surefire-plugin</artifactId>
              <version>2.7.2</version>
              <configuration>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. pom.xml

            </plugin>
            <plugin>
              <artifactId>maven-dependency-plugin</artifactId>
              <version>3.1.1</version>
            </plugin>
            <plugin>
              <artifactId>maven-antrun-plugin</artifactId>
              <version>1.6</version>
            </plugin>
            <plugin>
              <artifactId>maven-surefire-plugin</artifactId>
              <version>2.7.2</version>
              <configuration>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    Although the plugin systems are very different beneath the surface, they share many feature-based plugins, such as:
    
    * Shade/Shadow
    * Jetty
    * Checkstyle
    * JaCoCo
    * AntRun (see further down)
    
    Why does this matter? Because many plugins rely on standard Java conventions, migration is just a matter of replicating the configuration of the Maven plugin in Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  8. pom.xml

    					<clientProject>fess</clientProject>
    					<dbfluteClientDir>${basedir}/dbflute_fess</dbfluteClientDir>
    				</configuration>
    			</plugin>
    			<plugin>
    				<artifactId>maven-antrun-plugin</artifactId>
    				<dependencies>
    					<dependency>
    						<groupId>org.apache.ant</groupId>
    						<artifactId>ant</artifactId>
    						<version>1.10.11</version>
    					</dependency>
    				</dependencies>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/osgi/OsgiTest.kt

       * metadata this will fail with an exception.
       */
      @Test
      fun testMainModuleWithSiblings() {
        createWorkspace().use { workspace ->
          createBndRun(workspace).use { bndRun ->
            bndRun.resolve(
              false,
              false,
            )
          }
        }
      }
    
      private fun createWorkspace(): Workspace {
        val bndDir = workspaceDir / "cnf"
        val repoDir = bndDir / "repo"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BNDSmokeTest.groovy

        }
    
        def "BND plugin can resolve a bndrun file"() {
            given:
            def commonsVersion = "3.12.0"
            def directVersion = "2.7-SNAPSHOT"
            def calculatedDirectVersionRange = "[2.7,3)"
            def pathToBndrun = "src/main/resources/my.bndrun"
    
            settingsFile << """
    include "direct"
    """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top