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

Gaetan Boismal
18.20.2015 1518c88359977571668b2450f40e1122f09d1506
OPENDJ-1815: Make the build JDK8 compliant

This is done by adding the javax.xml.accessExternalSchema system property
needed by jaxb2-maven-plugin to the server-legacy pom.
1 files modified
23 ■■■■■ changed files
opendj-server-legacy/pom.xml 23 ●●●●● patch | view | raw | blame | history
opendj-server-legacy/pom.xml
@@ -247,6 +247,29 @@
    <plugins>
    <plugin>
        <!-- Ensure that our usage of the jaxb2-maven-plugin is JDK 8 compatible -->
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>properties-maven-plugin</artifactId>
        <version>1.0-alpha-2</version>
        <configuration>
            <properties>
                <property>
                    <name>javax.xml.accessExternalSchema</name>
                    <value>all</value>
                </property>
            </properties>
        </configuration>
        <executions>
            <execution>
                <id>set-additional-system-properties</id>
                <goals>
                    <goal>set-system-properties</goal>
                </goals>
            </execution>
        </executions>
    </plugin>
      <!-- Clean classes generated outside the build directory -->
      <plugin>
        <artifactId>maven-clean-plugin</artifactId>