mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Bump to 10.4.1 agent (@Transient properties included in mapped superclass enhancement detection)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user