Skip to content

Commit 88f7ae2

Browse files
author
Vivek Sachdeva
committed
WIP: grouper docker container: Fix maven commands
1 parent 514c970 commit 88f7ae2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

grouper-misc/grouper-installer/src/java/edu/internet2/middleware/grouperInstaller/GrouperInstaller.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ private static String convertEhcacheNameToPropertiesKey(String ehcacheName, Set<
571571
*/
572572
public static void main(String[] args) {
573573

574-
574+
575575
GrouperInstaller grouperInstaller = new GrouperInstaller();
576576

577577
grouperInstaller.mainLogic();
@@ -9449,7 +9449,10 @@ private void mainBuildContainerLogic() {
94499449
List<String> commands = new ArrayList<String>();
94509450
addMavenCommands(commands);
94519451

9452-
commands.add("-DincludeScope=runtime -DexcludeArtifactIds=grouper,grouperClient dependency:copy-dependencies");
9452+
commands.add("-DincludeScope=runtime");
9453+
commands.add("-DexcludeArtifactIds=grouper,grouperClient");
9454+
9455+
commands.add("dependency:copy-dependencies");
94539456

94549457
for (File file: grouperProjects) {
94559458
System.out.println("\n##################################");

0 commit comments

Comments
 (0)