zetbaitsu / Compressor

An android image compression library.
7.09k stars 963 forks source link

Migration from JCenter #176

Closed jakoss closed 3 years ago

jakoss commented 3 years ago

In may this library won't be available from JCenter: https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/

Please migrate this library to some other repository

zetbaitsu commented 3 years ago

Uploaded to maven central https://search.maven.org/artifact/id.zelory/compressor

jakoss commented 3 years ago

Thanks!

jakoss commented 3 years ago

@zetbaitsu i'm not sure if that's related, but i have strange error during gradle sync:

Failed to resolve: :unspecified:
Affected Modules: app

Removing the compressor dependency seems to fix that

ivanpons commented 3 years ago

There is a problem with the dependencies. There is a "unspecified" dependenciy


<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>id.zelory</groupId>
  <artifactId>compressor</artifactId>
  <version>3.0.0</version>
  <packaging>aar</packaging>
  <name>compressor</name>
  <description>An android image compressor library</description>
  <url>https://github.com/zetbaitsu/Compressor</url>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>zetbaitsu</id>
      <name>Zetra</name>
      <email>zetbaitsu@gmail.com</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:github.com/zetbaitsu/Compressor.git</connection>
    <developerConnection>scm:git:ssh://github.com/zetbaitsu/Compressor.git</developerConnection>
    <url>https://github.com/zetbaitsu/Compressor/tree/main</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId/>
      <artifactId>unspecified</artifactId>
      <version/>
    </dependency>
    <dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-stdlib-jdk7</artifactId>
      <version>1.3.61</version>
    </dependency>
    <dependency>
      <groupId>org.jetbrains.kotlinx</groupId>
      <artifactId>kotlinx-coroutines-core</artifactId>
      <version>1.3.3</version>
    </dependency>
  </dependencies>
</project>
jakoss commented 3 years ago

@ivanpons nice timing, 30 seconds apart! :D

daverix commented 3 years ago

@ivanpons I have the same problem and created #179 before finding this issue.

klvnmacharia commented 3 years ago

I have the same issue

zetbaitsu commented 3 years ago

@ivanpons and @klvnmacharia Please check this comment https://github.com/zetbaitsu/Compressor/issues/179#issuecomment-804110506

klvnmacharia commented 3 years ago

Thanks @zetbaitsu