Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 902 for Spring (0.26 sec)

  1. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java

         */
        String DEFAULT_SELF_COMBINATION_MODE = SELF_COMBINATION_MERGE;
    
        @Nonnull
        String getName();
    
        @Nonnull
        String getNamespaceUri();
    
        @Nonnull
        String getPrefix();
    
        @Nullable
        String getValue();
    
        @Nonnull
        Map<String, String> getAttributes();
    
        @Nullable
        String getAttribute(@Nonnull String name);
    
        @Nonnull
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Nov 27 23:11:34 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingResult.java

         * is thrown so this information is merely meant to assist the user.
         *
         * @return The identifier of the project or an empty string if not known, never {@code null}.
         */
        String getProjectId();
    
        /**
         * Gets the POM file from which the project was built.
         *
         * @return The POM file or {@code null} if unknown.
         */
        File getPomFile();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/MojoException.java

         */
        public MojoException(Object source, String shortMessage, String longMessage) {
            super(shortMessage);
            this.source = source;
            this.longMessage = longMessage;
        }
    
        /**
         * Construct a new <code>MojoExecutionException</code> exception wrapping an underlying <code>Throwable</code>
         * and providing a <code>message</code>.
         */
        public MojoException(String message, Throwable cause) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/graph/ProjectSelector.java

                MavenExecutionRequest request, List<MavenProject> projects, Set<String> projectSelectors) {
            Set<MavenProject> resolvedOptionalProjects = new LinkedHashSet<>();
            Set<String> unresolvedOptionalSelectors = new HashSet<>();
            File baseDirectory = getBaseDirectoryFromRequest(request);
            for (String selector : projectSelectors) {
                Optional<MavenProject> optSelectedProject =
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 5.3K bytes
    - Viewed (0)
  5. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <version>1.0.0+</version>
              <description>Name of the plugin.</description>
              <type>String</type>
            </field>
            <field>
              <name>description</name>
              <version>1.0.0+</version>
              <description>Description of the plugin.</description>
              <type>String</type>
            </field>
            <field>
              <name>groupId</name>
              <version>1.0.0+</version>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Apr 14 17:14:22 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelTransformerContextBuilder.java

                }
    
                @Override
                public String getUserProperty(String key) {
                    return context.userProperties.computeIfAbsent(
                            key, k -> request.getUserProperties().get(key));
                }
    
                @Override
                public Model getRawModel(Path from, String gId, String aId) {
                    Model model = findRawModel(from, gId, aId);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/pom.xml

                <phase>initialize</phase>
                <goals>
                  <goal>reset</goal>
                </goals>
                <configuration>
                  <logFile>target/exec.log</logFile>
                  <string>test</string>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    
      <reporting>
        <plugins>
          <plugin>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 2.8K bytes
    - Viewed (0)
  8. maven-compat/src/main/resources/META-INF/maven/plugin.xml

            <groupId implementation="java.lang.String">${groupId}</groupId>
            <artifactId implementation="java.lang.String">${artifactId}</artifactId>
            <version implementation="java.lang.String">${version}</version>
            <goal implementation="java.lang.String">${goal}</goal>
          </configuration>
          <requirements>
            <requirement>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue May 28 09:19:32 GMT 2013
    - 9.3K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultModelUrlNormalizer.java

                    builder.distributionManagement(dist.withSite(site.withUrl(normalize(site.getUrl()))));
                }
            }
    
            return builder.build();
        }
    
        private String normalize(String url) {
            return urlNormalizer.normalize(url);
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

        }
    
        private static String getId(ClassRealmConstituent constituent) {
            return getId(
                    constituent.getGroupId(),
                    constituent.getArtifactId(),
                    constituent.getType(),
                    constituent.getClassifier(),
                    constituent.getVersion());
        }
    
        private static String getId(String gid, String aid, String type, String cls, String ver) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:53:42 GMT 2024
    - 12.4K bytes
    - Viewed (0)
Back to top