Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 232 for getGroupSid (0.29 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPomRelocation.java

            artifactId = objectFactory.property(String.class);
            version = objectFactory.property(String.class);
            message = objectFactory.property(String.class);
        }
    
        @Override
        public Property<String> getGroupId() {
            return groupId;
        }
    
        @Override
        public Property<String> getArtifactId() {
            return artifactId;
        }
    
        @Override
        public Property<String> getVersion() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/version/PluginVersionNotFoundException.java

            super("The plugin '" + groupId + ":" + artifactId + "' does not exist or no valid version could be found");
    
            this.groupId = groupId;
            this.artifactId = artifactId;
        }
    
        public String getGroupId() {
            return groupId;
        }
    
        public String getArtifactId() {
            return artifactId;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenDependency.java

     */
    @Deprecated
    @HasInternalProtocol
    public interface MavenDependency {
        /**
         * The groupId value for this dependency.
         */
        String getGroupId();
    
        /**
         * The artifactId value for this dependency.
         */
        String getArtifactId();
    
        /**
         * The version value for this dependency.
         */
        String getVersion();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomRelocation.java

     *
     * @since 4.8
     * @see MavenPom
     * @see MavenPomDistributionManagement
     */
    public interface MavenPomRelocation {
    
        /**
         * The new group ID of the artifact.
         */
        Property<String> getGroupId();
    
        /**
         * The new artifact ID of the artifact.
         */
        Property<String> getArtifactId();
    
        /**
         * The new version of the artifact.
         */
        Property<String> getVersion();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/Exclusion.java

    /**
     * A dependency exclusion.
     *
     * @since 4.0.0
     * @see DependencyCoordinate#getExclusions()
     */
    @Experimental
    public interface Exclusion {
        @Nullable
        String getGroupId();
    
        @Nullable
        String getArtifactId();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Nov 17 15:52:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

            PluginDescriptor pluginDescriptor = mojoDescriptor.getPluginDescriptor();
            assertNotNull(pluginDescriptor);
            assertEquals("org.apache.maven.its.plugins", pluginDescriptor.getGroupId());
            assertEquals("maven-it-plugin", pluginDescriptor.getArtifactId());
            assertEquals("0.1", pluginDescriptor.getVersion());
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReader.java

            @Override
            public MavenDependencyKey getId() {
                return new MavenDependencyKey(getGroupId(), getArtifactId(), getType(), getClassifier());
            }
    
            /* (non-Javadoc)
             * @see org.apache.ivy.plugins.parser.m2.PomDependencyMgt#getGroupId()
             */
            @Override
            public String getGroupId() {
                String val = getFirstChildText(depElement, GROUP_ID);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/ArtifactDescriptorReaderDelegate.java

            if (system) {
                props = Collections.singletonMap(MavenArtifactProperties.LOCAL_PATH, dependency.getSystemPath());
            }
    
            Artifact artifact = new DefaultArtifact(
                    dependency.getGroupId(),
                    dependency.getArtifactId(),
                    dependency.getClassifier(),
                    null,
                    dependency.getVersion(),
                    props,
                    stereotype);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractorTest.java

         */
        @Test
        public void testArtifactMap() throws Exception {
            assertEquals(
                    "g0",
                    ((Artifact) ReflectionValueExtractor.evaluate("project.artifactMap(g0:a0:c0)", project)).getGroupId());
            assertEquals(
                    "a1",
                    ((Artifact) ReflectionValueExtractor.evaluate("project.artifactMap(g1:a1:c1)", project))
                            .getArtifactId());
            assertEquals(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomArtifactTransformer.java

                ArrayList<Artifact> result = new ArrayList<>(artifacts);
                for (Artifact main : mains) {
                    result.remove(main);
                    result.add(new DefaultArtifact(
                            main.getGroupId(),
                            main.getArtifactId(),
                            BUILD_POM_CLASSIFIER,
                            main.getExtension(),
                            main.getVersion(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top