DATAJPA-329 - Prepare release of 1.3.1.RELEASE.
Updated changelog, notices and readme. Upgraded to Spring Data Build 1.0.3.RELEASE. Upgraded to Spring Data Commons 1.5.1.RELEASE. Upgraded Maven APT plugin to 1.0.9.
This commit is contained in:
8
pom.xml
8
pom.xml
@@ -14,7 +14,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.data.build</groupId>
|
||||
<artifactId>spring-data-parent</artifactId>
|
||||
<version>1.0.2.RELEASE</version>
|
||||
<version>1.0.3.RELEASE</version>
|
||||
<relativePath>../spring-data-build/parent/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
<hsqldb1>1.8.0.10</hsqldb1>
|
||||
<jpa>2.0.0</jpa>
|
||||
<openjpa>2.2.1</openjpa>
|
||||
<springdata.commons>1.5.0.RELEASE</springdata.commons>
|
||||
<springdata.commons>1.5.1.RELEASE</springdata.commons>
|
||||
|
||||
</properties>
|
||||
|
||||
@@ -370,8 +370,8 @@
|
||||
|
||||
<plugin>
|
||||
<groupId>com.mysema.maven</groupId>
|
||||
<artifactId>maven-apt-plugin</artifactId>
|
||||
<version>1.0.4</version>
|
||||
<artifactId>apt-maven-plugin</artifactId>
|
||||
<version>1.0.9</version>
|
||||
<configuration>
|
||||
<processor>com.mysema.query.apt.jpa.JPAAnnotationProcessor</processor>
|
||||
</configuration>
|
||||
|
||||
13
readme.md
13
readme.md
@@ -29,17 +29,8 @@ Download the jar though Maven:
|
||||
<dependency>
|
||||
<groupId>org.springframework.data</groupId>
|
||||
<artifactId>spring-data-jpa</artifactId>
|
||||
<version>1.1.0.BUILD-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<repository>
|
||||
<id>spring-maven-snapshot</id>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
</snapshots>
|
||||
<name>Springframework Maven SNAPSHOT Repository</name>
|
||||
<url>http://maven.springframework.org/snapshot</url>
|
||||
</repository>
|
||||
<version>1.3.1.RELEASE</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
Also include your JPA persistence provider of choice (Hibernate, EclipseLink, OpenJpa). Setup basic Spring JPA configuration as well as Spring Data JPA repository support.
|
||||
|
||||
@@ -1,7 +1,17 @@
|
||||
Spring Data JPA Changelog
|
||||
=========================
|
||||
|
||||
Changes in version 1.3.0.RELEASE (2012-02-07)
|
||||
Changes in version 1.3.1.RELEASE (2013-04-16)
|
||||
---------------------------------------------
|
||||
* Support query internal LIKE expressions (DATAJPA-292)
|
||||
* Code doesn't compile with JDK 6 due to generic method signature (DATAJPA-304)
|
||||
* XML Schema Validation errors in STS (DATAJPA-314)
|
||||
* Allow building against Hibernate 4 (DATAJPA-316)
|
||||
* JpaRepository interface should have @NoRepositoryBean (DATAJPA-317)
|
||||
* Specifications must support null as a parent Specification (DATAJPA-300)
|
||||
* Prevent duplicate registration of PersistenceAnnotationBeanPostProcessor (DATAJPA-308)
|
||||
|
||||
Changes in version 1.3.0.RELEASE (2013-02-07)
|
||||
---------------------------------------------
|
||||
* Added support for annotation based auditing (DATAJPA-116)
|
||||
* SimpleJpaRepository.exists(ID) works now, if ID is an composite key (DATAJPA-266)
|
||||
@@ -15,7 +25,7 @@ Changes in version 1.3.0.RELEASE (2012-02-07)
|
||||
* Improved build (DATAJPA-285, DATAJPA-271)
|
||||
* Upgraded to JodaTime 2.1 (DATAJPA-293)
|
||||
|
||||
Changes in version 1.2.1.RELEASE (2012-02-07)
|
||||
Changes in version 1.2.1.RELEASE (2013-02-07)
|
||||
---------------------------------------------
|
||||
* SimpleJpaRepository.exists(ID) fails, if ID is an composite key (DATAJPA-266)
|
||||
* LockModePopulatingMethodInterceptor leak causes memory leak (DATAJPA-268)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Spring Data JPA 1.0
|
||||
Copyright (c) [2011] SpringSource, a division of VMware, Inc.
|
||||
Spring Data JPA 1.3.1.RELEASE
|
||||
Copyright (c) [2013] SpringSource, a division of VMware, Inc.
|
||||
|
||||
This product is licensed to you under the Apache License, Version 2.0 (the "License").
|
||||
You may not use this product except in compliance with the License.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
SPRING DATA JPA 1.0.0 M1 (Feb 10, 2011)
|
||||
---------------------------------------
|
||||
SPRING DATA JPA 1.3.1.RELEASE (Apr 16, 2013)
|
||||
--------------------------------------------
|
||||
|
||||
Spring Data Jpa is released under the terms of the Apache Software License Version 2.0 (see license.txt).
|
||||
|
||||
|
||||
Reference in New Issue
Block a user