Menu

Maven repository

2012-04-17
2016-12-02
  • Balazs Vamos

    Balazs Vamos - 2012-04-17

    Is there any maven repo where gwt highcharts is available?

     
  • Andrew Nguyen

    Andrew Nguyen - 2012-05-24

    I have never pushed anything to a public repos but came across this:

    sonatype for oss projects

     
  • Shawn Quinn

    Shawn Quinn - 2012-05-29

    Thanks Andrew! I'll give that a try and see if we can get GWT Highcharts published up in Sonatype. Just submitted the following ticket with them to get the process started:

    https://issues.sonatype.org/browse/OSSRH-3640

     
  • Thiago Nuic

    Thiago Nuic - 2012-08-19

    Looks like you can deploy it now. Could you please make it available at the maven repository? Thanks.

     
  • Yui-Wah "Clement" Lee

    Are there any updates on this? From which repo we can get org.moxieapps.gwt:highcharts through maven?

    Thanks!

     
  • Shawn Quinn

    Shawn Quinn - 2014-04-21

    GWT Highcharts is currently not available in a public maven repo. In case it helps others, this is the technique we often use to treat the GWT Highcharts lib as a regular maven dependency in a pom:

        <dependency>
            <groupId>org.moxieapps.gwt</groupId>
            <artifactId>org.moxieapps.gwt.highcharts</artifactId>
            <version>1.6.0</version>
            <scope>system</scope>
            <systemPath>${basedir}/lib/org.moxieapps.gwt.highcharts-1.6.0.jar</systemPath>
        </dependency>
    
     
  • Michael Kimberlin

    I'd like to second the desire to see this pushed up to a public maven repo. It looks like sonatype has resolved your ticket and has things ready to go for publishing. Any chance that will happen in the near future?

     
  • Yui-Wah "Clement" Lee

    Hi,

    We have been using maven with 1.5.0 [1] for quite a while and it works very well for us. I saw that 1.7.0 has been out since Jun 2015. Is there any plan to also push 1.7.0 through maven? (I saw that 1.6.0 is already there).

    Thanks for the great work!

    (Note . In our case, we use an artifactId that is slightly different to what Shawn said above (in 2014-04-21). Our pom has a fragment like this:

        <dependency>
            <groupId>org.moxieapps.gwt</groupId>
            <artifactId>highcharts</artifactId>
            <version>1.5.0</version>
        </dependency>
    
     

Log in to post a comment.