Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 726 for Packaging (0.22 sec)

  1. 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
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 401 bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Packaging.java

    /**
     * Interface representing a Maven project packaging.
     * <p>
     * TODO: define how to plug in new packaging definitions using the SPI.
     *   the packaging are currently defined by Maven 3 {@code Provider<LifecycleMapping>}
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface Packaging extends ExtensibleEnum {
        /**
         * The packaging id.
         */
        @Nonnull
        String id();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. 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=
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 420 bytes
    - Viewed (0)
  4. 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
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 797 bytes
    - Viewed (0)
  5. tools/packaging/packaging.mk

    		/var/lib/istio/envoy/sidecar.env
    
    $(foreach DEST,$(ISTIO_DEB_DEST),\
            $(eval ${TARGET_OUT_LINUX}/istio-sidecar.deb:   tools/packaging/common/$(notdir $(DEST))) \
            $(eval SIDECAR_FILES+=${REPO_ROOT}/tools/packaging/common/$(notdir $(DEST))=$(DEST)))
    
    SIDECAR_FILES+=${REPO_ROOT}/tools/packaging/common/envoy_bootstrap.json=/var/lib/istio/envoy/envoy_bootstrap_tmpl.json
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 19:54:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. maven-model-builder/src/test/resources/poms/validation/invalid-aggregator-packaging-pom.xml

    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>foo</artifactId>
      <groupId>foo</groupId>
      <version>99.44</version>
      <packaging>bleh</packaging>
    
      <modules>
        <module>test-module</module>
      </modules>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 997 bytes
    - Viewed (0)
  7. build-logic/packaging/src/main/kotlin/gradlebuild.distribution.packaging.gradle.kts

    Jendrik Johannes <******@****.***> 1607501645 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 830 bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomPackagingIntegTest.groovy

            mavenModule.assertPublished()
            mavenModule.parsedPom.packaging == 'foo'
            mavenModule.assertArtifactsPublished("publishTest-1.9.txt", "publishTest-1.9.pom")
        }
    
        def "can specify packaging for known jar packaging without changing artifact extension"() {
            given:
            createBuildScripts """
                pom.packaging "ejb"
    
                artifact("content.txt") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserBomTest.groovy

        def "a pom file with packaging=pom is a bom - dependencies declared in dependencyManagement block are treated as optional non-transitive dependencies"() {
            given:
            pomFile << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>group-a</groupId>
        <artifactId>bom</artifactId>
        <version>1.0</version>
        <packaging>pom</packaging>
    
        <dependencyManagement>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  10. pom.xml

    		<packaging.fess.log.dir>/var/log/fess</packaging.fess.log.dir>
    		<packaging.fess.temp.dir>/var/tmp/fess</packaging.fess.temp.dir>
    		<packaging.fess.extension.dir>${packaging.fess.home.dir}/extension</packaging.fess.extension.dir>
    		<packaging.fess.user>fess</packaging.fess.user>
    		<packaging.fess.group>fess</packaging.fess.group>
    		<packaging.fess.pid.dir>/var/run/fess</packaging.fess.pid.dir>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
Back to top