Skip to content

Commit 3ab9546

Browse files
committed
New Maven project 'grouper-container', which has dependencies on all the other projects so they can be downloaded in a single command
1 parent 9d089da commit 3ab9546

File tree

2 files changed

+65
-0
lines changed

2 files changed

+65
-0
lines changed

grouper-container/pom.xml

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>edu.internet2.middleware.grouper</groupId>
5+
<artifactId>grouper-container</artifactId>
6+
<version>2.5.0-SNAPSHOT</version>
7+
<packaging>pom</packaging>
8+
<name>grouper-container</name>
9+
10+
<!-- Pass in Maven command line parameter -Dgrouper.version=a.b.c ... -->
11+
<dependencies>
12+
<dependency>
13+
<groupId>${project.groupId}</groupId>
14+
<artifactId>grouper</artifactId>
15+
<version>${grouper.version}</version>
16+
</dependency>
17+
<dependency>
18+
<groupId>${project.groupId}</groupId>
19+
<artifactId>grouper-ws</artifactId>
20+
<version>${grouper.version}</version>
21+
</dependency>
22+
<dependency>
23+
<groupId>${project.groupId}</groupId>
24+
<artifactId>grouper-ws-scim</artifactId>
25+
<version>${grouper.version}</version>
26+
</dependency>
27+
<dependency>
28+
<groupId>${project.groupId}</groupId>
29+
<artifactId>grouper-ui</artifactId>
30+
<version>${grouper.version}</version>
31+
</dependency>
32+
<dependency>
33+
<groupId>${project.groupId}</groupId>
34+
<artifactId>grouper-messaging-activemq</artifactId>
35+
<version>${grouper.version}</version>
36+
</dependency>
37+
<dependency>
38+
<groupId>${project.groupId}</groupId>
39+
<artifactId>grouper-messaging-aws</artifactId>
40+
<version>${grouper.version}</version>
41+
</dependency>
42+
<dependency>
43+
<groupId>${project.groupId}</groupId>
44+
<artifactId>grouper-messaging-rabbitmq</artifactId>
45+
<version>${grouper.version}</version>
46+
</dependency>
47+
<dependency>
48+
<groupId>${project.groupId}</groupId>
49+
<artifactId>grouper-pspng</artifactId>
50+
<version>${grouper.version}</version>
51+
</dependency>
52+
<dependency>
53+
<groupId>${project.groupId}</groupId>
54+
<artifactId>grouper-box</artifactId>
55+
<version>${grouper.version}</version>
56+
</dependency>
57+
<dependency>
58+
<groupId>${project.groupId}</groupId>
59+
<artifactId>grouper-duo</artifactId>
60+
<version>${grouper.version}</version>
61+
</dependency>
62+
</dependencies>
63+
64+
</project>

grouper-parent/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
<module>../grouper-misc/grouperActivemq</module>
4141
<module>../grouper-misc/grouper-messaging-rabbitmq</module>
4242
<module>../grouper-misc/grouper-messaging-aws</module>
43+
<module>../grouper-misc/grouper-messaging-activemq</module>
4344
<module>../grouper-misc/grouper-pspng</module>
4445
<module>../grouper-misc/grouper-box</module>
4546
<module>../grouper-misc/grouper-duo</module>

0 commit comments

Comments
 (0)