-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
grouper docker container: store jar files for ui, ws, and scim in the…
…ir own directories
- Loading branch information
Vivek Sachdeva
committed
Mar 21, 2020
1 parent
1d62578
commit 0d49e73
Showing
6 changed files
with
180 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>edu.internet2.middleware.grouper</groupId> | ||
<artifactId>grouper-container</artifactId> | ||
<version>2.5.0-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
<name>grouper-container</name> | ||
|
||
<repositories> | ||
<repository> | ||
<id>central</id> | ||
<url>https://repo1.maven.org/maven2</url> | ||
</repository> | ||
<repository> | ||
<id>nexus-releases</id> | ||
<url>https://oss.sonatype.org/content/repositories/releases/</url> | ||
</repository> | ||
<repository> | ||
<!-- there is a slight delay between releasing a staged repo and showing up in the release repo; | ||
fall back to the local content repo which shows up sooner --> | ||
<id>nexus-services</id> | ||
<url>https://oss.sonatype.org/service/local/repositories/releases/content/</url> | ||
</repository> | ||
</repositories> | ||
<!-- Pass in Maven command line parameter -Dgrouper.version=a.b.c ... --> | ||
<dependencies> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>grouper</artifactId> | ||
<version>${grouper.version}</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>edu.internet2.middleware.grouper</groupId> | ||
<artifactId>grouper-container</artifactId> | ||
<version>2.5.0-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
<name>grouper-container</name> | ||
|
||
<repositories> | ||
<repository> | ||
<id>central</id> | ||
<url>https://repo1.maven.org/maven2</url> | ||
</repository> | ||
<repository> | ||
<id>nexus-releases</id> | ||
<url>https://oss.sonatype.org/content/repositories/releases/</url> | ||
</repository> | ||
<repository> | ||
<!-- there is a slight delay between releasing a staged repo and showing up in the release repo; | ||
fall back to the local content repo which shows up sooner --> | ||
<id>nexus-services</id> | ||
<url>https://oss.sonatype.org/service/local/repositories/releases/content/</url> | ||
</repository> | ||
</repositories> | ||
<!-- Pass in Maven command line parameter -Dgrouper.version=a.b.c ... --> | ||
<dependencies> | ||
|
||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>grouper-ws-scim</artifactId> | ||
<version>${grouper.version}</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>edu.internet2.middleware.grouper</groupId> | ||
<artifactId>grouper-container</artifactId> | ||
<version>2.5.0-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
<name>grouper-container</name> | ||
|
||
<repositories> | ||
<repository> | ||
<id>central</id> | ||
<url>https://repo1.maven.org/maven2</url> | ||
</repository> | ||
<repository> | ||
<id>nexus-releases</id> | ||
<url>https://oss.sonatype.org/content/repositories/releases/</url> | ||
</repository> | ||
<repository> | ||
<!-- there is a slight delay between releasing a staged repo and showing up in the release repo; | ||
fall back to the local content repo which shows up sooner --> | ||
<id>nexus-services</id> | ||
<url>https://oss.sonatype.org/service/local/repositories/releases/content/</url> | ||
</repository> | ||
</repositories> | ||
<!-- Pass in Maven command line parameter -Dgrouper.version=a.b.c ... --> | ||
<dependencies> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>grouper-ws</artifactId> | ||
<version>${grouper.version}</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters