You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@isis.apache.org by "Dan Haywood (JIRA)" <ji...@apache.org> on 2014/01/09 22:51:51 UTC

[jira] [Created] (ISIS-646) Upgrade DataNucleus to 3.3.6 (JDO 3.1), and use the convenience 'accessplatform' POMs.

Dan Haywood created ISIS-646:
--------------------------------

             Summary: Upgrade DataNucleus to 3.3.6 (JDO 3.1), and use the convenience 'accessplatform' POMs.
                 Key: ISIS-646
                 URL: https://issues.apache.org/jira/browse/ISIS-646
             Project: Isis
          Issue Type: Dependency upgrade
          Components: Objectstore: JDO
    Affects Versions: objectstore-jdo-1.3.0, archtype-quickstart-wrj-1.3.1, archetype-simple-wrj-1.3.1
            Reporter: Dan Haywood
            Assignee: Dan Haywood
            Priority: Minor
             Fix For: archetype-simple-wrj-1.4.0, archetype-quickstart-wrj-1.4.0, objectstore-jdo-1.4.0


<datanucleus-accessplatform-jdo-rdbms.version>3.3.6</datanucleus-accessplatform-jdo-rdbms.version>
<datanucleus-jodatime.version>3.2.1</datanucleus-jodatime.version>
<datanucleus-maven-plugin.version>3.3.2</datanucleus-maven-plugin.version>

<dependency>
     <groupId>org.datanucleus</groupId>
     <artifactId>datanucleus-accessplatform-jdo-rdbms</artifactId>
     <version>${datanucleus-accessplatform-jdo-rdbms.version}</version>
     <type>pom</type>
</dependency>

<dependency>
     <groupId>org.datanucleus</groupId>
     <artifactId>datanucleus-jodatime</artifactId>
     <version>${datanucleus-jodatime.version}</version>
</dependency>

also (according to Andy Jefferson) from 3.3.1, the datanucleus-maven-plugin uses the current (scope="provided") version of datanucleus, which means we can remove the dependency exclusion hacks for that plugin:

<plugin>
    <groupId>org.datanucleus</groupId>
    <artifactId>datanucleus-maven-plugin</artifactId>
    <version>${datanucleus-maven-plugin.version}</version>
    <configuration>
        <fork>false</fork>
        <verbose>true</verbose>
     </configuration>
     <executions>
         <execution>
             <phase>compile</phase>
              <goals>
                  <goal>enhance</goal>
               </goals>
          </execution>
     </executions>
 </plugin>




--
This message was sent by Atlassian JIRA
(v6.1.5#6160)