Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update project skeleton: migrating from old apply plugin to plugins block #219

Closed
rainboyan opened this issue Mar 28, 2024 · 0 comments
Closed
Assignees
Labels
type: enhancement A general enhancement
Milestone

Comments

@rainboyan
Copy link
Member

buildSrc/buid.gradle,

repositories {
    mavenLocal()
    mavenCentral()
    maven { url "https://repo.gradle.org/gradle/libs-releases" }
    maven { url "https://plugins.gradle.org/m2/" }
}

dependencies {
    implementation "org.graceframework:grace-gradle-plugin:2023.0.0-SNAPSHOT"
    implementation "com.github.erdi:webdriver-binaries-gradle-plugin:3.2"
    implementation "org.graceframework.plugins:asset-pipeline-gradle:6.0.0-M2"
}

build.gradle,

plugins {
    id "eclipse"
    id "idea"
    id "war"
    id "org.graceframework.grace-web"
    id "com.github.erdi.webdriver-binaries"
    id "org.graceframework.grace-gsp"
    id "org.graceframework.asset-pipeline"
}
➜  blog git:(main) ✗ tree . -L 2 --dirsfirst -C
.
├── app
│   ├── assets
│   ├── conf
│   ├── controllers
│   ├── domain
│   ├── i18n
│   ├── init
│   ├── services
│   ├── taglib
│   ├── utils
│   └── views
├── buildSrc
│   └── build.gradle
├── gradle
│   └── wrapper
├── src
│   ├── integration-test
│   ├── main
│   └── test
├── README.md
├── build.gradle
├── gradle.properties
├── gradlew
├── gradlew.bat
└── settings.gradle

18 directories, 7 files
@rainboyan rainboyan added the type: enhancement A general enhancement label Mar 28, 2024
@rainboyan rainboyan added this to the 2023.0.0-RC1 milestone Mar 28, 2024
@rainboyan rainboyan self-assigned this Mar 28, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: enhancement A general enhancement
Projects
None yet
Development

No branches or pull requests

1 participant