Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for it0043 (0.13 sec)

  1. maven-core/src/test/resources-project-builder/repo-inheritance/pom.xml

      <groupId>org.apache.maven.its.it0043</groupId>
      <artifactId>maven-it-it0043</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: it0043</name>
      <description>Test for repository inheritance - ensure using the same id overrides the defaults</description>
    
      <repositories>
        <repository>
          <id>central</id>
          <name>it0043</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        @Test
        void testRepoInheritance() throws Exception {
            PomTestWrapper pom = this.buildPom("repo-inheritance");
            assertEquals(1, ((List<?>) pom.getValue("repositories")).size());
            assertEquals("it0043", pom.getValue("repositories[1]/name"));
        }
    
        @Test
        void testEmptyScm() throws Exception {
            PomTestWrapper pom = this.buildPom("empty-scm");
            assertNull(pom.getValue("scm"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  3. maven-core/src/test/projects/project-builder/it0063/pom.xml

    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.it0063</groupId>
      <artifactId>maven-it-it0063</artifactId>
      <version>1.0</version>
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: it0063</name>
      <description>Test the use of a system scoped dependency to a (fake) tools.jar.</description>
    
      <dependencies>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 1.7K bytes
    - Viewed (0)
  4. maven-compat/src/test/projects/project-dependencies-resolver/it0063/pom.xml

    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.it0063</groupId>
      <artifactId>maven-it-it0063</artifactId>
      <version>1.0</version>
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: it0063</name>
      <description>Test the use of a system scoped dependency to a (fake) tools.jar.</description>
    
      <dependencies>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. pkg/config/analysis/diag/message_test.go

    	g := NewWithT(t)
    	mt := NewMessageType(Error, "IST0042", "Cheese type not found: %q")
    	m := NewMessage(mt, nil, "Feta")
    	m.DocRef = "test-ref"
    	g.Expect(m.Unstructured(false)["documentationUrl"]).To(Equal(url.ConfigAnalysis + "/ist0042/?ref=test-ref"))
    }
    
    func TestMessage_JSON(t *testing.T) {
    	g := NewWithT(t)
    	mt := NewMessageType(Error, "IST0042", "Cheese type not found: %q")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/profile-dependencies-multiple-profiles/pom.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.it0021</groupId>
      <artifactId>test</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: it0021</name>
      <description>
        Test pom-level profile inclusion (this one is activated by system property).
      </description>
    
      <build>
        <plugins>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/distribution-management/pom.xml

    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.it0061</groupId>
      <artifactId>maven-it-it0061</artifactId>
      <version>1.0</version>
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: it0061</name>
    
      <distributionManagement>
        <repository>
          <id>test</id>
          <url>file:target/test-repo</url>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/plugin-management-inheritance/pom.xml

    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.it0052</groupId>
      <artifactId>maven-it-it0052</artifactId>
      <version>1.0</version>
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: it0052</name>
      <description>Test that source attachment doesn't take place when -DperformRelease=true is missing.</description>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  9. maven-compat/src/test/java/org/apache/maven/ProjectDependenciesResolverTest.java

            assertEquals(1, artifactDependencies.size());
        }
    
        @Test
        void testSystemScopeDependencyIsPresentInTheCompileClasspathElements() throws Exception {
            File pom = getProject("it0063");
    
            Properties eps = new Properties();
            eps.setProperty("jre.home", new File(pom.getParentFile(), "jdk/jre").getPath());
    
            MavenSession session = createMavenSession(pom, eps);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/compact/parents.go

    	0x002f, 0x002e, 0x002e, 0x0000, 0x0033, 0x0000, 0x0035, 0x0000,
    	0x0037, 0x0000, 0x0039, 0x0000, 0x003b, 0x0000, 0x0000, 0x003e,
    	// Entry 40 - 7F
    	0x0000, 0x0040, 0x0040, 0x0000, 0x0043, 0x0043, 0x0000, 0x0046,
    	0x0000, 0x0048, 0x0000, 0x0000, 0x004b, 0x004a, 0x004a, 0x0000,
    	0x004f, 0x004f, 0x004f, 0x004f, 0x0000, 0x0054, 0x0054, 0x0000,
    	0x0057, 0x0000, 0x0059, 0x0000, 0x005b, 0x0000, 0x005d, 0x005d,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top