|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" |
3 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 4 | <modelVersion>4.0.0</modelVersion> |
6 | | - |
7 | | - <groupId>org.neo4j</groupId> |
8 | | - <artifactId>neo4j-streams-consumer</artifactId> |
9 | | - <version>4.1.5</version> |
10 | | - <name>Neo4j Streams - Consumer</name> |
11 | | - <description>Neo4j Streams - Kafka Consumer</description> |
12 | | - <packaging>jar</packaging> |
13 | | - |
14 | 5 | <parent> |
15 | 6 | <groupId>org.neo4j</groupId> |
16 | 7 | <artifactId>neo4j-streams-parent</artifactId> |
17 | 8 | <version>4.1.5</version> |
18 | 9 | </parent> |
19 | | - |
20 | | - <repositories> |
21 | | - <repository> |
22 | | - <id>confluent</id> |
23 | | - <name>Confluent</name> |
24 | | - <url>https://packages.confluent.io/maven/</url> |
25 | | - </repository> |
26 | | - </repositories> |
27 | | - <pluginRepositories> |
28 | | - <pluginRepository> |
29 | | - <id>confluent</id> |
30 | | - <url>https://packages.confluent.io/maven/</url> |
31 | | - </pluginRepository> |
32 | | - </pluginRepositories> |
33 | | - |
| 10 | + <artifactId>neo4j-streams-consumer</artifactId> |
| 11 | + <version>4.1.5</version> |
| 12 | + <packaging>jar</packaging> |
| 13 | + <name>Neo4j Streams - Consumer</name> |
| 14 | + <description>Neo4j Streams - Kafka Consumer</description> |
34 | 15 | <dependencies> |
35 | 16 | <dependency> |
36 | | - <groupId>org.neo4j</groupId> |
37 | | - <artifactId>neo4j-streams-common</artifactId> |
38 | | - <version>${project.version}</version> |
39 | | - <scope>provided</scope> |
| 17 | + <groupId>io.confluent</groupId> |
| 18 | + <artifactId>kafka-avro-serializer</artifactId> |
40 | 19 | </dependency> |
41 | 20 | <dependency> |
42 | 21 | <groupId>org.apache.avro</groupId> |
43 | 22 | <artifactId>avro</artifactId> |
44 | 23 | </dependency> |
45 | | - <dependency> |
46 | | - <groupId>io.confluent</groupId> |
47 | | - <artifactId>kafka-avro-serializer</artifactId> |
48 | | - </dependency> |
49 | 24 | <dependency> |
50 | 25 | <groupId>org.apache.kafka</groupId> |
51 | 26 | <artifactId>kafka-clients</artifactId> |
52 | 27 | </dependency> |
53 | 28 | <dependency> |
54 | 29 | <groupId>org.neo4j</groupId> |
55 | | - <artifactId>neo4j-streams-test-support</artifactId> |
| 30 | + <artifactId>neo4j-streams-common</artifactId> |
56 | 31 | <version>${project.version}</version> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>org.neo4j</groupId> |
| 35 | + <artifactId>neo4j</artifactId> |
| 36 | + <scope>provided</scope> |
| 37 | + <exclusions> |
| 38 | + <exclusion> |
| 39 | + <groupId>org.slf4j</groupId> |
| 40 | + <artifactId>slf4j-nop</artifactId> |
| 41 | + </exclusion> |
| 42 | + </exclusions> |
| 43 | + </dependency> |
| 44 | + <dependency> |
| 45 | + <groupId>org.hamcrest</groupId> |
| 46 | + <artifactId>hamcrest-all</artifactId> |
| 47 | + <scope>test</scope> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>org.jetbrains.kotlin</groupId> |
| 51 | + <artifactId>kotlin-test</artifactId> |
57 | 52 | <scope>test</scope> |
58 | 53 | </dependency> |
59 | 54 | <dependency> |
60 | 55 | <groupId>org.neo4j</groupId> |
61 | 56 | <artifactId>log-test-utils</artifactId> |
62 | 57 | <scope>test</scope> |
63 | 58 | </dependency> |
64 | | - |
| 59 | + <dependency> |
| 60 | + <groupId>org.neo4j</groupId> |
| 61 | + <artifactId>neo4j-streams-test-support</artifactId> |
| 62 | + <version>${project.version}</version> |
| 63 | + <scope>test</scope> |
| 64 | + </dependency> |
65 | 65 | </dependencies> |
| 66 | + <repositories> |
| 67 | + <repository> |
| 68 | + <id>confluent</id> |
| 69 | + <name>Confluent</name> |
| 70 | + <url>https://packages.confluent.io/maven/</url> |
| 71 | + </repository> |
| 72 | + </repositories> |
| 73 | + <pluginRepositories> |
| 74 | + <pluginRepository> |
| 75 | + <id>confluent</id> |
| 76 | + <url>https://packages.confluent.io/maven/</url> |
| 77 | + </pluginRepository> |
| 78 | + </pluginRepositories> |
| 79 | + <build> |
| 80 | + <plugins> |
| 81 | + <plugin> |
| 82 | + <groupId>org.jetbrains.kotlin</groupId> |
| 83 | + <artifactId>kotlin-maven-plugin</artifactId> |
| 84 | + </plugin> |
| 85 | + <plugin> |
| 86 | + <groupId>org.apache.maven.plugins</groupId> |
| 87 | + <artifactId>maven-shade-plugin</artifactId> |
| 88 | + </plugin> |
| 89 | + </plugins> |
| 90 | + </build> |
66 | 91 | </project> |
0 commit comments