- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 6,157 for aVersion (0.04 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/Version.java
* under the License. */ package org.apache.maven.api; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.Nonnull; /** * A version or meta-version of an artifact or a dependency. * A meta-version is a version suffixed with the {@code SNAPSHOT} keyword. * Versions are usually parsed using the {@link org.apache.maven.api.services.VersionParser} service. * * @since 4.0.0Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 1.5K bytes - Viewed (0) -
.go-version
Carlos Panato <******@****.***> 1764927645 +0100
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Fri Dec 05 09:40:45 UTC 2025 - 7 bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/AbstractArtifactResolutionException.java
sb.append(" mvn install:install-file -DgroupId="); 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.isEmpty()) { sb.append(" -Dclassifier=");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Apr 01 21:22:14 UTC 2025 - 10.1K bytes - Viewed (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
<field> <name>version</name> <version>1.0.0+</version> <type>String</type> <description> The version of the OS to be used to activate a profile. </description> </field> </fields> </class> <class java.clone="deep"> <name>ActivationFile</name> <version>1.0.0+</version> <description>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun May 18 09:15:56 UTC 2025 - 33.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/JvmUtil.java
* For Java 9 and above, returns the major version (e.g., 11 for Java 11). * * @return the Java version number, defaults to 8 if version cannot be determined */ public static int getJavaVersion() { final String javaVersion = System.getProperty("java.version"); int version = 8; if (javaVersion != null) { final String[] split = javaVersion.split("[\\._]");Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/UnresolvableModelException.java
*/ public UnresolvableModelException(String message, String groupId, String artifactId, String version) { super(message); this.groupId = (groupId != null) ? groupId : ""; this.artifactId = (artifactId != null) ? artifactId : ""; this.version = (version != null) ? version : ""; } /** * Creates a new exception with specified causeRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 3.9K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/GAVUtilsTest.java
<artifactId>parent-project</artifactId> <version>1.0.0</version> </parent> <groupId>com.example.child</groupId> <artifactId>child-project</artifactId> <version>2.0.0</version> </project> """; Document document = Document.of(pomXml);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 17.3K bytes - Viewed (0) -
.github/workflows/build.yml
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri Dec 12 04:49:37 UTC 2025 - 18.6K bytes - Viewed (0) -
.github/workflows/test.yml
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri Dec 26 08:53:59 UTC 2025 - 4.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java
*/ @Nonnull Version getVersion(); /** * {@return the version or meta-version of the artifact}. * A meta-version is a version suffixed with the {@code SNAPSHOT} keyword. * Meta-versions are represented in a base version by their symbols (e.g., {@code SNAPSHOT}), * while they are replaced by, for example, the actual timestamp in the {@linkplain #getVersion() version}. */ @NonnullRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 4.6K bytes - Viewed (0)