File tree Expand file tree Collapse file tree 3 files changed +23
-4
lines changed Expand file tree Collapse file tree 3 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 1
1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
2
3
+
4
+ ext {
5
+ versionMajor = " 1"
6
+ versionMinor = " 0"
7
+ versionPatch = " 1"
8
+ }
9
+
3
10
buildscript {
4
11
ext. kotlin_version = ' 1.1.2-5'
5
12
repositories {
@@ -14,7 +21,11 @@ buildscript {
14
21
allprojects {
15
22
repositories {
16
23
jcenter()
24
+ mavenCentral()
17
25
}
26
+
27
+ group = ' com.car2go'
28
+ version = " ${ versionMajor} .${ versionMinor} .${ versionPatch} "
18
29
}
19
30
20
31
task clean (type : Delete ) {
Original file line number Diff line number Diff line change 1
1
apply plugin : ' java'
2
+ apply plugin : ' maven'
3
+
4
+ ext {
5
+ name = ' Endpoint2mock Compiler'
6
+ artifactId = ' endpoint2mock-compiler'
7
+ }
2
8
3
9
targetCompatibility = JavaVersion . VERSION_1_7
4
10
sourceCompatibility = JavaVersion . VERSION_1_7
5
11
6
- repositories {
7
- mavenCentral()
8
- }
9
-
10
12
dependencies {
11
13
compile project(' :endpoint2mock' )
12
14
Original file line number Diff line number Diff line change 1
1
apply plugin : ' java'
2
+ apply plugin : ' maven'
3
+
4
+ ext {
5
+ name = ' Endpoint2mock'
6
+ artifactId = ' endpoint2mock'
7
+ }
2
8
3
9
targetCompatibility = JavaVersion . VERSION_1_7
4
10
sourceCompatibility = JavaVersion . VERSION_1_7
You can’t perform that action at this time.
0 commit comments