Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 120 for Rojo (0.33 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java

            return style(".strong:-bold", message);
        }
    
        /**
         * Append message content in mojo style.
         * By default, green
         *
         * @param message the message to append
         * @return the current builder
         */
        @Nonnull
        default MessageBuilder mojo(Object message) {
            return style(".mojo:-f:green", message);
        }
    
        /**
         * Append message content in project style.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jan 08 10:37:09 GMT 2024
    - 7K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/di/MojoExecutionScoped.java

    import static java.lang.annotation.ElementType.TYPE;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    /**
     * Indicates that the annotated bean has a lifespan limited to a given mojo execution,
     * which means each mojo execution will result in a different instance being injected.
     *
     * TODO: this is currently not implemented
     *
     * @since 4.0.0
     */
    @Scope
    @Documented
    @Retention(RUNTIME)
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Feb 05 09:45:47 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  3. maven-core/src/test/projects/project-builder/MNG-6983/parent-pom.xml

        <groupId>org.example</groupId>
        <artifactId>parent</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <packaging>pom</packaging>
    
        <properties>
            <codehaus.groupId>org.codehaus.mojo</codehaus.groupId>
        </properties>
    
        <build>
            <pluginManagement>
                <plugins>
                    <plugin>
                        <groupId>${codehaus.groupId}</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Oct 03 10:51:51 GMT 2020
    - 1.4K bytes
    - Viewed (0)
  4. maven-core/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    Throwable); public boolean isDebugEnabled(); public boolean isInfoEnabled(); public boolean isWarnEnabled(); public boolean isErrorEnabled(); } org/apache/maven/plugin/Mojo$1.class package org.apache.maven.plugin; synchronized class Mojo$1 { } org/apache/maven/plugin/Mojo.class package org.apache.maven.plugin; public abstract interface Mojo { public static final String ROLE; public abstract void execute() throws MojoExecutionExcepti, MojoFailureException; public abstract void setLog(logging.Log); public...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Oct 23 23:48:02 GMT 2009
    - 9.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/internal/MavenPluginDependenciesValidator.java

    import org.eclipse.aether.resolution.ArtifactDescriptorResult;
    
    /**
     * Service responsible for validating plugin dependencies.
     *
     * @since 3.9.3
     */
    interface MavenPluginDependenciesValidator {
        /**
         * Checks mojo dependency issues.
         */
        void validate(
                RepositorySystemSession session,
                Artifact pluginArtifact,
                ArtifactDescriptorResult artifactDescriptorResult);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed May 24 06:50:28 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  6. android/guava-tests/pom.xml

          </plugin>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>animal-sniffer-maven-plugin</artifactId>
            <configuration>
              <checkTestClasses>false</checkTestClasses> <!-- TODO(cpovirk): Consider checking them. -->
            </configuration>
          </plugin>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>build-helper-maven-plugin</artifactId>
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Aug 07 19:01:53 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/internal/MavenPluginConfigurationValidator.java

    import org.codehaus.plexus.configuration.PlexusConfiguration;
    
    /**
     * Service responsible for validating plugin configuration.
     *
     */
    public interface MavenPluginConfigurationValidator {
        /**
         * Checks mojo configuration issues.
         */
        void validate(
                MavenSession mavenSession,
                MojoDescriptor mojoDescriptor,
                Class<?> mojoClass,
                PlexusConfiguration pomConfiguration,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 18 11:03:17 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/MavenExecutionPlan.java

            for (ExecutionPlanItem executionPlanItem : planItem) {
                result.add(executionPlanItem.getMojoExecution());
            }
            return result;
        }
    
        /**
         * Get set of plugins having a goal/mojo used but not marked @threadSafe
         *
         * @return the set of plugins (without info on which goal is concerned)
         */
        public Set<Plugin> getNonThreadSafePlugins() {
            Set<Plugin> plugins = new HashSet<>();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  9. okhttp/src/main/resources/META-INF/proguard/okhttp3.pro

    -keeppackagenames okhttp3.internal.publicsuffix.*
    -adaptresourcefilenames okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz
    
    # Animal Sniffer compileOnly dependency to ensure APIs are compatible with older versions of Java.
    -dontwarn org.codehaus.mojo.animal_sniffer.*
    
    # OkHttp platform used only on JVM and when Conscrypt and other security providers are available.
    -dontwarn okhttp3.internal.platform.**
    -dontwarn org.conscrypt.**
    -dontwarn org.bouncycastle.**
    Others
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Dec 23 14:46:51 GMT 2023
    - 682 bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate.java

    /**
     * Lifecycle mapping delegate component interface. Calculates project build execution plan given {@link Lifecycle} and
     * lifecycle phase. Standard lifecycles use plugin execution {@code <phase>} or mojo default lifecycle phase to
     * calculate the execution plan, but custom lifecycles can use alternative mapping strategies.
     */
    @Named(DefaultLifecycleMappingDelegate.HINT)
    @Singleton
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 6.5K bytes
    - Viewed (0)
Back to top