Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for berate (0.25 sec)

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

         * <p>
         * Shortcut for {@code getService(ArtifactFactory.class).create(...)}.
         *
         * @param coordString the string having "standard" coordinate.
         * @return coordinate used to point to the artifact
         *
         * @see org.apache.maven.api.services.ArtifactCoordinateFactory#create(Session, String)
         */
        @Nonnull
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java

        @Inject
        SessionScope sessionScope;
    
        @Inject
        SettingsBuilder settingsBuilder;
    
        @Inject
        ToolchainsBuilder toolchainsBuilder;
    
        @BeforeEach
        void setup() {
            // create session with any local repo, is redefined anyway below
            RepositorySystemSession rss = new MavenSessionBuilderSupplier(repositorySystem)
                    .get()
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 9.9K bytes
    - Viewed (2)
  3. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

            org.apache.maven.api.plugin.Log log = new DefaultLog(
                    LoggerFactory.getLogger(mojoExecution.getMojoDescriptor().getFullGoalName()));
            try {
                Injector injector = Injector.create();
                injector.discover(pluginRealm);
                // Add known classes
                // TODO: get those from the existing plexus scopes ?
                injector.bindInstance(Session.class, sessionV4);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/lifecycle/pom.xml

      <properties>
        <classWorldsVersion>1.3</classWorldsVersion>
        <commonsCliVersion>1.0</commonsCliVersion>
        <!--
    
        Do not update this, Doxia will be decoupled completely from 3.x and someone can
        create a rendering engine for it if they like when the release stabilizes. JVZ
    
        -->
        <doxiaVersion>1.0-alpha-9</doxiaVersion>
        <easyMockVersion>1.2_Java1.3</easyMockVersion>
        <junitVersion>4.13.1</junitVersion>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sat Sep 11 08:52:20 GMT 2021
    - 22.4K bytes
    - Viewed (0)
  5. maven-core/src/test/projects/plugin-manager/project-with-inheritance/pom.xml

      <properties>
        <classWorldsVersion>1.3</classWorldsVersion>
        <commonsCliVersion>1.0</commonsCliVersion>
        <!--
    
        Do not update this, Doxia will be decoupled completely from 3.x and someone can
        create a rendering engine for it if they like when the release stabilizes. JVZ
    
        -->
        <doxiaVersion>1.0-alpha-9</doxiaVersion>
        <easyMockVersion>1.2_Java1.3</easyMockVersion>
        <junitVersion>4.13.1</junitVersion>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Aug 03 09:29:10 GMT 2023
    - 22.4K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionResult.java

     *   <li>file system errors: permissions</li>
     * </ul>
     *
     * TODO carlos: all these possible has*Exceptions and get*Exceptions methods make the clients too
     *       complex requiring a long list of checks, need to create a parent/interface/encapsulation
     *       for the types of exceptions
     */
    @Deprecated
    public class ArtifactResolutionResult {
        private static final String LS = System.lineSeparator();
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 9.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java

        private Proxy proxy;
    
        private List<ArtifactRepository> mirroredRepositories = Collections.emptyList();
    
        private boolean blocked;
    
        public MavenArtifactRepository() {}
    
        /**
         * Create a remote download repository.
         *
         * @param id        the unique identifier of the repository
         * @param url       the URL of the repository
         * @param layout    the layout of the repository
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 11K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    intended to facilitate the commercial use of the Program, the Contributor
    who includes the Program in a commercial product offering should do so in
    a manner which does not create potential liability for other Contributors.
    Therefore, if a Contributor includes the Program in a commercial product offering,
    such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Sep 17 05:50:12 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  9. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

                    copiedRestrictions.addAll(restrictions);
                }
            }
    
            return new VersionRange(recommendedVersion, copiedRestrictions);
        }
    
        /**
         * <p>
         * Create a version range from a string representation
         * </p>
         * Some spec examples are:
         * <ul>
         * <li><code>1.0</code> Version 1.0 as a recommended version</li>
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    defines an abstract method * <pre>protected abstract boolean matchesSafely(T item, Description mismatchDescription);</pre> * By default it uses <code>new ReflectiveTypeFinder("matchesSafely", 2, 0); </code> to find the * parameterised type. If we create a <code>TypeSafeDiagnosingMa&lt;String&gt;</code>, the type * finder will return <code>String.class</code>. * * A <code>FeatureMatcher</code> is an abstract subclass of <code>TypeSafeDiagnosingMa</code>. * Although it has a templated implementation...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 31.9K bytes
    - Viewed (0)
Back to top