You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

POM

In the root pom.xml:

  • change parent/version from 1.2.2 to 1.2.3
  • change properties/syncope.version from 1.2.2 to 1.2.3

Other

SYNCOPE-638

Add the following lines to this files:

 

  <entity class="org.apache.syncope.core.persistence.beans.role.RAttrTemplate">
    <attributes>
      <id name="id">
        <generated-value generator="SEQ_RAttrTemplate" strategy="TABLE"/>
        <table-generator name="SEQ_RAttrTemplate" pk-column-value="SEQ_RAttrTemplate" initial-value="1000"/>
      </id>
    </attributes>
  </entity>
  <entity class="org.apache.syncope.core.persistence.beans.membership.MAttrTemplate">
    <attributes>
      <id name="id">
        <generated-value generator="SEQ_MAttrTemplate" strategy="TABLE"/>
        <table-generator name="SEQ_MAttrTemplate" pk-column-value="SEQ_MAttrTemplate" initial-value="1000"/>
      </id>
    </attributes>
  </entity>
  • No labels