This is an automated email from the ASF dual-hosted git repository. pnowojski pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink-benchmarks.git
commit 6fd66f7e7c79f67d412afe7952cea1e673636339 Author: Dawid Wysakowicz <[email protected]> AuthorDate: Thu Oct 29 14:33:10 2020 +0100 [hotfix] Fix metadata in pom.xml This commit adds missing information such as scm, link to licenses etc. Moreover it adjusts the naming of artifact and group-id to adhere to other projects under Apache Flink umbrella. --- pom.xml | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index cfe0de8..c9f9ff1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,28 @@ under the License. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> - <groupId>org.apache.flink.benchmark</groupId> - <artifactId>flink-hackathon-benchmarks</artifactId> + <groupId>org.apache.flink</groupId> + <artifactId>benchmark</artifactId> <version>0.1</version> <packaging>jar</packaging> - <name>Flink Benchmark Job</name> - <url>http://www.myorganization.org</url> + <name>Flink : Benchmark Job</name> + <url>http://flink.apache.org</url> + <inceptionYear>2014</inceptionYear> + + <licenses> + <license> + <name>The Apache Software License, Version 2.0</name> + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> + <distribution>repo</distribution> + </license> + </licenses> + + <scm> + <url>https://github.com/apache/flink-statefun</url> + <connection>[email protected]:apache/flink-benchmarks.git</connection> + <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/flink-benchmarks.git</developerConnection> + </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
