Skip to content

Commit 9d10074

Browse files
author
Vivek Sachdeva
committed
Grouper docker container
1 parent 27e9bb5 commit 9d10074

File tree

2 files changed

+10
-0
lines changed
  • grouper-container/grouper-uiDaemon-container
  • grouper-misc/grouper-installer/src/java/edu/internet2/middleware/grouperInstaller

2 files changed

+10
-0
lines changed

grouper-container/grouper-uiDaemon-container/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@
6060
<artifactId>grouper-duo</artifactId>
6161
<version>${grouper.version}</version>
6262
</dependency>
63+
<dependency>
64+
<groupId>${project.groupId}</groupId>
65+
<artifactId>grouper-azure-provisioner</artifactId>
66+
<version>${grouper.version}</version>
67+
</dependency>
6368
</dependencies>
6469

6570
</project>

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13119,6 +13119,11 @@ private void downloadGrouperJarsIntoLibDirectory(File webInfDir) {
1311913119
urlsToDownload.add(basePath+"grouper-messaging-aws/"+this.version+"/grouper-messaging-aws-"+this.version+".jar");
1312013120
urlsToDownload.add(basePath+"grouper-messaging-rabbitmq/"+this.version+"/grouper-messaging-rabbitmq-"+this.version+".jar");
1312113121
urlsToDownload.add(basePath+"grouper-activemq/"+this.version+"/grouper-activemq-"+this.version+".jar");
13122+
13123+
urlsToDownload.add(basePath+"grouper-pspng/"+this.version+"/grouper-pspng-"+this.version+".jar");
13124+
urlsToDownload.add(basePath+"grouper-box/"+this.version+"/grouper-box-"+this.version+".jar");
13125+
urlsToDownload.add(basePath+"grouper-duo/"+this.version+"/grouper-duo-"+this.version+".jar");
13126+
urlsToDownload.add(basePath+"grouper-azure-provisioner/"+this.version+"/grouper-azure-provisioner-"+this.version+".jar");
1312213127
for (String urlToDownload: urlsToDownload) {
1312313128
String fileName = urlToDownload.substring(urlToDownload.lastIndexOf(File.separator)+1, urlToDownload.length());
1312413129
downloadFile(urlToDownload, libUiAndDaemonDir.getAbsolutePath() + File.separator+ fileName, "grouperInstaller.autorun.buildContainerUseExistingJarIfExists");

0 commit comments

Comments
 (0)