Hi Biswajit,
The distribution management configuration can be found in the parent pom of
flink-parent:
<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
<version>18</version>
</parent>
<distributionManagement>
<repository>
<id>apache.releases.https</id>
<name>Apache Release Distribution Repository</name>
</repository>
<snapshotRepository>
<id>apache.snapshots.https</id>
<name>${distMgmtSnapshotsName}</name>
<url>${distMgmtSnapshotsUrl}</url>
</snapshotRepository>
</distributionManagement>
The properties are set to the following values in the parent pom:
<distMgmtSnapshotsName>Apache Development Snapshot Repository</distMgmtSnapshotsName>
With -DdistMgmtSnapshotsUrl you should be able to provide the url of your own
repository.
Best,
Gary