You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by GitBox <gi...@apache.org> on 2021/10/31 12:46:55 UTC

[GitHub] [flink-ml] guoweiM commented on a change in pull request #14: [FLINK-24652][iteration] Add per-round operator wrappers

guoweiM commented on a change in pull request #14:
URL: https://github.com/apache/flink-ml/pull/14#discussion_r739805858



##########
File path: pom.xml
##########
@@ -18,726 +18,730 @@ specific language governing permissions and limitations
 under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0"
-     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>23</version>
-  </parent>
-
-  <artifactId>flink-ml-parent</artifactId>
-  <groupId>org.apache.flink</groupId>
-  <name>Flink ML</name>
-  <version>0.1-SNAPSHOT</version>
-  <packaging>pom</packaging>
-
-  <url>http://flink.apache.org</url>
-  <inceptionYear>2019</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-ml</url>
-    <connection>git@github.com:apache/flink-ml.git</connection>
-    <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/flink-ml.git</developerConnection>
-  </scm>
-
-  <modules>
-    <module>flink-ml-api</module>
-    <module>flink-ml-lib</module>
-    <module>flink-ml-uber</module>
-    <module>flink-ml-iteration</module>
-    <module>flink-ml-examples</module>
-  </modules>
-
-  <properties>
-    <flink.shaded.version>12.0</flink.shaded.version>
-    <scala.binary.version>2.11</scala.binary.version>
-    <jackson.version>2.10.1</jackson.version>
-    <target.java.version>1.8</target.java.version>
-    <spotless.version>2.4.2</spotless.version>
-    <slf4j.version>1.7.15</slf4j.version>
-    <log4j.version>2.12.1</log4j.version>
-    <junit.version>4.12</junit.version>
-    <flink.forkCount>1C</flink.forkCount>
-    <flink.reuseForks>true</flink.reuseForks>
-    <flink.version>1.14.0</flink.version>
-    <zookeeper.version>3.4.14</zookeeper.version>
-
-    <!-- Can be set to any value to reproduce a specific build. -->
-    <test.randomization.seed/>
-    <test.unit.pattern>**/*Test.*</test.unit.pattern>
-  </properties>
-
-
-  <dependencies>
-    <!-- Logging API -->
-
-    <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-api</artifactId>
-    </dependency>
-
-    <!-- test dependencies -->
-
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <type>jar</type>
-      <scope>test</scope>
-    </dependency>
-
-    <!-- tests will have log4j as the default logging framework available -->
-
-    <dependency>
-      <groupId>org.apache.logging.log4j</groupId>
-      <artifactId>log4j-slf4j-impl</artifactId>
-      <scope>test</scope>
-    </dependency>
-
-    <dependency>
-      <groupId>org.apache.logging.log4j</groupId>
-      <artifactId>log4j-api</artifactId>
-      <scope>test</scope>
-    </dependency>
-
-    <dependency>
-      <groupId>org.apache.logging.log4j</groupId>
-      <artifactId>log4j-core</artifactId>
-      <scope>test</scope>
-    </dependency>
-
-    <dependency>
-      <!-- API bridge between log4j 1 and 2 -->
-      <groupId>org.apache.logging.log4j</groupId>
-      <artifactId>log4j-1.2-api</artifactId>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-
-  <dependencyManagement>
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

Review comment:
       Format?




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org