Skip to content
This repository has been archived by the owner on Oct 28, 2022. It is now read-only.

Commit

Permalink
ROO-3976: Prevent to install any layer if Jpa support is not installed
Browse files Browse the repository at this point in the history
  • Loading branch information
jcagarcia committed Apr 26, 2018
1 parent 3e8e6ae commit 07347c1
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -142,7 +142,8 @@ public boolean isSetupAvailable() {
break;
}
}
return getProjectOperations().isFocusedProjectAvailable() && notInstalledInSomeModule;
return getProjectOperations().isFocusedProjectAvailable()
&& getProjectOperations().isFeatureInstalled(FeatureNames.JPA) && notInstalledInSomeModule;
}

/**
Expand Down

0 comments on commit 07347c1

Please sign in to comment.