Git Product home page Git Product logo

Comments (9)

spyhunter99 avatar spyhunter99 commented on August 18, 2024 1

got tired of waiting, just published today's master to central as version 2.2.0, if anyone cares

from jdbf.

edwgiz-zz avatar edwgiz-zz commented on August 18, 2024

Hello Ivan,

A publishing of artefact in one of Maven repositories would be nice for most consumers,
Can I help to resolve this task?

from jdbf.

driv avatar driv commented on August 18, 2024

Hi Ivan,

I would like to help with this issue, what is the current state?

from jdbf.

xKopax avatar xKopax commented on August 18, 2024

this would be really nice.

from jdbf.

tuzzo77 avatar tuzzo77 commented on August 18, 2024

is there a jar for your project? Thanks!!

from jdbf.

spyhunter99 avatar spyhunter99 commented on August 18, 2024

i can help too

from jdbf.

spyhunter99 avatar spyhunter99 commented on August 18, 2024

@iryndin i'm using this with osmdroid as a utility to help read metadata for esra shape files. I'd like to just use it as a dependency but since it's not published that isn't currently an option.

  • I can publish this to central under a different group id, would you be ok with this?
  • I can roll the relevant code into our repo and link back to this one. I don't really want to maintain this though so I'd rather not do this.
  • I can help you get setup to publish this to sonatype (which syncs to central, jcenter and everything else).

Can we get this rolling? Thoughts on this?

from jdbf.

jobdiogenes avatar jobdiogenes commented on August 18, 2024

One option could be.
Use Git hub as Maven Repo.
https://gist.github.com/fernandezpablo85/03cf8b0cd2e7d8527063

from jdbf.

mvglasow avatar mvglasow commented on August 18, 2024

Using JitPack would also work—it takes the source code of the dependency from the repo and builds it on the fly. Be aware that identifiers change:

  • groupId is com.github.iryndin (if you are doing this for your own project and have your own domain, you can add a TXT record with the URL of your Github profile, then use your reverse domain name)
  • artifactId is the name of the repo (luckily both match in this case)
  • version must be a valid git ref, i.e. a branch, tag or hash. If you use a branch name, appending -SNAPSHOT will ensure you always get the latest version of that branch. So, for latest master, use master-SNAPSHOT. To get master as of this writing, use bb9f01c. (For your own project, you can add a tag matching the version name every time you release a new version.)

In a nutshell, add the following to your <project> (merging <repositories> and <dependencies> as needed):

  <repositories>
    <repository>
      <id>jitpack.io</id>
      <name>JitPack Repository</name>
      <url>https://jitpack.io</url>
    </repository>
  </repositories>
  <dependencies>
    <dependency>
      <groupId>com.github.iryndin</groupId>
      <artifactId>jdbf</artifactId>
      <version>bb9f01c</version>
    </dependency>
  </dependencies>

from jdbf.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.