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

chore: README.md documentation links fix/update #432

Merged
merged 3 commits into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,11 @@ public String getCategory() {

@Override
public String getDocumentation() {
return "https://github.com/bertramdev/asset-pipeline#readme";
}

@Override
public String getThirdPartyDocumentation() {
gsartori marked this conversation as resolved.
Show resolved Hide resolved
return "https://www.asset-pipeline.com/manual/";
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public boolean supports(ApplicationType applicationType) {

@Override
public String getDocumentation() {
return "https://github.com/grails3-plugins/geb#readme";
gsartori marked this conversation as resolved.
Show resolved Hide resolved
return "https://github.com/grails/geb#readme";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public boolean supports(ApplicationType applicationType) {

@Override
public String getDocumentation() {
return "https://github.com/grails3-plugins/geb#readme";
gsartori marked this conversation as resolved.
Show resolved Hide resolved
return "https://github.com/grails/geb#readme";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import org.grails.forge.feature.Feature;
import org.grails.forge.feature.FeatureContext;
import org.grails.forge.options.Options;
import org.grails.forge.util.VersionInfo;

import java.util.Set;

Expand Down Expand Up @@ -57,12 +58,12 @@ public String getDescription() {

@Override
public String getDocumentation() {
return "https://grails.github.io/scaffolding/latest/groovydoc/";
return "https://docs.grails.org/" + VersionInfo.getGrailsVersion() + "/guide/scaffolding.html";
}

@Override
public String getThirdPartyDocumentation() {
return "https://grails-fields-plugin.github.io/grails-fields/latest/guide/index.html";
return "https://github.com/gpc/fields#readme";
}

@Override
Expand Down
Loading