This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-doris-flink-connector.git
commit f66a602c6044f6c299ad46a5a9841287fd426339 Author: Zhengguo Yang <yangz...@gmail.com> AuthorDate: Thu Dec 30 10:16:37 2021 +0800 [refactor] Standardize the writing of pom files, prepare for deployment to maven (#7477) --- pom.xml | 49 +++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 45 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 967d51d..3baae4b 100644 --- a/pom.xml +++ b/pom.xml @@ -23,11 +23,49 @@ under the License. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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> + <parent> + <groupId>org.apache</groupId> + <artifactId>apache</artifactId> + <version>18</version> + </parent> + <groupId>org.apache.doris</groupId> + <artifactId>doris-flink-connector</artifactId> + <version>flink-${flink.version}-${scala.version}-SNAPSHOT</version> + <name>Doris Flink Connector</name> + <url>https://doris.apache.org/</url> + <licenses> + <license> + <name>Apache 2.0 License</name> + <url>https://www.apache.org/licenses/LICENSE-2.0.html</url> + <distribution>repo</distribution> + </license> + </licenses> + <scm> + <connection>scm:git:g...@github.com:apache/incubator-doris.git</connection> + <developerConnection>scm:git:g...@github.com:apache/incubator-doris.git</developerConnection> + <url>scm:git:g...@github.com:apache/incubator-doris.git</url> + <tag>HEAD</tag> + </scm> + <issueManagement> + <system>GitHub</system> + <url>https://github.com/apache/incubator-doris/issues</url> + </issueManagement> - <groupId>org.apache</groupId> - <artifactId>doris-flink</artifactId> - <version>1.0.0-flink-${flink.version}_${scala.version}</version> + <mailingLists> + <mailingList> + <name>Dev Mailing List</name> + <post>d...@doris.apache.org</post> + <subscribe>dev-subscr...@doris.apache.org</subscribe> + <unsubscribe>dev-unsubscr...@doris.apache.org</unsubscribe> + </mailingList> + <mailingList> + <name>Commits Mailing List</name> + <post>commits@doris.apache.org</post> + <subscribe>commits-subscr...@doris.apache.org</subscribe> + <unsubscribe>commits-unsubscr...@doris.apache.org</unsubscribe> + </mailingList> + </mailingLists> <properties> <scala.version>2.12</scala.version> <flink.version>1.11.2</flink.version> @@ -306,13 +344,15 @@ under the License. </execution> </executions> </plugin> + <!-- <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.7.8</version> <configuration> <excludes> - <exclude>**/thrift/**</exclude></excludes> + <exclude>**/thrift/**</exclude> + </excludes> </configuration> <executions> <execution> @@ -336,6 +376,7 @@ under the License. </execution> </executions> </plugin> + --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org