Skip to content
This repository has been archived by the owner on Feb 24, 2022. It is now read-only.

Unable to build due to missing dependencies #1

Open
danielbryantuk opened this issue Oct 27, 2014 · 1 comment
Open

Unable to build due to missing dependencies #1

danielbryantuk opened this issue Oct 27, 2014 · 1 comment

Comments

@danielbryantuk
Copy link

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
Copy link

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


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>

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Development

No branches or pull requests

2 participants