Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for playframework (0.2 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/PlayPluginSmokeTest.groovy

        def 'build basic Play project'() {
            given:
            useSample("play-example")
            buildFile << """
                plugins {
                    id 'org.gradle.playframework' version '${TestedVersions.playframework}'
                }
    
                repositories {
                    ${mavenCentralRepository()}
                    ${RepoScriptBlockUtil.lightbendMavenRepositoryDefinition()}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/build.gradle.old

    plugins {
        id 'org.gradle.playframework' version 'PLUGIN_VERSION'
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 111 bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/build.gradle

    plugins {
        id 'org.gradle.playframework' version 'PLUGIN_VERSION'
    }
    
    // repositories added in PlayApp class
    dependencies {
        implementation "com.typesafe.play:play-guice_2.13:2.7.9"
        implementation "ch.qos.logback:logback-classic:1.2.3"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 247 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/core-plugins/play_plugin.adoc

    [[play_plugin]]
    = Building Play applications
    
    [CAUTION]
    ====
    Play web application support was deprecated in Gradle 5 and replaced by an external Play plugin in Gradle 6.
    Please use the new https://gradle.github.io/playframework[Gradle Play Plugin], available from the plugin portal, instead.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 937 bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/conf/application.conf

    # ~~~~~
    
    # Secret key
    # ~~~~~
    # The secret key is used to secure cryptographics functions.
    #
    # This must be changed for production, but we recommend not changing it in this file.
    #
    # See http://www.playframework.com/documentation/latest/ApplicationSecret for more details.
    play.http.secret.key="dxbAjiDdqlIV83LY<:;hSxql?tG`CPNgXEXt2asjk>lYQ<xfR`GsdeFJ@uuYBH=0"
    
    # Global object class
    # ~~~~~
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

            static gradleVersions = "0.51.0"
    
            // https://plugins.gradle.org/plugin/org.gradle.playframework
            static playframework = "0.13" // Can't upgrade to 0.14 as it breaks CC compat - see https://github.com/gradle/playframework/issues/184
    
            // https://plugins.gradle.org/plugin/net.ltgt.errorprone
            static errorProne = "3.1.0"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. test-site/conf/application.conf

    # ~~~~~
    
    # Secret key
    # ~~~~~
    # The secret key is used to secure cryptographics functions.
    #
    # This must be changed for production, but we recommend not changing it in this file.
    #
    # See http://www.playframework.com/documentation/latest/ApplicationSecret for more details.
    application.secret="0IQMdC<sFZR?TrOJg1AKDu=PL3p@XhQ_g4<PeoxaQMJf3^pwe<?yJvq;0tECs:@r"
    
    # The application languages
    # ~~~~~
    application.langs="en"
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 2K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/fixtures/external/PlayApp.groovy

            def gradleBuild = sourceFile("", buildFileName)
            def gradleBuildWithRepositories = gradleBuild.content.replace("PLUGIN_VERSION", AbstractSmokeTest.TestedVersions.playframework).concat """
                allprojects {
                    ${Repositories.PLAY_REPOSITORIES}
                }
            """
            return new SourceFile(gradleBuild.path, "build.gradle", gradleBuildWithRepositories)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderUtils.java

            CompositeStoppable.stoppable(classLoader).stop();
        }
    
        // Used by the Gradle Play Framework Plugin. See:
        // https://github.com/gradle/playframework/blob/master/src/main/java/org/gradle/playframework/tools/internal/run/PlayWorkerServer.java#L72
        public static void disableUrlConnectionCaching() {
            // fix problems in updating jar files by disabling default caching of URL connections.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    ==== The Play plugins have been removed
    
    The deprecated Play plugin has been removed.
    An external replacement, the link:https://gradle.github.io/playframework[Play Framework plugin], is available from the plugin portal.
    
    ==== Method `AbstractCompile.compile()` method has been removed
    
    The abstract method `compile()` is no longer declared by `AbstractCompile`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
Back to top