-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpom.xml
44 lines (41 loc) · 1.95 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>com.amazonaws</groupId>
<artifactId>amazon-msf-examples</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<name>Amazon Managed Service for Apache Flink - Java examples</name>
<!-- This parent pom does not define any common dependencies or configuration.
It's only used to simplify importing all Java examples in your IDE or building all of them.
You can still import each project independently, if you prefer. -->
<modules>
<module>AsyncIO</module>
<module>AvroGlueSchemaRegistryKafka</module>
<module>AvroGlueSchemaRegistryKinesis</module>
<module>CustomMetrics</module>
<module>GettingStarted</module>
<module>GettingStartedTable</module>
<module>Iceberg/IcebergDataStreamSink</module>
<module>Iceberg/IcebergDataStreamSource</module>
<module>Iceberg/S3TableSink</module>
<module>KafkaConfigProviders/Kafka-mTLS-Keystore-ConfigProviders</module>
<module>KafkaConfigProviders/Kafka-SASL_SSL-ConfigProviders</module>
<module>KafkaConfigProviders/Kafka-mTLS-Keystore-Sql-ConfigProviders</module>
<module>KafkaConnectors</module>
<module>KinesisConnectors</module>
<module>DynamoDBStreamSource</module>
<module>KinesisFirehoseSink</module>
<module>S3ParquetSink</module>
<module>S3Sink</module>
<module>Windowing</module>
<module>Serialization/CustomTypeInfo</module>
<module>SideOutputs</module>
<module>PrometheusSink</module>
<module>SQSSink</module>
<module>S3AvroSink</module>
<module>S3AvroSource</module>
</modules>
</project>