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

Gaetan Boismal
05.20.2015 a011cdd279e59c00c60211867b848089c02cf01c
Add qualifier to product and snmp versions
2 files modified
10 ■■■■■ changed files
opendj-server-legacy/pom.xml 2 ●●● patch | view | raw | blame | history
opendj-server-legacy/src/main/resources/java-stubs/org/opends/server/util/DynamicConstants.java 8 ●●●●● patch | view | raw | blame | history
opendj-server-legacy/pom.xml
@@ -1485,7 +1485,7 @@
                    <addMavenDescriptor>false</addMavenDescriptor>
                    <manifestEntries>
                      <Extension-Name>snmp-mib2605</Extension-Name>
                      <Implementation-Version>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}</Implementation-Version>
                      <Implementation-Version>${project.version}</Implementation-Version>
                      <Revision-Number>${buildRevision}</Revision-Number>
                    </manifestEntries>
                  </archive>
opendj-server-legacy/src/main/resources/java-stubs/org/opends/server/util/DynamicConstants.java
@@ -310,11 +310,9 @@
  /**
   * A full version string for this product.
   */
  public static String FULL_VERSION_STRING =
       PRODUCT_NAME + " " + RELEASE_VERSION_STRING +
       (((FIX_IDS != null) && (FIX_IDS.length() > 0))
        ? "+" + FIX_IDS
        : "");
  public static String FULL_VERSION_STRING = PRODUCT_NAME + " " + RELEASE_VERSION_STRING
      + (VERSION_QUALIFIER != null && !VERSION_QUALIFIER.isEmpty() ? "-" + VERSION_QUALIFIER : "")
      + (FIX_IDS != null && !FIX_IDS.isEmpty() ? "+" + FIX_IDS : "");
  /**
   * A printable version string for this product.