update dependencies
This commit is contained in:
parent
b9848966c4
commit
5a44d0cffc
4 changed files with 64 additions and 45 deletions
19
pom.xml
19
pom.xml
|
@ -35,20 +35,21 @@
|
|||
</parent>
|
||||
<properties>
|
||||
<!-- Main Framework -->
|
||||
<dbflute.version>1.2.0</dbflute.version>
|
||||
<lastaflute.version>1.1.3</lastaflute.version>
|
||||
<lasta.di.version>0.8.0</lasta.di.version>
|
||||
<dbflute.version>1.2.1</dbflute.version>
|
||||
<lastaflute.version>1.1.4</lastaflute.version>
|
||||
<lasta.di.version>0.8.1</lasta.di.version>
|
||||
<lasta.taglib.version>0.7.3</lasta.taglib.version>
|
||||
<lasta.job.version>0.5.3</lasta.job.version>
|
||||
<mailflute.version>0.6.0</mailflute.version>
|
||||
<mailflute.version>0.6.1</mailflute.version>
|
||||
|
||||
<!-- Partner Library -->
|
||||
<slf4j.version>1.7.28</slf4j.version>
|
||||
<slf4j.version>1.7.29</slf4j.version>
|
||||
<log4j.version>2.11.1</log4j.version>
|
||||
<jackson.version>2.9.10</jackson.version>
|
||||
<jackson.version>2.10.1</jackson.version>
|
||||
<commons.fileupload.version>1.4</commons.fileupload.version>
|
||||
<asm.version>7.2</asm.version>
|
||||
<tika.version>1.22</tika.version>
|
||||
<groovy.version>3.0.0-rc-1</groovy.version>
|
||||
|
||||
<!-- Crawler -->
|
||||
<crawler.version>3.4.4-SNAPSHOT</crawler.version>
|
||||
|
@ -62,7 +63,7 @@
|
|||
<cluster.runner.version>${elasticsearch.version}.0</cluster.runner.version>
|
||||
|
||||
<!-- Tomcat -->
|
||||
<tomcat.version>9.0.26</tomcat.version>
|
||||
<tomcat.version>9.0.29</tomcat.version>
|
||||
<tomcat.boot.version>0.7.3</tomcat.boot.version>
|
||||
|
||||
<!-- Testing -->
|
||||
|
@ -1339,7 +1340,7 @@
|
|||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-databind</artifactId>
|
||||
<version>${jackson.version}.1</version>
|
||||
<version>${jackson.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||||
|
@ -1368,7 +1369,7 @@
|
|||
<dependency>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
<artifactId>groovy</artifactId>
|
||||
<version>2.5.8</version>
|
||||
<version>${groovy.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Tomcat -->
|
||||
|
|
|
@ -44,6 +44,7 @@ public abstract class EsAbstractEntity implements Entity, Serializable, Cloneabl
|
|||
protected final EntityUniqueDrivenProperties __uniqueDrivenProperties = newUniqueDrivenProperties();
|
||||
protected final EntityModifiedProperties __modifiedProperties = newModifiedProperties();
|
||||
protected EntityModifiedProperties __specifiedProperties;
|
||||
protected boolean __createdBySelect;
|
||||
|
||||
// ===================================================================================
|
||||
// Doc Meta
|
||||
|
@ -163,18 +164,6 @@ public abstract class EsAbstractEntity implements Entity, Serializable, Cloneabl
|
|||
__uniqueDrivenProperties.clear();
|
||||
}
|
||||
|
||||
// ===================================================================================
|
||||
// Birthplace Mark
|
||||
// ===============
|
||||
@Override
|
||||
public void markAsSelect() {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean createdBySelect() {
|
||||
return false;
|
||||
}
|
||||
|
||||
// ===================================================================================
|
||||
// Classification
|
||||
// ==============
|
||||
|
@ -187,6 +176,23 @@ public abstract class EsAbstractEntity implements Entity, Serializable, Cloneabl
|
|||
return false;
|
||||
}
|
||||
|
||||
// ===================================================================================
|
||||
// Birthplace Mark
|
||||
// ===============
|
||||
@Override
|
||||
public void markAsSelect() {
|
||||
__createdBySelect = true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean createdBySelect() {
|
||||
return __createdBySelect;
|
||||
}
|
||||
|
||||
public void clearMarkAsSelect() {
|
||||
__createdBySelect = false;
|
||||
}
|
||||
|
||||
// ===================================================================================
|
||||
// Empty String
|
||||
// ============
|
||||
|
|
|
@ -44,6 +44,7 @@ public abstract class EsAbstractEntity implements Entity, Serializable, Cloneabl
|
|||
protected final EntityUniqueDrivenProperties __uniqueDrivenProperties = newUniqueDrivenProperties();
|
||||
protected final EntityModifiedProperties __modifiedProperties = newModifiedProperties();
|
||||
protected EntityModifiedProperties __specifiedProperties;
|
||||
protected boolean __createdBySelect;
|
||||
|
||||
// ===================================================================================
|
||||
// Doc Meta
|
||||
|
@ -163,18 +164,6 @@ public abstract class EsAbstractEntity implements Entity, Serializable, Cloneabl
|
|||
__uniqueDrivenProperties.clear();
|
||||
}
|
||||
|
||||
// ===================================================================================
|
||||
// Birthplace Mark
|
||||
// ===============
|
||||
@Override
|
||||
public void markAsSelect() {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean createdBySelect() {
|
||||
return false;
|
||||
}
|
||||
|
||||
// ===================================================================================
|
||||
// Classification
|
||||
// ==============
|
||||
|
@ -187,6 +176,23 @@ public abstract class EsAbstractEntity implements Entity, Serializable, Cloneabl
|
|||
return false;
|
||||
}
|
||||
|
||||
// ===================================================================================
|
||||
// Birthplace Mark
|
||||
// ===============
|
||||
@Override
|
||||
public void markAsSelect() {
|
||||
__createdBySelect = true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean createdBySelect() {
|
||||
return __createdBySelect;
|
||||
}
|
||||
|
||||
public void clearMarkAsSelect() {
|
||||
__createdBySelect = false;
|
||||
}
|
||||
|
||||
// ===================================================================================
|
||||
// Empty String
|
||||
// ============
|
||||
|
|
|
@ -44,6 +44,7 @@ public abstract class EsAbstractEntity implements Entity, Serializable, Cloneabl
|
|||
protected final EntityUniqueDrivenProperties __uniqueDrivenProperties = newUniqueDrivenProperties();
|
||||
protected final EntityModifiedProperties __modifiedProperties = newModifiedProperties();
|
||||
protected EntityModifiedProperties __specifiedProperties;
|
||||
protected boolean __createdBySelect;
|
||||
|
||||
// ===================================================================================
|
||||
// Doc Meta
|
||||
|
@ -163,18 +164,6 @@ public abstract class EsAbstractEntity implements Entity, Serializable, Cloneabl
|
|||
__uniqueDrivenProperties.clear();
|
||||
}
|
||||
|
||||
// ===================================================================================
|
||||
// Birthplace Mark
|
||||
// ===============
|
||||
@Override
|
||||
public void markAsSelect() {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean createdBySelect() {
|
||||
return false;
|
||||
}
|
||||
|
||||
// ===================================================================================
|
||||
// Classification
|
||||
// ==============
|
||||
|
@ -187,6 +176,23 @@ public abstract class EsAbstractEntity implements Entity, Serializable, Cloneabl
|
|||
return false;
|
||||
}
|
||||
|
||||
// ===================================================================================
|
||||
// Birthplace Mark
|
||||
// ===============
|
||||
@Override
|
||||
public void markAsSelect() {
|
||||
__createdBySelect = true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean createdBySelect() {
|
||||
return __createdBySelect;
|
||||
}
|
||||
|
||||
public void clearMarkAsSelect() {
|
||||
__createdBySelect = false;
|
||||
}
|
||||
|
||||
// ===================================================================================
|
||||
// Empty String
|
||||
// ============
|
||||
|
|
Loading…
Add table
Reference in a new issue