Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,265 for applicationId (0.22 sec)

  1. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/tests/build-server-application.sample.conf

    commands: [{
        executable: gradle
        args: build
        execution-subdirectory: server-application
        # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
        flags: "--warning-mode=none"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 245 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/application_plugin.adoc

    Applying the Application plugin also implicitly applies the <<distribution_plugin.adoc#distribution_plugin,Distribution plugin>>. A `main` distribution is created that packages up the application, including code dependencies and generated start scripts.
    
    
    [[sec:application_usage]]
    == Building JVM applications
    
    To use the application plugin, include the following in your build script:
    
    .Using the application plugin
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/swift-application-variant-task-graph.dot

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // dot -Tpng src/docs/userguide/img/swift-application-variant-task-graph.dot > src/docs/userguide/img/swift-application-variant-task-graph.png
    digraph swiftLibraryVariantTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/templates/spring-boot-web-application/src/main/resources/application.properties

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/cpp-application-variant-task-graph.dot

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // dot -Tpng src/docs/userguide/img/cpp-application-variant-task-graph.dot > src/docs/userguide/img/cpp-application-variant-task-graph.png
    digraph cppLibraryVariantTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/swift-application-variant-task-graph.png

    swift-application-variant-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/cpp-application-variant-task-graph.png

    cpp-application-variant-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/android-application/src/main/kotlin/com.example.android-application.gradle.kts

    plugins {
        id("com.android.application")
        id("org.jetbrains.kotlin.android")
    }
    
    group = "com.example.myproduct"
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(8)
        }
    }
    
    android {
        compileSdkVersion(28)
        defaultConfig {
            minSdkVersion(24)
            targetSdkVersion(28)
        }
        compileOptions {
            sourceCompatibility = JavaVersion.VERSION_1_8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 654 bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/test/groovy/org/gradle/internal/code/DefaultUserCodeApplicationContextTest.groovy

            def supplier = Mock(Supplier)
            UserCodeApplicationContext.Application application1
    
            when:
            context.apply(source, action)
    
            then:
            1 * action.execute(_) >> { UserCodeApplicationId id ->
                application1 = context.current()
            }
    
            when:
            def result = application1.reapply(supplier)
    
            then:
            result == "result"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 27 13:19:04 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

    /**
     * Creates start scripts for launching JVM applications.
     * <p>
     * Example:
     * <pre class='autoTested'>
     * task createStartScripts(type: CreateStartScripts) {
     *   outputDir = file('build/sample')
     *   mainClass = 'org.gradle.test.Main'
     *   applicationName = 'myApp'
     *   classpath = files('path/to/some.jar')
     * }
     * </pre>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top