Skip to content

Commit 9c35a90

Browse files
committed
Artifact group filled
1 parent 192fc99 commit 9c35a90

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

build.gradle

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
apply plugin: 'java'
22
apply plugin: 'eclipse'
33

4-
sourceCompatibility = 1.6
5-
version = '0.6'
4+
sourceCompatibility = '1.6'
5+
targetCompatibility = '1.6'
66

7-
manifest.mainAttributes(
8-
'Implementation-Title': 'java-OracleSQL-dsl',
9-
'Implementation-Version': version
10-
)
7+
group = 'com.thibaultdelor'
8+
version = '0.6'
119

1210
repositories {
1311
mavenCentral()
@@ -18,6 +16,12 @@ dependencies {
1816
testCompile group: 'junit', name: 'junit', version:'4.+'
1917
testCompile group: 'com.thibaultdelor', name: 'JunitSQLMatcher', version: '+'
2018
}
19+
2120
eclipseClasspath {
2221
downloadSources = false; // required for eclipseClasspath to work
23-
}
22+
}
23+
24+
manifest.mainAttributes(
25+
'Implementation-Title': 'java-OracleSQL-dsl',
26+
'Implementation-Version': version
27+
)

0 commit comments

Comments
 (0)