opendj-concat-schema-maven-plugin/src/main/java/org/forgerock/maven/package-info.java
File was deleted opendj-config-maven-plugin/pom.xml
File was deleted opendj-config/pom.xml
@@ -128,14 +128,14 @@ <!-- Validate core components XML definition files and generate the components. --> <plugin> <groupId>org.forgerock.opendj</groupId> <artifactId>opendj-config-maven-plugin</artifactId> <version>3.0.0-SNAPSHOT</version> <artifactId>opendj-maven-plugin</artifactId> <version>${project.version}</version> <executions> <execution> <id>generate-config</id> <phase>generate-sources</phase> <goals> <goal>generate</goal> <goal>generate-config</goal> </goals> <configuration> <packageName>org.forgerock.opendj.server.config</packageName> opendj-logref-doc-maven-plugin/pom.xml
File was deleted opendj-logref-doc-maven-plugin/src/main/java/org/forgerock/maven/package-info.java
File was deleted opendj-manifest-classpath-maven-plugin/pom.xml
File was deleted opendj-manifest-classpath-maven-plugin/src/main/java/org/forgerock/maven/package-info.java
File was deleted opendj-maven-plugin/pom.xml
File was renamed from opendj-concat-schema-maven-plugin/pom.xml @@ -34,11 +34,10 @@ <version>3.0.0-SNAPSHOT</version> </parent> <artifactId>opendj-concat-schema-maven-plugin</artifactId> <version>1.0.0-SNAPSHOT</version> <name>OpenDJ Concat Schema Maven Plugin</name> <artifactId>opendj-maven-plugin</artifactId> <name>OpenDJ Maven Plugin</name> <description> Generation of schema file by concatenation of LDIF files. Set of build tools for OpenDJ project. </description> <packaging>maven-plugin</packaging> @@ -47,17 +46,20 @@ </properties> <dependencies> <dependency> <groupId>org.twdata.maven</groupId> <artifactId>mojo-executor</artifactId> <version>2.2.0</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.forgerock.commons</groupId> <artifactId>forgerock-util</artifactId> </dependency> <dependency> <groupId>org.twdata.maven</groupId> <artifactId>mojo-executor</artifactId> <version>2.2.0</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.2</version> <scope>provided</scope> </dependency> </dependencies> </project> </project> opendj-maven-plugin/src/main/java/org/forgerock/opendj/maven/ConcatSchemaMojo.java
File was renamed from opendj-concat-schema-maven-plugin/src/main/java/org/forgerock/maven/ConcatSchemaMojo.java @@ -23,7 +23,7 @@ * * Copyright 2015 ForgeRock AS. */ package org.forgerock.maven; package org.forgerock.opendj.maven; import java.io.BufferedReader; import java.io.BufferedWriter; @@ -44,13 +44,12 @@ import org.apache.maven.project.MavenProject; /** * Concatenates the contents of the files in the schema directory to create a base schema that may be used during the * upgrade process. Each element will also include the X-SCHEMA-FILE extension to indicate the source schema file. * Concatenates the contents of the files in the schema directory to create a * base schema that may be used during the upgrade process. Each element will * also include the X-SCHEMA-FILE extension to indicate the source schema file. * <p> * There is a single goal that generates the base schema. * <p> * * @Checkstyle:ignoreFor 3 */ @Mojo(name = "concat", defaultPhase = LifecyclePhase.GENERATE_SOURCES) public final class ConcatSchemaMojo extends AbstractMojo { opendj-maven-plugin/src/main/java/org/forgerock/opendj/maven/GenerateConfigMojo.java
File was renamed from opendj-config-maven-plugin/src/main/java/org/forgerock/opendj/maven/GenerateConfigMojo.java @@ -25,6 +25,9 @@ */ package org.forgerock.opendj.maven; import static org.apache.maven.plugins.annotations.LifecyclePhase.*; import static org.apache.maven.plugins.annotations.ResolutionScope.*; import java.io.File; import java.io.FileFilter; import java.io.FileOutputStream; @@ -55,6 +58,8 @@ import org.apache.maven.plugin.AbstractMojo; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.plugins.annotations.Mojo; import org.apache.maven.plugins.annotations.Parameter; import org.apache.maven.project.MavenProject; /** @@ -99,12 +104,8 @@ * config.AbstractManagedObjectDefinition</td> * </tr> * </table> * * @Checkstyle:ignoreFor 3 * @goal generate * @phase generate-sources * @requiresDependencyResolution compile+runtime */ @Mojo(name = "generate-config", defaultPhase = GENERATE_SOURCES, requiresDependencyResolution = COMPILE_PLUS_RUNTIME) public final class GenerateConfigMojo extends AbstractMojo { private interface StreamSourceFactory { StreamSource newStreamSource() throws IOException; @@ -112,11 +113,8 @@ /** * The Maven Project. * * @parameter property="project" * @required * @readonly */ @Parameter(required = true, readonly = true, property = "project") private MavenProject project; /** @@ -124,10 +122,8 @@ * <p> * This relative path is used to locate xml definition files and to locate * generated artifacts. * * @parameter * @required */ @Parameter(required = true) private String packageName; /** @@ -135,10 +131,8 @@ * <p> * This relative path is used to locate xml definition files and to locate * generated artifacts. * * @parameter default-value="true" * @required */ @Parameter(required = true, defaultValue = "true") private Boolean isExtension; private final Map<String, StreamSourceFactory> componentDescriptors = opendj-maven-plugin/src/main/java/org/forgerock/opendj/maven/GenerateManifestClassPathMojo.java
File was renamed from opendj-manifest-classpath-maven-plugin/src/main/java/org/forgerock/maven/GenerateManifestClassPathMojo.java @@ -23,8 +23,7 @@ * * Copyright 2015 ForgeRock AS. */ package org.forgerock.maven; package org.forgerock.opendj.maven; import static java.lang.String.*; import java.io.File; @@ -45,15 +44,13 @@ import org.apache.maven.project.MavenProject; /** * Generate a class path suitable for the Class-Path header of a Manifest file, allowing to filter on included jars, * using excludes/includes properties. * Generate a class path suitable for the Class-Path header of a Manifest file, * allowing to filter on included jars, using excludes/includes properties. * <p> * There is a single goal that generates a property given by 'classPathProperty' parameter, with the generated classpath * as the value. * * @Checkstyle:ignoreFor 3 * There is a single goal that generates a property given by 'classPathProperty' * parameter, with the generated classpath as the value. */ @Mojo(name = "generate", defaultPhase = LifecyclePhase.VALIDATE, @Mojo(name = "generate-manifest", defaultPhase = LifecyclePhase.VALIDATE, requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME) public final class GenerateManifestClassPathMojo extends AbstractMojo { opendj-maven-plugin/src/main/java/org/forgerock/opendj/maven/GenerateMessageFileMojo.java
File was renamed from opendj-logref-doc-maven-plugin/src/main/java/org/forgerock/maven/GenerateMessageFileMojo.java @@ -24,7 +24,9 @@ * Copyright 2008-2010 Sun Microsystems, Inc. * Portions Copyright 2011-2015 ForgeRock AS */ package org.forgerock.maven; package org.forgerock.opendj.maven; import static org.apache.maven.plugins.annotations.LifecyclePhase.*; import java.io.File; import java.io.FileInputStream; @@ -47,7 +49,6 @@ import org.apache.maven.plugin.AbstractMojo; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.plugin.MojoFailureException; import org.apache.maven.plugins.annotations.LifecyclePhase; import org.apache.maven.plugins.annotations.Mojo; import org.apache.maven.plugins.annotations.Parameter; import org.apache.maven.project.MavenProject; @@ -60,7 +61,7 @@ * There is a single goal that generates xml files. * <p> */ @Mojo(defaultPhase = LifecyclePhase.PRE_SITE, name = "generate-xml-messages-doc") @Mojo(name = "generate-xml-messages-doc", defaultPhase = PRE_SITE) public class GenerateMessageFileMojo extends AbstractMojo { /** opendj-maven-plugin/src/main/java/org/forgerock/opendj/maven/package-info.java
opendj-maven-plugin/src/main/resources/config/stylesheets/abbreviations.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/admin-cli.xsd
opendj-maven-plugin/src/main/resources/config/stylesheets/admin-ldap.xsd
opendj-maven-plugin/src/main/resources/config/stylesheets/admin-preprocessor.xsd
opendj-maven-plugin/src/main/resources/config/stylesheets/admin.xsd
opendj-maven-plugin/src/main/resources/config/stylesheets/catalog.xml
opendj-maven-plugin/src/main/resources/config/stylesheets/cliMOProfile.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/clientMO.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/conditions.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/java-utilities.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/ldapMOProfile.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/manifestMO.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/messagesMO.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/metaMO.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/package-info.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/preprocessor.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/property-types.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/property-types/aci.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/property-types/aggregation.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/property-types/attribute-type.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/property-types/boolean.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/property-types/dn.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/property-types/duration.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/property-types/enumeration.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/property-types/extensible-matching-rule-type.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/property-types/integer.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/property-types/ip-address-mask.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/property-types/ip-address.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/property-types/java-class.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/property-types/oid.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/property-types/password.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/property-types/size.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/property-types/string.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/serverMO.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/text-utilities.xsl
opendj-maven-plugin/src/main/resources/config/stylesheets/xml.xsd
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/AESPasswordStorageSchemeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/AccessControlHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/AccessLogFilteringCriteriaConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/AccessLogPublisherConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/AccountStatusNotificationHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/AdministrationConnectorConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/AlertHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/AnonymousSASLMechanismHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/AttributeCleanupPluginConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/AttributeSyntaxConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/AttributeTypeDescriptionAttributeSyntaxConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/AttributeValuePasswordValidatorConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/AuthenticationPolicyConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/BackendConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/BackendIndexConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/BackendVLVIndexConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/BackupBackendConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/Base64PasswordStorageSchemeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/BlindTrustManagerProviderConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/BlowfishPasswordStorageSchemeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/CancelExtendedOperationHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/CertificateAttributeSyntaxConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/CertificateMapperConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/ChangeNumberControlPluginConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/CharacterSetPasswordValidatorConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/ClearPasswordStorageSchemeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/ClientConnectionMonitorProviderConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/CollationMatchingRuleConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/CollectiveAttributeSubentriesVirtualAttributeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/ConfigFileHandlerBackendConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/ConnectionHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/CoreSchemaConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/CountryStringAttributeSyntaxConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/CramMD5SASLMechanismHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/CryptPasswordStorageSchemeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/CryptoManagerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/DebugLogPublisherConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/DebugTargetConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/DictionaryPasswordValidatorConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/DigestMD5SASLMechanismHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/DirectoryStringAttributeSyntaxConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/DseeCompatAccessControlHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/DynamicGroupImplementationConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/EntityTagVirtualAttributeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/EntryCacheConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/EntryCacheMonitorProviderConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/EntryDNVirtualAttributeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/EntryUUIDPluginConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/EntryUUIDVirtualAttributeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/ErrorLogAccountStatusNotificationHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/ErrorLogPublisherConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/ExactMatchIdentityMapperConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/ExtendedOperationHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/ExternalChangelogDomainConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/ExternalSASLMechanismHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/FIFOEntryCacheConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/FileBasedAccessLogPublisherConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/FileBasedAuditLogPublisherConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/FileBasedDebugLogPublisherConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/FileBasedErrorLogPublisherConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/FileBasedHTTPAccessLogPublisherConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/FileBasedKeyManagerProviderConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/FileBasedTrustManagerProviderConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/FileCountLogRetentionPolicyConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/FingerprintCertificateMapperConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/FixedTimeLogRotationPolicyConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/FractionalLDIFImportPluginConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/FreeDiskSpaceLogRetentionPolicyConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/GSSAPISASLMechanismHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/GetConnectionIdExtendedOperationHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/GetSymmetricKeyExtendedOperationHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/GlobalConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/GoverningStructureRuleVirtualAttributeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/GroupImplementationConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/HTTPAccessLogPublisherConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/HTTPConnectionHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/HasSubordinatesVirtualAttributeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/IdentityMapperConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/IsMemberOfVirtualAttributeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/JMXAlertHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/JMXConnectionHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/JPEGAttributeSyntaxConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/KeyManagerProviderConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/LDAPAttributeDescriptionListPluginConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/LDAPConnectionHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/LDAPPassThroughAuthenticationPolicyConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/LDIFBackendConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/LDIFConnectionHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/LastModPluginConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/LengthBasedPasswordValidatorConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/LocalDBBackendConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/LocalDBIndexConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/LocalDBVLVIndexConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/LogPublisherConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/LogRetentionPolicyConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/LogRotationPolicyConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/MD5PasswordStorageSchemeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/MatchingRuleConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/MemberVirtualAttributeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/MemoryBackendConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/MemoryUsageMonitorProviderConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/MonitorBackendConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/MonitorProviderConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/NullBackendConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/NumSubordinatesVirtualAttributeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/PBKDF2PasswordStorageSchemeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/PKCS11KeyManagerProviderConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/Package.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/ParallelWorkQueueConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/PasswordExpirationTimeVirtualAttributeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/PasswordGeneratorConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/PasswordModifyExtendedOperationHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/PasswordPolicyConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/PasswordPolicyImportPluginConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/PasswordPolicyStateExtendedOperationHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/PasswordPolicySubentryVirtualAttributeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/PasswordStorageSchemeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/PasswordValidatorConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/PersistitBackendConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/PlainSASLMechanismHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/PluggableBackendConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/PluginConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/PluginRootConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/ProfilerPluginConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/RC4PasswordStorageSchemeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/RandomPasswordGeneratorConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/ReferentialIntegrityPluginConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/RegularExpressionIdentityMapperConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/RepeatedCharactersPasswordValidatorConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/ReplicationDomainConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/ReplicationServerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/ReplicationSynchronizationProviderConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/RootConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/RootDNConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/RootDNUserConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/RootDSEBackendConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SASLMechanismHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SHA1PasswordStorageSchemeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SMTPAccountStatusNotificationHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SMTPAlertHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SNMPConnectionHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SaltedMD5PasswordStorageSchemeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SaltedSHA1PasswordStorageSchemeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SaltedSHA256PasswordStorageSchemeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SaltedSHA384PasswordStorageSchemeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SaltedSHA512PasswordStorageSchemeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SambaPasswordPluginConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SchemaBackendConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SchemaProviderConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SevenBitCleanPluginConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SimilarityBasedPasswordValidatorConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SizeLimitLogRetentionPolicyConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SizeLimitLogRotationPolicyConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SoftReferenceEntryCacheConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/StackTraceMonitorProviderConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/StartTLSExtendedOperationHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/StaticGroupImplementationConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/StructuralObjectClassVirtualAttributeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SubjectAttributeToUserAttributeCertificateMapperConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SubjectDNToUserAttributeCertificateMapperConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SubjectEqualsDNCertificateMapperConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SubschemaSubentryVirtualAttributeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SynchronizationProviderConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/SystemInfoMonitorProviderConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/TaskBackendConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/TelephoneNumberAttributeSyntaxConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/TimeLimitLogRotationPolicyConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/TraditionalWorkQueueConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/TripleDESPasswordStorageSchemeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/TrustManagerProviderConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/TrustStoreBackendConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/UniqueAttributePluginConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/UniqueCharactersPasswordValidatorConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/UserDefinedVirtualAttributeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/VersionMonitorProviderConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/VirtualAttributeConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/VirtualStaticGroupImplementationConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/WhoAmIExtendedOperationHandlerConfiguration.xml
opendj-maven-plugin/src/main/resources/config/xml/org/forgerock/opendj/server/config/WorkQueueConfiguration.xml
opendj-server-legacy/pom.xml
@@ -372,15 +372,18 @@ </execution> </executions> </plugin> <!-- OpenDJ maven plugin executions --> <plugin> <groupId>org.forgerock.opendj</groupId> <artifactId>opendj-manifest-classpath-maven-plugin</artifactId> <version>1.0.0-SNAPSHOT</version> <artifactId>opendj-maven-plugin</artifactId> <version>${project.version}</version> <executions> <!-- Generates manifest classpath files --> <execution> <id>generate-bootstrap-manifest</id> <goals> <goal>generate</goal> <goal>generate-manifest</goal> </goals> <configuration> <classPathProperty>classpath.bootstrap</classPathProperty> @@ -390,11 +393,11 @@ <exclude>org.slf4j:slf4j-jdk14</exclude> </excludes> </configuration> </execution> </execution> <execution> <id>generate-bootstrap-client-manifest</id> <goals> <goal>generate</goal> <goal>generate-manifest</goal> </goals> <configuration> <classPathProperty>classpath.bootstrap-client</classPathProperty> @@ -405,22 +408,15 @@ </excludes> </configuration> </execution> </executions> </plugin> <!-- Generate configuration classes from XML definitions --> <!-- Leave default lifecycle phase once new config framework migration is done --> <plugin> <groupId>org.forgerock.opendj</groupId> <artifactId>opendj-config-maven-plugin</artifactId> <version>3.0.0-SNAPSHOT</version> <executions> <!-- Generate configuration classes from XML definitions --> <!-- Leave default lifecycle phase once new config framework migration is done --> <execution> <id>generate-config</id> <phase>generate-sources</phase> <goals> <goal>generate</goal> <goal>generate-config</goal> </goals> <configuration> <phase>none</phase> @@ -428,6 +424,58 @@ <isExtension>false</isExtension> </configuration> </execution> <!-- Create consolidated schema file for use in upgrade --> <execution> <id>creates-base-schema-files</id> <goals> <goal>concat</goal> </goals> <configuration> <schemaDirectory>${basedir}/resource/schema</schemaDirectory> <outputDirectory>${project.build.directory}/upgrade</outputDirectory> <outputFile>schema.ldif.${buildRevision}</outputFile> </configuration> </execution> <!-- Generates references from messages for documentation --> <execution> <goals> <goal>generate-xml-messages-doc</goal> </goals> <configuration> <messagesDirectory>${basedir}/src/messages/org/opends/messages</messagesDirectory> <outputDirectory>${project.build.directory}/docgen/logref</outputDirectory> <logMessageReferenceFilePath>${basedir}/resource/log-message-reference.xml</logMessageReferenceFilePath> <messageFileNames> <!-- for xxx_yyy.properties generates a log-ref-xxx-yyy.xml file --> <messageFileName>admin</messageFileName> <messageFileName>backend</messageFileName> <messageFileName>config</messageFileName> <messageFileName>core</messageFileName> <messageFileName>dsconfig</messageFileName> <messageFileName>extension</messageFileName> <messageFileName>jeb</messageFileName> <messageFileName>logger</messageFileName> <messageFileName>plugin</messageFileName> <messageFileName>protocol</messageFileName> <messageFileName>replication</messageFileName> <messageFileName>schema</messageFileName> <messageFileName>task</messageFileName> <messageFileName>tool</messageFileName> <messageFileName>utility</messageFileName> <!-- Ignore following message files as we document only serious errors. --> <!-- <messageFileName>access_control</messageFileName> --> <!-- <messageFileName>admin_tool</messageFileName> --> <!-- <messageFileName>quicksetup.properties</messageFileName> --> <!-- <messageFileName>runtime_information.properties</messageFileName> --> <!-- <messageFileName>version.properties</messageFileName> --> </messageFileNames> </configuration> </execution> </executions> </plugin> @@ -498,26 +546,6 @@ </executions> </plugin> <!-- Create consolidated schema file for use in upgrade --> <plugin> <groupId>org.forgerock.opendj</groupId> <artifactId>opendj-concat-schema-maven-plugin</artifactId> <version>1.0.0-SNAPSHOT</version> <executions> <execution> <id>creates-base-schema-files</id> <goals> <goal>concat</goal> </goals> <configuration> <schemaDirectory>${basedir}/resource/schema</schemaDirectory> <outputDirectory>${project.build.directory}/upgrade</outputDirectory> <outputFile>schema.ldif.${buildRevision}</outputFile> </configuration> </execution> </executions> </plugin> <!-- Compile unit tests --> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -981,52 +1009,6 @@ </executions> </plugin> <!-- Generates log references for documentation --> <plugin> <groupId>org.forgerock.opendj</groupId> <artifactId>opendj-logref-doc-maven-plugin</artifactId> <version>1.0.0-SNAPSHOT</version> <executions> <execution> <goals> <goal>generate-xml-messages-doc</goal> </goals> <configuration> <messagesDirectory>${basedir}/src/messages/org/opends/messages</messagesDirectory> <outputDirectory>${project.build.directory}/docgen/logref</outputDirectory> <logMessageReferenceFilePath>${basedir}/resource/log-message-reference.xml</logMessageReferenceFilePath> <messageFileNames> <!-- for xxx_yyy.properties generates a log-ref-xxx-yyy.xml file --> <messageFileName>admin</messageFileName> <messageFileName>backend</messageFileName> <messageFileName>config</messageFileName> <messageFileName>core</messageFileName> <messageFileName>dsconfig</messageFileName> <messageFileName>extension</messageFileName> <messageFileName>jeb</messageFileName> <messageFileName>logger</messageFileName> <messageFileName>plugin</messageFileName> <messageFileName>protocol</messageFileName> <messageFileName>replication</messageFileName> <messageFileName>schema</messageFileName> <messageFileName>task</messageFileName> <messageFileName>tool</messageFileName> <messageFileName>utility</messageFileName> <!-- Ignore following message files as we document only serious errors. --> <!-- <messageFileName>access_control</messageFileName> --> <!-- <messageFileName>admin_tool</messageFileName> --> <!-- <messageFileName>quicksetup.properties</messageFileName> --> <!-- <messageFileName>runtime_information.properties</messageFileName> --> <!-- <messageFileName>version.properties</messageFileName> --> </messageFileNames> </configuration> </execution> </executions> </plugin> <!-- Generate documentation (guide) --> <plugin> <groupId>org.forgerock.commons</groupId> pom.xml
@@ -90,10 +90,7 @@ </site> </distributionManagement> <modules> <module>opendj-config-maven-plugin</module> <module>opendj-manifest-classpath-maven-plugin</module> <module>opendj-logref-doc-maven-plugin</module> <module>opendj-concat-schema-maven-plugin</module> <module>opendj-maven-plugin</module> <module>opendj-svn-property-check-maven-plugin</module> <module>opendj-core</module> <module>opendj-grizzly</module> @@ -334,10 +331,10 @@ <pluginExecution> <pluginExecutionFilter> <groupId>org.forgerock.opendj</groupId> <artifactId>opendj-config-maven-plugin</artifactId> <versionRange>[3.0.0-SNAPSHOT,)</versionRange> <artifactId>opendj-maven-plugin</artifactId> <versionRange>[1.0.0-SNAPSHOT,)</versionRange> <goals> <goal>generate</goal> <goal>generate-config</goal> </goals> </pluginExecutionFilter> <action>