Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for grid (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        public Artifact getArtifact() {
            return artifact;
        }
    
        public void setArtifact(Artifact artifact) {
            this.artifact = artifact;
        }
    
        // TODO I would like to get rid of this. jvz.
        public Model getModel() {
            return model;
        }
    
        /**
         * Returns the project corresponding to a declared parent.
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelTransformerContextBuilder.java

                }
    
                @Override
                public Model getRawModel(Path from, String gId, String aId) {
                    Model model = findRawModel(from, gId, aId);
                    if (model != null) {
                        context.modelByGA.put(new GAKey(gId, aId), new Holder(model));
                        context.modelByPath.put(model.getPomFile(), new Holder(model));
                    }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("https://project.url/download", pom.getValue("distributionManagement/downloadUrl"));
            assertEquals("reloc-gid", pom.getValue("distributionManagement/relocation/groupId"));
            assertEquals("reloc-aid", pom.getValue("distributionManagement/relocation/artifactId"));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

                    constituent.getType(),
                    constituent.getClassifier(),
                    constituent.getVersion());
        }
    
        private static String getId(String gid, String aid, String type, String cls, String ver) {
            return gid + ':' + aid + ':' + type + ((cls != null && !cls.isEmpty()) ? ':' + cls : "") + ':' + ver;
        }
    
        private void callDelegates(
                ClassRealm classRealm,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:53:42 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/apache/maven/core/test/test-extension/1/test-extension-1.jar

    CLASSIFIER; private static final String TYPE = jar; private static final String SCOPE = compile; private static final org.apache.maven.artifact.versioning.VersionRange VERSION; private static final String AID = test-artifact; private static final String GID = test.group; public void MyArtifactFactory(); public org.apache.maven.artifact.Artifact createArtifact(String, String, String, String, String); public org.apache.maven.artifact.Artifact createArtifactWithCl(String, String, String, String, String);...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 4.1K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataResolutionResult.java

    import org.codehaus.plexus.PlexusContainer;
    import org.codehaus.plexus.component.repository.exception.ComponentLookupException;
    
    /**
     * This object is tinted with ClasspathTransformation and GraphConflictResolver.
     * Get rid of them after debugging
     *
     */
    @Deprecated
    public class MetadataResolutionResult {
        MetadataTreeNode treeRoot;
    
        /**
         * these components are initialized on demand by
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java

    import org.apache.maven.settings.Mirror;
    import org.apache.maven.settings.Proxy;
    import org.apache.maven.settings.Server;
    
    /**
     * A resolution request allows you to either use an existing MavenProject, or a coordinate (gid:aid:version)
     * to process a POMs dependencies.
     *
     */
    @Deprecated
    public class ArtifactResolutionRequest implements RepositoryRequest {
        private static final String LS = System.lineSeparator();
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 8.2K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

        void testRemoteResourcesPlugin() throws Exception {
            // TODO turn an equivalent back on when the RR plugin is released.
    
            /*
    
            This will not work until the RR plugin is released to get rid of the binding to the reporting exception which is a mistake.
    
            This happens after removing the reporting API from the core:
    
            java.lang.NoClassDefFoundError: org/apache/maven/reporting/MavenReportException
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 13.1K bytes
    - Viewed (0)
Back to top