Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 174 for Only (0.18 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Scope.java

    /**
     * Scope for a dependency
     *
     * @since 4.0.0
     */
    @Experimental
    public enum Scope {
        EMPTY(""),
        COMPILE_ONLY("compile-only"),
        COMPILE("compile"),
        RUNTIME("runtime"),
        PROVIDED("provided"),
        TEST_COMPILE_ONLY("test-compile-only"),
        TEST("test"),
        TEST_RUNTIME("test-runtime"),
        IMPORT("import"); // TODO: v4: remove import scope somehow
    
        private final String id;
    
    Java
    - Registered: Sun Feb 04 03:35:10 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 1.7K bytes
    - Viewed (1)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * Contrarily to the other types of paths, this path is applied to only
         * one specific module. Used for compilation and execution among others.
         *
         * <p><b>Context-sensitive interpretation:</b>
         * This path type makes sense only when a main module is added on the module-path by another dependency.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         * in which case there is one key per sub-directory.
         *
         * <p>This map may contain null values if the constructor was invoked with {@code resolve}
         * parameter set to false. This is more efficient when only the module existence needs to
         * be tested, and module descriptors are not needed.</p>
         *
         * @see #getModuleNames()
         */
        private final Map<Path, String> descriptors;
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/ArtifactDescriptorUtils.java

    import org.eclipse.aether.repository.RemoteRepository;
    import org.eclipse.aether.repository.RepositoryPolicy;
    
    /**
     * <strong>Warning:</strong> This is an internal utility class that is only public for technical reasons, it is not part
     * of the public API. In particular, this class can be changed or deleted without prior notice.
     *
     */
    public class ArtifactDescriptorUtils {
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4K bytes
    - Viewed (0)
  5. apache-maven/src/main/appended-resources/licenses/Apache-2.0.txt

          or other liability obligations and/or rights consistent with this
          License. However, in accepting such obligations, You may act only
          on Your own behalf and on Your sole responsibility, not on behalf
          of any other Contributor, and only if You agree to indemnify,
          defend, and hold each Contributor harmless for any liability
          incurred by, or claims asserted against, such Contributor by reason
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 28 11:47:17 GMT 2020
    - 11.1K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/projects/future-schema-model-version-pom.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
        <modelVersion>4.999.999</modelVersion>
        <!-- this should be a fake "future" version that only has modelVersion understood by us -->
        <coordinates>tests.project:future-model-version</coordinates>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Mon Jun 03 20:33:44 GMT 2019
    - 993 bytes
    - Viewed (0)
  7. api/maven-api-meta/src/main/java/org/apache/maven/api/annotations/NotThreadSafe.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * This annotation indicates that the annotated type is <strong>not</strong> threadsafe
     * and should only be used by a single thread.
     *
     * @see ThreadSafe
     * @since 4.0.0
     */
    @Experimental
    @Documented
    @Retention(RetentionPolicy.CLASS)
    @Target(ElementType.TYPE)
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/plugin-interpolation-reporting/pom.xml

              </plugin>
              <plugin>
                <artifactId>only-active-profile</artifactId>
                <reportSets>
                  <reportSet>
                    <id>Active only ||${project.basedir}||</id>
                    <configuration>
                      <plugin-in-active-profile-only>Active only ||${project.basedir}||</plugin-in-active-profile-only>
                    </configuration>
                  </reportSet>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 12 10:26:40 GMT 2023
    - 4K bytes
    - Viewed (0)
  9. maven-core/src/test/projects/lifecycle-executor/project-with-plugin-level-configuration-only/pom.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>project-plugin-level-configuration-only</artifactId>
      <version>1.0.1</version>
      <build>
        <plugins>
          <plugin>
            <groupId>org.codehaus.modello</groupId>
            <artifactId>modello-maven-plugin</artifactId>
            <version>1.0.1</version>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu May 21 20:14:22 GMT 2009
    - 1.4K bytes
    - Viewed (0)
  10. maven-artifact/src/main/java/org/apache/maven/artifact/resolver/AbstractArtifactResolutionException.java

                sb.append(groupId);
                sb.append(" -DartifactId=");
                sb.append(artifactId);
                sb.append(" -Dversion=");
                sb.append(version);
    
                // insert classifier only if it was used in the artifact
                if (classifier != null && !classifier.equals("")) {
                    sb.append(" -Dclassifier=");
                    sb.append(classifier);
                }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 10.1K bytes
    - Viewed (0)
Back to top