kobjects / kxml2

Small XmlPull compatible parser
MIT License
41 stars 21 forks source link

Where you find org.xmlpull', name: 'xmlpull', version: '1.1.4.0???? #15

Open DxrMorgan opened 3 years ago

DxrMorgan commented 3 years ago

Could not resolve org.xmlpull:xmlpull:1.1.4.0.

Possible solution:

implementation(group: 'org.xmlpull', name: 'xmlpull', version: '1.1.4.0')

Official vesion1.1.3.4d_b4_min!

Did you check you lib??? 1.1.4.0 is you dream?

unverbraucht commented 3 years ago

Bintray has shut down and so all my repos have been deleted. The Dependency has moved to https://gitlab.com/om7sense-public/libraries/xmlpull-api-v1/-/packages/1855300, so try

<repositories>
  <repository>
    <id>gitlab-maven</id>
    <url>https://gitlab.com/api/v4/projects/26729549/packages/maven</url>
  </repository>
</repositories>

<distributionManagement>
  <repository>
    <id>gitlab-maven</id>
    <url>https://gitlab.com/api/v4/projects/26729549/packages/maven</url>
  </repository>

  <snapshotRepository>
    <id>gitlab-maven</id>
    <url>https://gitlab.com/api/v4/projects/26729549/packages/maven</url>
  </snapshotRepository>
</distributionManagement>

<dependency>
  <groupId>org.xmlpull</groupId>
  <artifactId>xmlpull</artifactId>
  <version>1.1.4.0</version>
</dependency>
egaebel commented 3 years ago

I can verify that the above works for builds!