Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,334 for artifactid (0.2 sec)

  1. maven-model-builder/src/test/resources/poms/validation/raw-model/missing-artifactId-pluginManagement.xml

      <modelVersion>4.0.0</modelVersion>
      <groupId>com.example.group</groupId>
      <artifactId>testinvalidpom</artifactId>
      <version>0.0.1-SNAPSHOT</version>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>the.groupId.Of.This.Plugin</groupId>
              <artifactId/>
            </plugin>
          </plugins>
        </pluginManagement>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/resources/poms/validation/missing-plugin-dependency-artifactId.xml

    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>aid</artifactId>
      <groupId>gid</groupId>
      <version>1.0</version>
    
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-it-plugin</artifactId>
            <version>1.0</version>
            <dependencies>
              <dependency>
                <groupId>test</groupId>
                <!-- artifact id missing -->
                <version>2.0</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 27 11:09:54 UTC 2010
    - 1.2K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/poms/validation/missing-plugin-artifactId-pom.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>foo</artifactId>
      <groupId>foo</groupId>
      <version>99.44</version>
      <packaging>bleh</packaging>
      <build>
        <plugins>
          <plugin>
            <version>1.0</version>
          </plugin>
        </plugins>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 27 20:48:13 UTC 2009
    - 1K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-artifactId-urls-child.xml

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>inheritance</groupId>
        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <artifactId>child-artifact-id</artifactId>
      <name>Model urls inheritance test child</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-artifactId-urls-expected.xml

        <groupId>inheritance</groupId>
        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <groupId>inheritance</groupId>
      <artifactId>child-artifact-id</artifactId>
      <version>11-SNAPSHOT</version>
      <name>Model urls inheritance test child</name>
      <description>Flat directory structure case: module = ../child-artifact-id + child directory path != child-artifact-id</description>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2K bytes
    - Viewed (0)
  6. maven-model-builder/src/test/resources/poms/validation/missing-report-artifactId-pom.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>foo</artifactId>
      <groupId>foo</groupId>
      <version>99.44</version>
      <packaging>bleh</packaging>
      <reporting>
        <plugins>
          <plugin>
    
          </plugin>
        </plugins>
      </reporting>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 27 20:48:13 UTC 2009
    - 1K bytes
    - Viewed (0)
  7. maven-model-builder/src/test/resources/poms/validation/missing-dependency-artifactId-pom.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>foo</artifactId>
      <groupId>foo</groupId>
      <version>99.44</version>
      <packaging>bleh</packaging>
      <dependencies>
        <dependency>
          <groupId>groupId</groupId>
          <version>1.0</version>
        </dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 27 20:48:13 UTC 2009
    - 1K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/poms/inheritance/module-path-not-artifactId-expected.xml

      <parent>
        <groupId>inheritance</groupId>
        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <groupId>inheritance</groupId>
      <artifactId>child-artifact-id</artifactId>
      <version>11-SNAPSHOT</version>
      <name>Model inheritance test parent: module directory != artifactId</name>
      <description>
        artifactId == "child-artifact-id"
        but expect path on SCM and site == "child"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/resources/poms/inheritance/module-path-not-artifactId-child.xml

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>inheritance</groupId>
        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <artifactId>child-artifact-id</artifactId>
      <name>Model inheritance test parent: module directory != artifactId</name>
      <description>
        artifactId == "child-artifact-id"
        but expect path on SCM and site == "child"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/resources/poms/validation/missing-artifactId-pom.xml

    Benjamin Bentmann <******@****.***> 1243457293 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 27 20:48:13 UTC 2009
    - 907 bytes
    - Viewed (0)
Back to top