30 lines
1020 B
XML
30 lines
1020 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>com.baeldung.pulsar</groupId>
|
||
|
<artifactId>apache-pulsar</artifactId>
|
||
|
<version>0.0.1</version>
|
||
|
<name>apache-pulsar</name>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.baeldung</groupId>
|
||
|
<artifactId>parent-modules</artifactId>
|
||
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
<relativePath>..</relativePath>
|
||
|
</parent>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.pulsar</groupId>
|
||
|
<artifactId>pulsar-client</artifactId>
|
||
|
<version>${pulsar-client.version}</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<properties>
|
||
|
<pulsar-client.version>2.1.1-incubating</pulsar-client.version>
|
||
|
</properties>
|
||
|
</project>
|