[java-idp-integration-tests] 02/02: Copy UnboundID SDK to jetty-base/lib/ext
Tom Zeller
tzeller at dragonacea.biz
Sat Nov 5 20:14:40 UTC 2022
This is an automated email from the git hooks/post-receive script.
tzeller pushed a commit to branch main
in repository java-idp-integration-tests.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-integration-tests.git;a=commit;h=b93217efc07a0c1f196a373cee88cd79aeff72a2
commit b93217efc07a0c1f196a373cee88cd79aeff72a2
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Sat Nov 5 15:14:19 2022 -0500
Copy UnboundID SDK to jetty-base/lib/ext
---
pom.xml | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/pom.xml b/pom.xml
index 6c8b42f..d49baab 100644
--- a/pom.xml
+++ b/pom.xml
@@ -368,6 +368,11 @@
</exclusion>
</exclusions>
</dependency>
+ <dependency>
+ <groupId>com.unboundid</groupId>
+ <artifactId>unboundid-ldapsdk</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>
<plugins>
@@ -434,6 +439,23 @@
<outputDirectory>${test-distributions.directory}/jetty-base/</outputDirectory>
</configuration>
</execution>
+ <!-- Copy UnboundID SDK to jetty-base/lib/ext. -->
+ <execution>
+ <id>copy-UnboundID-sdk</id>
+ <phase>compile</phase>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>com.unboundid</groupId>
+ <artifactId>unboundid-ldapsdk</artifactId>
+ </artifactItem>
+ </artifactItems>
+ <outputDirectory>${test-distributions.directory}/jetty-base/lib/ext/</outputDirectory>
+ </configuration>
+ </execution>
</executions>
</plugin>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list