Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

libtiled: update maven artifact (automatically?) #2929

Open
hoxu opened this issue Nov 4, 2020 · 4 comments
Open

libtiled: update maven artifact (automatically?) #2929

hoxu opened this issue Nov 4, 2020 · 4 comments

Comments

@hoxu
Copy link
Contributor

hoxu commented Nov 4, 2020

org.mapeditor/libtiled maven artifact is outdated (1.2.3).

It would be nice to get a new release, as there are new changes to libtiled (#2829 at least).

@bjorn
Copy link
Member

bjorn commented Nov 5, 2020

Indeed in addition to #2829 there have been significant changes in the recently merged #2207 as well.

@mikepthomas Would you be able to help with this?

@mikepthomas
Copy link
Contributor

Sure I’ll take a look at releasing this weekend 😀 I don’t think it’s trivial to do so automatically as you need to sign the assets with a gpg key (I’m currently using my personal one as we don’t have gpg set up with a valid key on a CI server) and there will probably always be a manual step to log in to sonatype oss to release to central

@mikepthomas
Copy link
Contributor

I have created a PR to update the dependency versions and pushed a release to sonatype snapshots repository #2931

You are able to get a snapshot of release 1.4.2-SNAPSHOT by adding the following to your maven pom:

    <dependencies>
        <dependency>
            <groupId>org.mapeditor</groupId>
            <artifactId>libtiled</artifactId>
            <version>1.4.2-SNAPSHOT</version>
            <type>jar</type>
        </dependency>
    </dependencies>
    <repositories>
        <repository>
            <id>sonatype-oss</id>
            <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
    </repositories>

Please let me know if you are happy with the release and I will kick off the deploy to maven central

@hoxu
Copy link
Contributor Author

hoxu commented Nov 8, 2020

@mikepthomas I don't really call libtiled much yet, but the snapshot looks good to me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants