- Sort Score
- Result 10 results
- Languages All
Results 471 - 480 of 974 for Deprecated (0.07 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/ProjectDependenciesResolver.java
import org.apache.maven.execution.MavenSession; import org.apache.maven.project.MavenProject; /** * @deprecated As of 3.2.2, and there is no direct replacement. This is an internal class which was not marked as such, * but should have been. * */ @Deprecated public interface ProjectDependenciesResolver { /** * Resolves the transitive dependencies of the specified project. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/TransportException.java
* @param rootCause */ public TransportException ( String msg, Throwable rootCause ) { super(msg, rootCause); } /** * * @return root cause */ @Deprecated public Throwable getRootCause () { return getCause(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactCollector.java
import javax.inject.Singleton; /** * Artifact collector - takes a set of original artifacts and resolves all of the best versions to use * along with their metadata. No artifacts are downloaded. */ @Deprecated @Named @Singleton public class DefaultArtifactCollector extends org.apache.maven.repository.legacy.resolver.DefaultLegacyArtifactCollector
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/ConflictResolverNotFoundException.java
* under the License. */ package org.apache.maven.repository.legacy.resolver.conflict; /** * Indicates that a specified conflict resolver implementation could not be found. * * @since 3.0 */ @Deprecated public class ConflictResolverNotFoundException extends Exception { // constants -------------------------------------------------------------- /** The serial version ID. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataResolutionException.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.repository.metadata; /** * MetadataResolutionException */ @Deprecated public class MetadataResolutionException extends Exception { public MetadataResolutionException() { // TODO Auto-generated constructor stub }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/Maven.java
/** * The main Maven execution entry point, which will execute a full Maven execution session. * * @see org.apache.maven.execution.MavenSession */ public interface Maven { @Deprecated @SuppressWarnings("checkstyle:constantname") String POMv4 = "pom.xml"; MavenExecutionResult execute(MavenExecutionRequest request);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
docs/de/docs/tutorial/schema-extra-example.md
Zuvor unterstützte es nur das Schlüsselwort `example` mit einem einzigen Beispiel. Dieses wird weiterhin von OpenAPI 3.1.0 unterstützt, ist jedoch <abbr title="deprecated – obsolet, veraltet: Es soll nicht mehr verwendet werden">deprecated</abbr> und nicht Teil des JSON Schema Standards. Wir empfehlen Ihnen daher, von `example` nach `examples` zu migrieren. 🤓 Mehr erfahren Sie am Ende dieser Seite. ///
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 13.2K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/filter/OrArtifactFilterTest.java
import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertTrue; /** * Tests {@link OrArtifactFilter}. * */ @Deprecated class OrArtifactFilterTest { private ArtifactFilter newSubFilter() { return artifact -> false; } @Test void testEquals() { OrArtifactFilter filter1 = new OrArtifactFilter();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/InvalidRepositoryException.java
} protected InvalidRepositoryException(String message, String repositoryId, ComponentLookupException cause) { super(message, cause); this.repositoryId = repositoryId; } @Deprecated public InvalidRepositoryException(String message, Throwable t) { super(message, t); this.repositoryId = null; } public InvalidRepositoryException(String message, String repositoryId) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/factory/DefaultArtifactFactoryTest.java
import org.apache.maven.artifact.versioning.VersionRange; import org.codehaus.plexus.testing.PlexusTest; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertEquals; @PlexusTest @Deprecated class DefaultArtifactFactoryTest { @Inject ArtifactFactory factory; @Test void testPropagationOfSystemScopeRegardlessOfInheritedScope() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0)