Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gradle package #70

Closed
Deepak-rzt opened this issue Nov 16, 2015 · 2 comments
Closed

Gradle package #70

Deepak-rzt opened this issue Nov 16, 2015 · 2 comments

Comments

@Deepak-rzt
Copy link

Hi,
Thanks for publishing this. Is there a gradle package submitted so that I can pull it from the gradle repositories?

@zapl
Copy link

zapl commented Dec 3, 2015

Gradle uses maven repositories. There is no need for a separate gradle package. The following needs to be added to build.gradle

repositories {
    ... // there is probably maven central here
    maven {
        // for spring-data-dynamodb
        url "http://repo.opensourceagility.com/release"
    }
}

dependencies {
    ... // all the other spring dependencies
    compile 'org.socialsignin:spring-data-dynamodb:1.0.2.RELEASE'
    ...
}

That's equivalent to the following maven config

<repository>
    <id>opensourceagility-release</id>
    <url>http://repo.opensourceagility.com/release/</url
</repository>

<dependency>
  <groupId>org.socialsignin</groupId>
  <artifactId>spring-data-dynamodb</artifactId>
  <version>1.0.2.RELEASE</version>
</dependency>

@derjust
Copy link
Contributor

derjust commented Jan 25, 2016

A current release is available at http://search.maven.org/#artifactdetails%7Ccom.github.derjust%7Cspring-data-dynamodb%7C4.2.0%7Cjar - 4.2.0 is equal to the old 1.0.3-SNAPSHOT but follows a more spring-data related version schema.
As (privately) communicated with @michaellavelle, the project will continue under derjust#21.

michaellavelle pushed a commit that referenced this issue Jul 13, 2020
#70 add workaround description for Spring Boot >= 1.5.x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants