| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| http://www.apache.org/licenses/LICENSE-2.0 |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| 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"> |
| <parent> |
| <groupId>org.apache</groupId> |
| <artifactId>apache</artifactId> |
| <version>34</version> |
| </parent> |
| |
| <modelVersion>4.0.0</modelVersion> |
| |
| <groupId>org.apache.flink</groupId> |
| <artifactId>flink-agents</artifactId> |
| <name>Flink Agents : </name> |
| <!-- TODO: build website and update url --> |
| <url>https://flink.apache.org</url> |
| <version>0.1-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| |
| <properties> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <target.java.version>11</target.java.version> |
| <maven.compiler.source>${target.java.version}</maven.compiler.source> |
| <maven.compiler.target>${target.java.version}</maven.compiler.target> |
| <spotless.version>2.27.1</spotless.version> |
| <spotless.skip>false</spotless.skip> |
| <flink.version>1.20.3</flink.version> |
| <kafka.version>4.0.0</kafka.version> |
| <junit5.version>5.10.1</junit5.version> |
| <flink.shaded.version>17.0</flink.shaded.version> |
| <flink.shaded.jackson.version>2.14.2</flink.shaded.jackson.version> |
| <pemja.version>0.5.5</pemja.version> |
| <log4j2.version>2.23.1</log4j2.version> |
| <slf4j.version>1.7.36</slf4j.version> |
| <assertj.version>3.23.1</assertj.version> |
| <mockito.version>5.8.0</mockito.version> |
| </properties> |
| |
| <modules> |
| <module>api</module> |
| <module>examples</module> |
| <module>plan</module> |
| <module>runtime</module> |
| <module>e2e-test</module> |
| <module>integrations</module> |
| <module>dist</module> |
| </modules> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter</artifactId> |
| <version>${junit5.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.assertj</groupId> |
| <artifactId>assertj-core</artifactId> |
| <version>${assertj.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-core</artifactId> |
| <version>${mockito.version}</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>com.diffplug.spotless</groupId> |
| <artifactId>spotless-maven-plugin</artifactId> |
| <version>${spotless.version}</version> |
| <configuration> |
| <skip>${spotless.skip}</skip> |
| <java> |
| <googleJavaFormat> |
| <version>1.7</version> |
| <style>AOSP</style> |
| </googleJavaFormat> |
| |
| <!-- \# refers to the static imports --> |
| <importOrder> |
| <order>,javax,java,scala,\#</order> |
| </importOrder> |
| |
| <removeUnusedImports /> |
| </java> |
| </configuration> |
| <executions> |
| <execution> |
| <id>spotless-check</id> |
| <phase>validate</phase> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| |
| </project> |