Skip to content

Commit 8ec4dcd

Browse files
committed
Set project org and version for local Maven/Gradle install
1 parent 2dcbca8 commit 8ec4dcd

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

build.gradle

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
defaultTasks 'build'
33

44
ext {
5-
fjVersion = "4.0-java8"
6-
projectName = "functionaljava"
7-
}
5+
}
6+
7+
allprojects {
8+
ext {
9+
fjVersion = "4.0-SNAPSHOT"
10+
projectName = "functionaljava"
11+
}
12+
version = fjVersion
13+
group = "org.functionaljava"
14+
}
15+
16+
subprojects {
17+
18+
}

core/build.gradle

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

1010
// Apply the java plugin to add support for Java
1111
apply plugin: 'java'
12+
apply plugin: 'maven'
1213
apply plugin: 'scala'
1314

1415
defaultTasks 'build'

0 commit comments

Comments
 (0)