Skip to content

felfert/digitalocean2-fixed

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CI

What is this?

A backported fix for version 2.5.0 of the digitalocean2 provider of apache jclouds. The original PR is here apache/jclouds#216

If you still use apache-jclouds 2.5.0, to use this fixed version in your maven projects, modify your project's pom.xml like this:

Before

    <dependency>
      <groupId>org.apache.jclouds</groupId>
      <artifactId>jclouds-allcompute</artifactId>
      <version>2.5.0</version>
    </dependency>

After

    <dependency>
      <groupId>org.apache.jclouds</groupId>
      <artifactId>jclouds-allcompute</artifactId>
      <version>2.5.0</version>
      <exclusions>
        <!-- exclude broken digitalocean2 ... -->
        <exclusion>
          <groupId>org.apache.jclouds.provider</groupId>
          <artifactId>digitalocean2</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
    <!-- ... and use the backported fix instead -->
    <dependency>
      <groupId>com.github.felfert</groupId>
      <artifactId>digitalocean2-fixed</artifactId>
      <version>2.5.1</version>
    </dependency>

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages