Github user uce commented on a diff in the pull request: https://github.com/apache/flink/pull/333#discussion_r23528552 --- Diff: flink-dist/pom.xml --- @@ -436,6 +436,37 @@ under the License. </gitDescribe> </configuration> </plugin> + + <!-- create a symbolic link to the build target in the root directory --> + <plugin> + <groupId>com.pyx4j</groupId> + <artifactId>maven-junction-plugin</artifactId> + <version>1.0.3</version> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>link</goal> + </goals> + </execution> + <execution> + <id>unlink</id> + <phase>clean</phase> + <goals> + <goal>unlink</goal> + </goals> + </execution> + </executions> + <configuration> + <links> + <link> + <dst>${basedir}/../build-target</dst> --- End diff -- I couldn't find a document stating that $basedir is deprecated, but I think you are right in the sense that the project prefix is used for everything related to the POM of the project (I think in previous versions the (now deprecated) prefix was `pom` and both the `version` and `basedir` properties are "built-ins"). We use $basedir in other places as well.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---