Bump to 10.4.1 agent (@Transient properties included in mapped superclass enhancement detection)

This commit is contained in:
rob bygrave
2017-08-04 22:59:53 +12:00
parent cdaf8ee6d5
commit b74fed7073
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -160,7 +160,7 @@
<dependency>
<groupId>io.ebean</groupId>
<artifactId>ebean-agent</artifactId>
<version>10.3.1</version>
<version>10.4.1</version>
<scope>test</scope>
</dependency>
@@ -232,7 +232,7 @@
<plugin>
<groupId>io.ebean</groupId>
<artifactId>ebean-maven-plugin</artifactId>
<version>10.3.1</version>
<version>10.4.1</version>
<executions>
<execution>
<id>test</id>
@@ -1,7 +1,7 @@
package org.tests.model.mappedsuper;
import javax.persistence.MappedSuperclass;
import javax.persistence.Transient;
//import javax.persistence.Transient;
@MappedSuperclass
public class NotEnhancedMappedSuper {
@@ -10,8 +10,8 @@ public class NotEnhancedMappedSuper {
private transient Long one;
@Transient
private Long two;
// @Transient
private transient Long two;
public Long getOne() {
return one;