ilastik / ilastik4ij

ImageJ plugins to run ilastik workflows
MIT License
22 stars 17 forks source link

import via maven #41

Closed tischi closed 4 years ago

tischi commented 4 years ago

@wolny

I cannot get this import to work:

        <dependency>
            <groupId>org.ilastik</groupId>
            <artifactId>ilastik4ij</artifactId>
            <version>1.7.1</version>
        </dependency>

Could it be that version 1.7.1 has not yet been pushed to some repository?

imagejan commented 4 years ago

Versions later then 1.6.1-SNAPSHOT apparently haven't been deployed, due to a missing ciManagement entry in the POM that's now required:

https://github.com/ilastik/ilastik4ij/blob/2b9028e41953d54d836437c2751ae586e1b8646b/pom.xml#L68-L70

I submitted #43 as an attempt to fix this.

imagejan commented 4 years ago

Yay, ilastik4ij-1.7.2-SNAPSHOT was successfully deployed 😄

wolny commented 4 years ago

Ah, so the deployment was done by the Travis job triggered by the merge to master event. Awesome!

imagejan commented 4 years ago

Yes: every commit to master will trigger a SNAPSHOT deployment; every release tag (created by running release-version.sh) will deploy the respective release version.