mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Nicolas Capponi
11.28.2013 8943a85452f2072bbf89ead54efd0701d50bd5f5
Checkpoint commit for OPENDJ-175: Decouple OpenDJ LDAP SDK from Grizzly

* Adjust opendj-rest2ldap-servlet dependencies
- Add dependency on opendj-grizzly jar in generated war
- No dependency on opendj-grizzly for use by another component
1 files modified
26 ■■■■■ changed files
opendj3/opendj-rest2ldap-servlet/pom.xml 26 ●●●●● patch | view | raw | blame | history
opendj3/opendj-rest2ldap-servlet/pom.xml
@@ -91,6 +91,32 @@
                <extensions>true</extensions>
            </plugin>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-dependency-plugin</artifactId>
              <version>2.8</version>
              <executions>
                <execution>
                  <id>copy</id>
                  <phase>package</phase>
                  <goals>
                    <goal>copy</goal>
                  </goals>
                  <configuration>
                    <artifactItems>
                      <artifactItem>
                        <groupId>org.forgerock.opendj</groupId>
                        <artifactId>opendj-grizzly</artifactId>
                        <version>${project.version}</version>
                        <type>jar</type>
                        <overWrite>false</overWrite>
                        <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/lib</outputDirectory>
                      </artifactItem>
                    </artifactItems>
                  </configuration>
                </execution>
              </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <executions>