Skip to content

Commit

Permalink
Maven publish settings are now defined in gradle.properties
Browse files Browse the repository at this point in the history
Signed-off-by: Claudio Fahey <[email protected]>
  • Loading branch information
Claudio Fahey committed Aug 13, 2019
1 parent 87770e9 commit bd1b56e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
6 changes: 3 additions & 3 deletions flink-connector-examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ publishing {
repositories {
maven {
credentials {
username "nautilus"
password "password"
username username
password password
}
url = "http://repo/maven2"
url projectRepoUrl
}
}

Expand Down
7 changes: 6 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,9 @@ hadoopVersion=2.8.1
kryoSerializerVersion=0.45
sparkVersion=2.2.0
scalaJava8CompatVersion=0.9.0
slf4jLog4JVersion=1.7.25
slf4jLog4JVersion=1.7.25

# Below is used for publishing to the Maven repo in Nautilus.
projectRepoUrl=http://localhost:9092/maven2
username=nautilus
password=password

0 comments on commit bd1b56e

Please sign in to comment.