Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for samples (0.08 sec)

  1. maven-core/src/test/resources/projects/transform/before.pom

            <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
          </properties>
        </profile>
        <profile>
          <id>file</id>
          <activation>
            <file>
              <exists>simple.xml</exists>
            </file>
          </activation>
          <properties>
            <profile.file>activated</profile.file>
          </properties>
        </profile>
      </profiles>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 07:51:37 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. maven-embedder/pom.xml

          <groupId>ch.qos.logback</groupId>
          <artifactId>logback-classic</artifactId>
          <optional>true</optional>
        </dependency>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-simple</artifactId>
          <optional>true</optional>
        </dependency>
        <dependency>
          <groupId>org.jline</groupId>
          <artifactId>jline</artifactId>
        </dependency>
    
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

              <description>The identifier for this artifact that is unique within the group given by the
                group ID. An artifact is something that is either produced or used by a project.
                Examples of artifacts produced by Maven for a project include: JARs, source and binary
                distributions, and WARs.</description>
              <type>String</type>
            </field>
            <field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/consumer/simple/pom.xml

      <version>0.9-${changelist}-SNAPSHOT</version>
      <packaging>pom</packaging>
      <name>Multi Chapter Parent Project</name>
    
      <!-- Optimized from https://github.com/sonatype/maven-example-en/tree/master/examples/ch-multi -->
      <modules>
        <module>simple-parent</module>
      </modules>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/consumer/simple/simple-parent/pom.xml

      </parent>
      <artifactId>simple-parent</artifactId>
      <packaging>pom</packaging>
      <name>Multi Chapter Simple Parent Project</name>
    
      <modules>
        <module>simple-weather</module>
        <module>simple-webapp</module>
    
        <!-- On purpose at the end, project graph is responsible for ordering -->
        <!-- Build/consumer should not be effected by reverse order -->
        <module>simple-testutils</module>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/consumer/simple/simple-parent/simple-webapp/pom.xml

        <artifactId>simple-parent</artifactId>
      </parent>
    
      <artifactId>simple-webapp</artifactId>
      <name>Multi Chapter Simple Web Application Project</name>
      <dependencies>
        <dependency>
          <groupId>org.sonatype.mavenbook.multi</groupId>
          <artifactId>simple-weather</artifactId>
        </dependency>
      </dependencies>
      <build>
        <finalName>simple-webapp</finalName>
        <pluginManagement>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/projects/transform/after.pom

          <properties>
            <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
          </properties>
        </profile>
        <profile>
          <id>file</id>
          <activation>
            <file>
              <exists>simple.xml</exists>
            </file>
          </activation>
          <properties>
            <profile.file>activated</profile.file>
          </properties>
        </profile>
      </profiles>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 07:51:37 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/consumer/simple/simple-parent/simple-testutils/pom.xml

      <parent>
        <groupId>org.sonatype.mavenbook.multi</groupId>
        <artifactId>utils-parent</artifactId>
        <relativePath>../utils-parent/pom.xml</relativePath>
      </parent>
      <artifactId>simple-testutils</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. apache-maven/src/assembly/maven/conf/settings.xml

     |                 ${maven.conf}/settings.xml.
     |
     |                 NOTE: This location can be overridden with the CLI option:
     |
     |                 -gs /path/to/global/settings.xml
     |
     | The sections in this sample file are intended to give you a running start at
     | getting the most out of your Maven installation. Where appropriate, the default
     | values (values used when the setting is not specified) are provided.
     |
     |-->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:06:01 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. maven-resolver-provider/pom.xml

          <groupId>org.mockito</groupId>
          <artifactId>mockito-core</artifactId>
          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-simple</artifactId>
          <scope>test</scope>
        </dependency>
      </dependencies>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top