Skip to content

Commit

Permalink
开始1.0.1-SNAPSHOT,基于JDK8
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenix committed Aug 13, 2015
1 parent cb7a8a7 commit eec9736
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ allprojects {
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
options.debug = "on"
sourceCompatibility = 1.7
targetCompatibility = 1.7
sourceCompatibility = 1.8
targetCompatibility = 1.8
}

tasks.withType(Javadoc) {
Expand Down Expand Up @@ -108,7 +108,7 @@ artifactory {
bintray {
user = properties.getProperty("bintray.user")
key = properties.getProperty("bintray.apikey")
configurations = ['archives']
publications('mavenJava')
pkg {
repo = "maven"
name = "java-utils" //发布到JCenter上的项目名字
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group = cn.wujc
moduleName = java-utils
version = 1.0.0
version = 1.0.1-SNAPSHOT

springVersion = 4.1.6.RELEASE
springDataJpaVersion = 1.7.0.RELEASE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import org.springside.modules.web.Servlets;

import javax.servlet.ServletRequest;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
Expand All @@ -14,7 +15,7 @@
* Operator增加IN,NOTNULL
* 增加方法parseFromServletRequest,parseFromMap
*/
public class SearchFilter {
public class SearchFilter implements Serializable{

public enum Operator {
EQ, NE, LIKE, GT, LT, GTE, LTE, IN, ISNULL, NOTNULL, INARRAY
Expand Down

0 comments on commit eec9736

Please sign in to comment.