Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,413 for tension (0.34 sec)

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

         * @param version the artifact version, or {@code null} is unspecified
         * @param extension the artifact extension, or {@code null} is unspecified
         * @return coordinate used to point to the artifact
         *
         * @see org.apache.maven.api.services.ArtifactCoordinateFactory#create(Session, String, String, String, String)
         */
        @Nonnull
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  2. maven-core/src/main/mdo/extension.mdo

      <id>extension</id>
      <name>ExtensionDescriptor</name>
      <description><![CDATA[
        Extension descriptor, stored in <code>META-INF/maven/extension.xml</code> in an extension's jar artifact to
        precisely control parts of the extension and dependencies to expose in the API class loader.
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/projects/future-model-version-pom.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
        <modelVersion>4.9.1</modelVersion>
        <groupId>tests.project</groupId>
        <artifactId>future-model-version</artifactId>
        <version>1</version>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Mon Sep 11 16:17:26 GMT 2023
    - 939 bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/apache/maven/core/test/test-extension/1/test-extension-1.pom.md5

    Guillaume Nodet <******@****.***> 1664700085 +0200
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 32 bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/Version.java

    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * A version usually parsed using the {@link org.apache.maven.api.services.VersionParser} service.
     *
     * @since 4.0.0
     * @see org.apache.maven.api.services.VersionParser#parseVersion(String)
     * @see org.apache.maven.api.Session#parseVersion(String)
     */
    @Experimental
    public interface Version extends Comparable<Version> {
        /**
         * Returns a string representation of this version.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinateFactoryRequest.java

            return ArtifactCoordinateFactoryRequest.builder()
                    .session(nonNull(session, "session"))
                    .groupId(groupId)
                    .artifactId(artifactId)
                    .version(version)
                    .extension(extension)
                    .build();
        }
    
        @Nonnull
        static ArtifactCoordinateFactoryRequest build(
                @Nonnull Session session,
                String groupId,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 18 10:30:20 GMT 2023
    - 7.4K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java

        }
    
        private Project project(Artifact artifact) {
            return session.getService(ProjectBuilder.class)
                    .build(ProjectBuilderRequest.builder()
                            .session(session)
                            .path(session.getPathForLocalArtifact(artifact))
                            .processPlugins(false)
                            .build())
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 9.9K bytes
    - Viewed (2)
  8. maven-core/src/main/java/org/apache/maven/ReactorReader.java

        // projectId -> Deque<lifecycle>
        private final Map<String, Deque<String>> lifecycles = new ConcurrentHashMap<>();
    
        @Inject
        ReactorReader(MavenSession session) {
            this.session = session;
            this.repository = new WorkspaceRepository("reactor", null);
        }
    
        //
        // Public API
        //
    
        public WorkspaceRepository getRepository() {
            return repository;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/session/scope/SessionScopeProxyTest.java

        @Named("scoped")
        @SessionScoped
        @Typed
        static class MySessionScopedBean implements BeanItf {
            @Inject
            Session session;
    
            @Inject
            BeanItf2 anotherBean;
    
            public Session getSession() {
                return session;
            }
    
            public BeanItf2 getAnotherBean() {
                return anotherBean;
            }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 12:52:20 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

            return artifactFactory.createParentArtifact(groupId, artifactId, version);
        }
    
        public Artifact createPluginArtifact(Plugin plugin) {
            String version = plugin.getVersion();
            if (version == null || version.isEmpty()) {
                version = "RELEASE";
            }
    
            VersionRange versionRange;
            try {
                versionRange = VersionRange.createFromVersionSpec(version);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
Back to top