Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bd1b56e

Browse files
author
Claudio Fahey
committedAug 13, 2019
Maven publish settings are now defined in gradle.properties
Signed-off-by: Claudio Fahey <claudio.fahey@dell.com>
1 parent 87770e9 commit bd1b56e

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed
 

‎flink-connector-examples/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,10 @@ publishing {
119119
repositories {
120120
maven {
121121
credentials {
122-
username "nautilus"
123-
password "password"
122+
username username
123+
password password
124124
}
125-
url = "http://repo/maven2"
125+
url projectRepoUrl
126126
}
127127
}
128128

‎gradle.properties

+6-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,9 @@ hadoopVersion=2.8.1
2828
kryoSerializerVersion=0.45
2929
sparkVersion=2.2.0
3030
scalaJava8CompatVersion=0.9.0
31-
slf4jLog4JVersion=1.7.25
31+
slf4jLog4JVersion=1.7.25
32+
33+
# Below is used for publishing to the Maven repo in Nautilus.
34+
projectRepoUrl=http://localhost:9092/maven2
35+
username=nautilus
36+
password=password

0 commit comments

Comments
 (0)
Please sign in to comment.