fuzziness / kabeja

NO LONGER MANTAINED! Kabeja is a Java library for parsing, processing and converting Autodesk's DXF format. You can use Kabeja from the CommandLine or embed into your application. All parsed data are accessible with the DOM-like API. The processing system allows you to process, filter (e.g. XSLT) and convert DXF drafts to different output formats (SVG, JPEG, PNG, TIFF, PDF, XML).
http://kabeja.sourceforge.net/
118 stars 76 forks source link

deploy to maven central #1

Open Eljah opened 7 years ago

Eljah commented 7 years ago

I cant' find kabeja's artifact in no maven repo. Please add it!

pfried commented 7 years ago

I imported it now via Jitpack, see https://jitpack.io/#fuzziness/kabeja/master. It will pull the repository and provide an importable dependency. But a maven central repo would be really great

vatbub commented 1 year ago

Note that the latest build failed on Jitpack. To get the most up to date version, use this:

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

<dependency>
    <groupId>com.github.fuzziness.kabeja</groupId>
    <artifactId>kabeja-core</artifactId>
    <version>master-dd499942c8-1</version>
</dependency>