Skip to content

Commit 21d1b34

Browse files
committed
Version 0.6
* Use JUnitSQLMatcher artifact
1 parent bc4ce70 commit 21d1b34

File tree

7 files changed

+13
-96
lines changed

7 files changed

+13
-96
lines changed

build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'java'
22
apply plugin: 'eclipse'
33

44
sourceCompatibility = 1.6
5-
version = '0.5'
5+
version = '0.6'
66

77
manifest.mainAttributes(
88
'Implementation-Title': 'java-OracleSQL-dsl',
@@ -11,8 +11,13 @@ manifest.mainAttributes(
1111

1212
repositories {
1313
mavenCentral()
14+
flatDir name: 'localRepository', dirs: new File(gradle.gradleUserHomeDir,'repo')
1415
}
1516

1617
dependencies {
1718
testCompile group: 'junit', name: 'junit', version:'4.+'
19+
testCompile group: 'com.thibaultdelor', name: 'JunitSQLMatcher', version: '+'
1820
}
21+
eclipseClasspath {
22+
downloadSources = false; // required for eclipseClasspath to work
23+
}

src/test/java/com/thibaultdelor/JSQL/FunctionTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
import com.thibaultdelor.JSQL.literal.functions.SimpleFunction;
99
import com.thibaultdelor.JSQL.literal.functions.SingleArgumentFunction;
10+
import com.thibaultdelor.junit.sql.junit.SQLQueryMatcher;
1011

1112
public class FunctionTest {
1213

src/test/java/com/thibaultdelor/JSQL/JoinQueryTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
import com.thibaultdelor.JSQL.criteria.BinaryCriterion.BinaryOperator;
1010
import com.thibaultdelor.JSQL.join.ExplicitJoin.JoinType;
1111

12+
import com.thibaultdelor.junit.sql.junit.SQLQueryMatcher;
13+
14+
1215
public class JoinQueryTest {
1316

1417
@Test

src/test/java/com/thibaultdelor/JSQL/JoinResolverTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import com.thibaultdelor.JSQL.criteria.BinaryCriterion;
99
import com.thibaultdelor.JSQL.criteria.BinaryCriterion.BinaryOperator;
1010
import com.thibaultdelor.JSQL.literal.PrimitiveLiteral;
11+
import com.thibaultdelor.junit.sql.junit.SQLQueryMatcher;
1112

1213
public class JoinResolverTest {
1314

src/test/java/com/thibaultdelor/JSQL/SQLQueryMatcher.java

Lines changed: 0 additions & 95 deletions
This file was deleted.

src/test/java/com/thibaultdelor/JSQL/SimpleQueryTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
import com.thibaultdelor.JSQL.literal.SimpleLiteral;
1313
import com.thibaultdelor.JSQL.literal.StringLiteral;
1414
import com.thibaultdelor.JSQL.literal.functions.SimpleFunction;
15+
import com.thibaultdelor.junit.sql.junit.SQLQueryMatcher;
1516

1617
public class SimpleQueryTest {
1718

src/test/java/com/thibaultdelor/JSQL/WhereCriterionTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
import org.junit.Assert;
88
import org.junit.Test;
9+
import com.thibaultdelor.junit.sql.junit.SQLQueryMatcher;
910

1011
public class WhereCriterionTest {
1112

0 commit comments

Comments
 (0)