SpringOne2GX-2014 / reactive-geocoder

Reactive Geocoding Demo
Apache License 2.0
35 stars 14 forks source link

Unable to build due to missing dependencies #1

Open danielbryantuk opened 9 years ago

danielbryantuk commented 9 years ago

Hi,

I've tried to build the project, but am getting the following error:

Non-resolvable import POM: Failure to find org.springframework.cloud:spring-cloud-starters:pom:1.0.0.BUILD-SNAPSHOT

I'm guessing this is an in-house dependency - Is there a publicly accessible repository location I can add to the POM for this project to build?

Thanks in advance,

Daniel

phavelar commented 9 years ago

I can build with a few modifications in the pom, however, I get a connection exception with mongodb... here is my pom.xml:

<?xml version="1.0" encoding="UTF-8"?> <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">

4.0.0
<groupId>org.demo</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>processor</name>
<description>Demo Processor project</description>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.1.9.RELEASE</version>
    <relativePath/>
</parent>

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starters</artifactId>
            <version>1.0.0.BUILD-SNAPSHOT</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

<repositories>

    <repository>
        <id>spring-snapshot</id>
        <name>Spring Snapshots</name>
        <url>https://repo.spring.io/libs-snapshot</url>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>

    <repository>
        <id>ratpack-snapshot</id>
        <name>Ratpack Snapshots</name>
        <url>http://oss.jfrog.org/artifactory/repo</url>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>
</repositories>

<dependencies>
    <!-- Spring -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-data-mongodb</artifactId>
    </dependency>

    <!-- Ratpack (HTTP) -->
    <dependency>
        <groupId>io.ratpack</groupId>
        <artifactId>ratpack-core</artifactId>
        <version>${ratpack.version}</version>
    </dependency>
    <dependency>
        <groupId>io.ratpack</groupId>
        <artifactId>ratpack-jackson</artifactId>
        <version>${ratpack.version}</version>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-ratpack</artifactId>
        <version>${spring-boot-ratpack.version}</version>
    </dependency>

    <!-- ModelMapper -->
    <dependency>
        <groupId>org.modelmapper</groupId>
        <artifactId>modelmapper</artifactId>
        <version>0.7.2</version>
    </dependency>

    <!-- Reactor -->
    <dependency>
        <groupId>org.projectreactor</groupId>
        <artifactId>reactor-core</artifactId>
        <version>${reactor.version}</version>
    </dependency>
    <dependency>
        <groupId>org.projectreactor.spring</groupId>
        <artifactId>reactor-spring-context</artifactId>
        <version>${reactor.version}</version>
    </dependency>

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-core</artifactId>
        <version>4.1.1.RELEASE</version>
        <exclusions>
            <exclusion>
                <groupId>commons-logging</groupId>
                <artifactId>commons-logging</artifactId>
            </exclusion>
        </exclusions>
    </dependency>

    <!-- Testing -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
</dependencies>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <start-class>demo.Application</start-class>
    <java.version>1.8</java.version>
    <spring-boot-ratpack.version>1.0.0.BUILD-SNAPSHOT</spring-boot-ratpack.version>
    <reactor.version>2.0.0.M1</reactor.version>
    <ratpack.version>0.9.11</ratpack.version>
</properties>

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <configuration>
                <mainClass>demo.ProcessorApplication</mainClass>
            </configuration>
        </plugin>
    </plugins>
</build>