Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for ext (0.14 sec)

  1. build-logic-commons/build-platform/build.gradle.kts

            api("com.gradle:develocity-gradle-plugin:3.17.2") // Sync with `settings.gradle.kts`
            api("com.gradle.publish:plugin-publish-plugin:1.2.1")
            api("gradle.plugin.org.jetbrains.gradle.plugin.idea-ext:gradle-idea-ext:1.0.1")
            api("me.champeau.gradle:japicmp-gradle-plugin:0.4.1")
            api("me.champeau.jmh:jmh-gradle-plugin:0.7.2")
            api("org.asciidoctor:asciidoctor-gradle-jvm:4.0.2")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 22 05:34:03 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/repositories-extensions.kt

    
    fun RepositoryHandler.googleApisJs() {
        ivy {
            name = "googleApisJs"
            setUrl("https://ajax.googleapis.com/ajax/libs")
            patternLayout {
                artifact("[organization]/[revision]/[module].[ext]")
                ivy("[organization]/[revision]/[module].xml")
            }
            metadataSources {
                artifact()
            }
        }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 1K bytes
    - Viewed (0)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioProvisioningPlugin.kt

                        url = uri("https://redirector.gvt1.com/edgedl/android/studio/ide-zips")
                        patternLayout {
                            artifact("[revision]/[artifact]-[revision]-[ext]")
                        }
                        metadataSources { artifact() }
                        content {
                            includeGroup("android-studio")
                        }
                    }
                }
    
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Fri Dec 22 13:46:27 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  4. build-logic/idea/src/main/kotlin/gradlebuild.ide.gradle.kts

    import gradlebuild.basics.repoRoot
    import org.gradle.plugins.ide.idea.model.IdeaProject
    import org.jetbrains.gradle.ext.CopyrightConfiguration
    import org.jetbrains.gradle.ext.ProjectSettings
    import org.jetbrains.gradle.ext.Remote
    import org.jetbrains.gradle.ext.RunConfiguration
    
    plugins {
        id("org.jetbrains.gradle.plugin.idea-ext")
    }
    
    object GradleCopyright {
        const val profileName = "ASL2"
        const val keyword = "Copyright"
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Jun 26 15:42:59 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  5. build-logic/idea/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin that configures IntelliJ's idea-ext plugin"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("gradle.plugin.org.jetbrains.gradle.plugin.idea-ext:gradle-idea-ext")
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 297 bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/RenderMarkdown.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.docs;
    
    import com.vladsch.flexmark.ext.tables.TablesExtension;
    import com.vladsch.flexmark.html.HtmlRenderer;
    import com.vladsch.flexmark.parser.Parser;
    import com.vladsch.flexmark.util.options.MutableDataSet;
    import org.gradle.api.DefaultTask;
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 3.2K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

            ivy {
                name 'Gradle distributions'
                url 'https://services.gradle.org'
                patternLayout {
                    artifact "/${distUrl}/[module]-[revision]-bin(.[ext])"
                }
                metadataSources {
                    artifact()
                }
                content {
                    includeModule('gradle', 'gradle')
                }
            }
        }
    }
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Apr 11 12:20:44 GMT 2024
    - 8.6K bytes
    - Viewed (0)
Back to top