| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?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>io.projectreactor</groupId>
- <artifactId>reactor-stream</artifactId>
- <version>2.0.8.RELEASE</version>
- <name>Reactor Stream components</name>
- <description>Reactor Stream components</description>
- <url>https://github.com/reactor/reactor</url>
- <organization>
- <name>reactor</name>
- <url>http://github.com/reactor</url>
- </organization>
- <licenses>
- <license>
- <name>The Apache Software License, Version 2.0</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
- <developers>
- <developer>
- <id>smaldini</id>
- <name>Stephane Maldini</name>
- <email>smaldini@pivotal.io</email>
- </developer>
- </developers>
- <issueManagement>
- <system>GitHub Issues</system>
- <url>https://github.com/reactor/reactor/issues</url>
- </issueManagement>
- <scm>
- <connection>scm:git:git://github.com/reactor/reactor</connection>
- <developerConnection>scm:git:git://github.com/reactor/reactor</developerConnection>
- <url>https://github.com/reactor/reactor</url>
- </scm>
- <dependencies>
- <dependency>
- <groupId>com.google.code.findbugs</groupId>
- <artifactId>jsr305</artifactId>
- <version>3.0.0</version>
- <scope>compile</scope>
- <exclusions>
- <exclusion>
- <artifactId>commons-logging</artifactId>
- <groupId>commons-logging</groupId>
- </exclusion>
- </exclusions>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>io.projectreactor</groupId>
- <artifactId>reactor-core</artifactId>
- <version>2.0.8.RELEASE</version>
- <scope>compile</scope>
- <exclusions>
- <exclusion>
- <artifactId>commons-logging</artifactId>
- <groupId>commons-logging</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>net.openhft</groupId>
- <artifactId>chronicle</artifactId>
- <version>3.4.2</version>
- <scope>compile</scope>
- <exclusions>
- <exclusion>
- <artifactId>commons-logging</artifactId>
- <groupId>commons-logging</groupId>
- </exclusion>
- </exclusions>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>net.openhft</groupId>
- <artifactId>lang</artifactId>
- <version>6.6.2</version>
- <scope>compile</scope>
- <exclusions>
- <exclusion>
- <artifactId>commons-logging</artifactId>
- <groupId>commons-logging</groupId>
- </exclusion>
- </exclusions>
- <optional>true</optional>
- </dependency>
- </dependencies>
- </project>
|