Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Bar (0.16 sec)

  1. maven-core/src/test/resources/consumer/trivial/child/pom.xml

      <parent>
        <groupId>org.my.group</groupId>
        <artifactId>parent</artifactId>
      </parent>
      <artifactId>child</artifactId>
      <packaging>jar</packaging>
    
      <properties>
        <prop-child>bar</prop-child>
      </properties>
      <dependencies>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api</artifactId>
        </dependency>
      </dependencies>
    XML
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Tue Nov 28 17:17:10 GMT 2023
    - 430 bytes
    - Viewed (0)
  2. maven-core/src/test/resources/projects/child-which-inherits-from-super-model.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <model>
      <groupId>foo</groupId>
      <artifactId>bar</artifactId>
      <name>Babar</name>
      <version>4.5</version>
    
      <!-- Build element should be inherited from the super model -->
    
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 954 bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/toolchain/RequirementMatcherFactoryTest.java

         */
        @Test
        void testCreateExactMatcher() {
            RequirementMatcher matcher;
            matcher = RequirementMatcherFactory.createExactMatcher("foo");
            assertFalse(matcher.matches("bar"));
            assertFalse(matcher.matches("foobar"));
            assertFalse(matcher.matches("foob"));
            assertTrue(matcher.matches("foo"));
        }
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    least one item that is equal to the specified * <code>item</code>. Whilst matching, the traversal of the examined {@link Iterable} * will stop as soon as a matching item is found. * <p/> * For example: * <pre>assertThat(Arrays.asList("foo", "bar"), hasItem("bar"))</pre> * * @param item * the item to compare against the items provided by the examined {@link Iterable} */ public static <T> org.hamcrest.Matcher<java.lang.Iterable<? super T>> hasItem(T item) { return org.hamcrest.core.IsCollectionConta...
    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)
  5. maven-compat/src/test/java/org/apache/maven/artifact/AbstractArtifactComponentTestCase.java

        }
    
        protected ArtifactRepository badRemoteRepository() throws Exception {
            return artifactRepositoryFactory.createArtifactRepository(
                    "test", "http://foo.bar/repository", repoLayout, null, null);
        }
    
        protected void assertRemoteArtifactPresent(Artifact artifact) throws Exception {
            ArtifactRepository remoteRepo = remoteRepository();
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListenerTest.java

                    RequestTrace.newChild(null, "foo").newChild("bar").newChild("baz");
            assertThat(ReverseTreeRepositoryListener.lookupCollectStepData(doesNotHaveIt), nullValue());
    
            final CollectStepData data = mock(CollectStepData.class);
    
            RequestTrace haveItFirst = RequestTrace.newChild(null, data)
                    .newChild("foo")
                    .newChild("bar")
                    .newChild("baz");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 4.2K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/MavenLifecycleParticipantTest.java

                project.getModel().addDependency(dependency);
            }
    
            @Override
            public void afterSessionStart(MavenSession session) {
                session.getUserProperties().setProperty("injected", "bar");
            }
        }
    
        public static class InjectReactorDependency extends AbstractMavenLifecycleParticipant {
            @Override
            public void afterProjectsRead(MavenSession session) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 6K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

                to generate the reports on the Maven-generated site.
                These reports will be run when a user executes {@code mvn site}.
                All the reports will be included in the navigation bar for browsing.
              </description>
              <association>
                <type>Reporting</type>
              </association>
            </field>
          </fields>
        </class>
        <class>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

            /**
             * Returns the programmatic name of this path type, including the module to patch.
             * For example, if this type was created by {@code JavaPathType.patchModule("foo.bar")},
             * then this method returns {@code "PathType[PATCH_MODULE:foo.bar]")}.
             *
             * @return the programmatic name together with the module name on which it applies
             */
            @Nonnull
            @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java

            assertNotNull(versionFilter);
            assertTrue(versionFilter instanceof PredicateVersionFilter);
    
            // chained
            request.getUserProperties().put("maven.versionFilters", "h(5);s;e(org.foo:bar:1)");
            versionFilter = systemSessionFactory.newRepositorySession(request).getVersionFilter();
            assertNotNull(versionFilter);
            assertTrue(versionFilter instanceof ChainedVersionFilter);
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Mar 27 14:46:12 GMT 2024
    - 19.3K bytes
    - Viewed (0)
Back to top