Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 270 for Packaging (0.15 seconds)

  1. .ci/jobs.t/elastic+elasticsearch+pull-request+packaging-tests-unix.yml

              values:
                - centos-7-packaging
                - centos-8-packaging
                - debian-9-packaging
                - debian-10-packaging
                - debian-11-packaging
                - opensuse-15-1-packaging
                - oraclelinux-7-packaging
                - oraclelinux-8-packaging
                - sles-12-packaging
                - sles-15-packaging
                - ubuntu-18.04-packaging
                - ubuntu-20.04-packaging
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Sep 14 17:35:45 GMT 2021
    - 2.2K bytes
    - Click Count (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Packaging.java

    import org.apache.maven.api.model.PluginContainer;
    
    /**
     * Represents the packaging of a Maven project.
     *
     * <p>The {@code Packaging} class defines the type of artifact that a Maven project produces during the build process.
     * The packaging type determines the structure of the project's output and how Maven will treat the resulting artifact.</p>
     *
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 3.2K bytes
    - Click Count (0)
  3. .ci/jobs.t/elastic+elasticsearch+pull-request+packaging-tests-unix-sample.yml

    ---
    - job:
        name: "elastic+elasticsearch+pull-request+packaging-tests-unix-sample"
        display-name: "elastic / elasticsearch - pull request packaging-tests-unix-sample"
        description: "Testing of Elasticsearch pull requests - packaging-tests-unix-sample"
        project-type: matrix
        node: master
        scm:
          - git:
              refspec: "+refs/pull/${ghprbPullId}/*:refs/remotes/origin/pr/${ghprbPullId}/*"
              branches:
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 01 20:27:05 GMT 2021
    - 1.8K bytes
    - Click Count (0)
  4. .ci/jobs.t/elastic+elasticsearch+pull-request+packaging-tests-windows-nojdk.yml

    - job:
        name: "elastic+elasticsearch+pull-request+packaging-tests-windows-nojdk"
        display-name: "elastic / elasticsearch - pull request packaging-tests-windows-nojdk"
        description: "Testing of Elasticsearch pull requests - packaging-tests-windows-nojdk"
        # We use a hard-coded workspace directory here to avoid hitting windows path length limits
        child-workspace: "C:\\Users\\jenkins\\workspace\\pr-packaging-windows\\${BUILD_NUMBER}"
        project-type: matrix
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 24 19:49:58 GMT 2021
    - 2.3K bytes
    - Click Count (0)
  5. .ci/jobs.t/elastic+elasticsearch+pull-request+packaging-tests-windows-sample.yml

    - job:
        name: "elastic+elasticsearch+pull-request+packaging-tests-windows-sample"
        display-name: "elastic / elasticsearch - pull request packaging-tests-windows-sample"
        description: "Testing of Elasticsearch pull requests - packaging-tests-windows-sample"
        # We use a hard-coded workspace directory here to avoid hitting windows path length limits
        child-workspace: "C:\\Users\\jenkins\\workspace\\pr-packaging-windows\\${BUILD_NUMBER}"
        project-type: matrix
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 24 18:50:27 GMT 2021
    - 2.1K bytes
    - Click Count (0)
  6. .ci/jobs.t/elastic+elasticsearch+pull-request+packaging-tests-windows-sample-nojdk.yml

        name: "elastic+elasticsearch+pull-request+packaging-tests-windows-sample-nojdk"
        display-name: "elastic / elasticsearch - pull request packaging-tests-windows-sample-nojdk"
        description: "Testing of Elasticsearch pull requests - packaging-tests-windows-sample-nojdk"
        # We use a hard-coded workspace directory here to avoid hitting windows path length limits
        child-workspace: "C:\\Users\\jenkins\\workspace\\pr-packaging-windows\\${BUILD_NUMBER}"
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 24 19:49:58 GMT 2021
    - 2.2K bytes
    - Click Count (0)
  7. src/packaging/common/packaging.properties

    # like in rpm/packaging.properties and deb/packaging.properties.
    
    # Environment file
    packaging.env.file=
    
    # Default configuration directory and file to use in bin/plugin script
    
    # Default values for min/max heap memory allocated to fess java process
    packaging.fess.heap.min=256m
    packaging.fess.heap.max=1g
    
    # Specifies the maximum file descriptor number
    packaging.os.max.open.files=65535
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 797 bytes
    - Click Count (0)
  8. src/packaging/deb/packaging.properties

    #
    
    # Environment file
    packaging.env.file=/etc/default/fess
    
    # Simple marker to check that properties are correctly overridden
    packaging.type=deb
    
    # Custom header for package scripts
    packaging.scripts.header=#!/bin/sh${line.separator}set -e
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 401 bytes
    - Click Count (0)
  9. src/packaging/rpm/packaging.properties

    #
    
    # Environment file
    packaging.env.file=/etc/sysconfig/fess
    
    # Default configuration directory and file to use in bin/plugin script
    
    # Simple marker to check that properties are correctly overridden
    packaging.type=rpm
    
    # Custom header for package scripts
    packaging.scripts.header=
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 420 bytes
    - Click Count (1)
  10. compat/maven-artifact/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerMock.java

        }
    
        @Override
        public String getClassifier() {
            return classifier;
        }
    
        public void setPackaging(String packaging) {
            this.packaging = packaging;
        }
    
        @Override
        public String getPackaging() {
            return packaging;
        }
    
        public void setIncludesDependencies(boolean includesDependencies) {
            this.includesDependencies = includesDependencies;
        }
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 2.4K bytes
    - Click Count (0)
Back to Top