Search Options

Results per page
Sort
Preferred Languages
Advance

Results 401 - 410 of 685 for pluginId (0.09 sec)

  1. compat/pom.xml

        <version>4.0.0-beta-6-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-compat-modules</artifactId>
      <packaging>pom</packaging>
    
      <name>Maven Compatibility Modules</name>
    
      <modules>
        <module>maven-plugin-api</module>
        <module>maven-builder-support</module>
        <module>maven-model</module>
        <module>maven-model-builder</module>
        <module>maven-settings</module>
        <module>maven-settings-builder</module>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/DuplicateParameterException.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.plugin.descriptor;
    
    /**
     * DuplicateParameterException
     */
    public class DuplicateParameterException extends InvalidPluginDescriptorException {
    
        public DuplicateParameterException(String message) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. .github/workflows/maven.yml

              java-version: 17
              distribution: 'temurin'
              cache: 'maven'
    
          - name: Set up Maven
            run:
              mvn --errors --batch-mode --show-version org.apache.maven.plugins:maven-wrapper-plugin:3.3.2:wrapper "-Dmaven=3.9.7"
    
          - name: Build with Maven
            run: ./mvnw verify -e -B -V -DdistributionFileName=apache-maven
    
          - name: Upload built Maven
            uses: actions/upload-artifact@v4
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. build-logic/buildquality/src/main/kotlin/gradlebuild.arch-test.gradle.kts

     * limitations under the License.
     */
    
    import com.gradle.develocity.agent.gradle.test.DevelocityTestConfiguration
    import gradlebuild.archtest.PackageCyclesExtension
    
    plugins {
        `jvm-test-suite`
        id("gradlebuild.dependency-modules")
        id("gradlebuild.code-quality")
    }
    
    val packageCyclesExtension = extensions.create<PackageCyclesExtension>("packageCycles").apply {
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Jul 03 16:00:02 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ListenableFuture.java

     * `-android` "flavors.")
     *
     * (We could consider releasing a listenablefuture:1.0.1 someday. But we would want to look into how
     * that affects users, especially users of the Android Gradle Plugin, since the plugin developers
     * put in a special hack for us: https://issuetracker.google.com/issues/131431257)
     */
    @DoNotMock("Use the methods in Futures (like immediateFuture) or SettableFuture")
    @ElementTypesAreNonnullByDefault
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md

    Historically, Gradle has shipped with some Groovy types in very prominent APIs.
    This required the Kotlin DSL to add special integration to work with Groovy closures.
    This has also forced plugins written in languages other than Groovy to use Groovy types for some APIs.
    
    When the Kotlin DSL was introduced, we made an effort to add non-Groovy equivalents for all APIs.
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Sun Mar 10 20:38:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/LocalRepository.java

    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * <p>The <dfn>local repository</dfn> is a directory on the developer's machine where
     * Maven stores all the downloaded artifacts (such as dependencies, plugins,
     * and project artifacts). When Maven builds a project, it first checks the
     * local repository to see if the required artifacts are already available.
     * If the artifacts are found locally, Maven uses them directly, which speeds
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Aug 27 21:13:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. compat/maven-compat/src/main/java/org/apache/maven/artifact/installer/ArtifactInstaller.java

         * @param localRepository the local repository to install into
         * @throws ArtifactInstallationException if an error occurred installing the artifact
         * @deprecated to be removed before 2.0 after the install/deploy plugins use the alternate
         *             method
         */
        @Deprecated
        void install(String basedir, String finalName, Artifact artifact, ArtifactRepository localRepository)
                throws ArtifactInstallationException;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-defaults.gradle.kts

     * limitations under the License.
     */
    
    import gradlebuild.basics.gradleProperty
    import gradlebuild.identity.extension.ModuleIdentityExtension
    import org.gradle.api.publish.maven.MavenPublication
    
    plugins {
        id("publishing")
    }
    
    val artifactoryUrl
        get() = System.getenv("GRADLE_INTERNAL_REPO_URL") ?: ""
    
    val artifactoryUserName
        get() = project.providers.gradleProperty("artifactoryUserName").orNull
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Sep 25 08:20:22 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/InvalidParameterException.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.plugin.descriptor;
    
    /**
     */
    public class InvalidParameterException extends InvalidPluginDescriptorException {
        public InvalidParameterException(String element, int i) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top