Thank you for your response Emmanuel.
Still no joy though...  it is for 5.3.2 tapestry.


I noticed this web page doesn't work:   
http://nexus.pullrequest.org/org/got5/tapestry5-highcharts
nor anything trailing it - e.g. /1.1.0-SNAPSHOT




These are my dependencies - i've got tapestry5-jquery as well as highcharts

        <dependency>
            <groupId>org.apache.tapestry</groupId>
            <artifactId>tapestry-core</artifactId>
            <version>${tapestry-release-version}</version>
        </dependency>

   <dependency>
        <groupId>org.got5</groupId>
        <artifactId>tapestry5-jquery</artifactId>
        <version>3.0.0</version>
    </dependency>

        <!-- This adds automatic compression of JavaScript and CSS when in 
production mode. -->
        <dependency>
            <groupId>org.apache.tapestry</groupId>
            <artifactId>tapestry-yuicompressor</artifactId>
            <version>${tapestry-release-version}</version>
        </dependency>

        <!-- Uncomment this to add support for file uploads:

         <dependency>
            <groupId>org.apache.tapestry</groupId>
            <artifactId>tapestry-upload</artifactId>
            <version>${tapestry-release-version}</version>
        </dependency>

        -->

        <!-- A dependency on either JUnit or TestNG is required, or the 
surefire plugin (which runs the tests)
will fail, preventing Maven from packaging the WAR. Tapestry includes a large 
number
of testing facilities designed for use with TestNG (http://testng.org/), so 
it's recommended. -->
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>${testng-release-version}</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.easymock</groupId>
            <artifactId>easymock</artifactId>
            <version>${easymock-release-version}</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.apache.tapestry</groupId>
            <artifactId>tapestry-test</artifactId>
            <version>${tapestry-release-version}</version>
            <scope>test</scope>
        </dependency>

        <!-- Provided by the servlet container, but sometimes referenced in the 
application
       code. -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>${servlet-api-release-version}</version>
            <scope>provided</scope>
        </dependency>

        <!-- Provide dependency to the Tapestry javadoc taglet which replaces 
the Maven component report -->
        <dependency>
            <groupId>org.apache.tapestry</groupId>
            <artifactId>tapestry-javadoc</artifactId>
            <version>${tapestry-release-version}</version>
            <scope>provided</scope>
        </dependency>


                                <dependency>
                                        <groupId>org.got5</groupId>
                                        
<artifactId>tapestry5-highcharts</artifactId>
                                        <version>1.1.0-SNAPSHOT</version>
                                </dependency>

    </dependencies>


and the repository is added to the repository section

                                <repository>
                                        <id>PullRequest Repository</id>
                                        <url>http://nexus.pullrequest.org</url>
                                </repository>



And here's the output from mvn


pa42-241-103-153:highcharts chrismylonas$ mvn jetty:run
[INFO] Scanning for projects...
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building highcharts Tapestry 5 Application 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] >>> maven-jetty-plugin:6.1.16:run (default-cli) @ highcharts >>>
Downloading: 
http://nexus.pullrequest.org/org/got5/tapestry5-highcharts/1.1.0-SNAPSHOT/maven-metadata.xml
Downloading: 
http://nexus.devlab722.net/nexus/content/repositories/snapshots/org/got5/tapestry5-highcharts/1.1.0-SNAPSHOT/maven-metadata.xml
Downloading: 
https://repository.apache.org/content/groups/staging/org/got5/tapestry5-highcharts/1.1.0-SNAPSHOT/maven-metadata.xml
Downloading: 
https://repository.apache.org/content/groups/staging/org/got5/tapestry5-highcharts/1.1.0-SNAPSHOT/tapestry5-highcharts-1.1.0-SNAPSHOT.pom
Downloading: 
http://nexus.pullrequest.org/org/got5/tapestry5-highcharts/1.1.0-SNAPSHOT/tapestry5-highcharts-1.1.0-SNAPSHOT.pom
Downloading: 
http://nexus.devlab722.net/nexus/content/repositories/snapshots/org/got5/tapestry5-highcharts/1.1.0-SNAPSHOT/tapestry5-highcharts-1.1.0-SNAPSHOT.pom
[WARNING] The POM for org.got5:tapestry5-highcharts:jar:1.1.0-SNAPSHOT is 
missing, no dependency information available
Downloading: 
https://repository.apache.org/content/groups/staging/org/got5/tapestry5-highcharts/1.1.0-SNAPSHOT/tapestry5-highcharts-1.1.0-SNAPSHOT.jar
Downloading: 
http://nexus.pullrequest.org/org/got5/tapestry5-highcharts/1.1.0-SNAPSHOT/tapestry5-highcharts-1.1.0-SNAPSHOT.jar
Downloading: 
http://nexus.devlab722.net/nexus/content/repositories/snapshots/org/got5/tapestry5-highcharts/1.1.0-SNAPSHOT/tapestry5-highcharts-1.1.0-SNAPSHOT.jar
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 14.675s
[INFO] Finished at: Wed Apr 18 17:15:36 EST 2012
[INFO] Final Memory: 6M/81M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project highcharts: Could not resolve 
dependencies for project org.opencsta:highcharts:war:1.0-SNAPSHOT: Could not 
find artifact org.got5:tapestry5-highcharts:jar:1.1.0-SNAPSHOT in 
apache-staging (https://repository.apache.org/content/groups/staging/) -> [Help 
1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please 
read the following articles:
[ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException







On 18/04/2012, at 5:12 PM, Emmanuel DEMEY wrote:

> Hi
> 
> If you have a Tapestry 5.3.* application, you should use the
> 1.1.0-SNAPSHOT. If it is a Tap 5.2.6 app, modify the version to 1.0.0.
> 
> Emmanuel
> 
> 2012/4/16 Chris Mylonas <ch...@opencsta.org>
> 
>> Hi Manu
>> 
>> I just tried the sample BasicComponent but maven is complaining about not
>> being able to find the tapestry5-highcharts jar file.
>> I tried installing it manually as suggested by maven but still no luck.
>> 
>> apache-staging (https://repository.apache.org/content/groups/staging/,
>> releases=true, snapshots=true),
>> PullRequest Repository (http://nexus.pullrequest.org, releases=true,
>> snapshots=true),
>> devlab722-repo (
>> http://nexus.devlab722.net/nexus/content/repositories/releases,
>> releases=true, snapshots=false),
>> devlab722-snapshot-repo (
>> http://nexus.devlab722.net/nexus/content/repositories/snapshots,
>> releases=false, snapshots=true),
>> central (http://repo1.maven.org/maven2, releases=true, snapshots=false)
>> 
>> [INFO] Unable to read jar manifest from
>> /Users/chrismylonas/.m2/repository/org/got5/tapestry5-highcharts/1.0.0-SNAPSHOT/tapestry5-highcharts-1.0.0-SNAPSHOT.jar
>> [INFO] Wrote settings to
>> /Users/chrismylonas/Documents/2012/Scat/highcharts/.settings/org.eclipse.jdt.core.prefs
>> [INFO] Wrote Eclipse project for "highcharts" to
>> /Users/chrismylonas/Documents/2012/Scat/highcharts.
>> [INFO]
>> [INFO]
>> ------------------------------------------------------------------------
>> [INFO] BUILD SUCCESS
>> [INFO]
>> ------------------------------------------------------------------------
>> [INFO] Total time: 15.387s
>> [INFO] Finished at: Tue Apr 17 00:21:41 EST 2012
>> [INFO] Final Memory: 9M/81M
>> [INFO]
>> ------------------------------------------------------------------------
>> pa42-241-103-153:highcharts chrismylonas$ vi pom.xml
>> pa42-241-103-153:highcharts chrismylonas$ mvn clean jetty:run
>> [INFO] Scanning for projects...
>> [INFO]
>> [INFO]
>> ------------------------------------------------------------------------
>> [INFO] Building highcharts Tapestry 5 Application 1.0-SNAPSHOT
>> [INFO]
>> ------------------------------------------------------------------------
>> [WARNING] The POM for org.got5:tapestry5-highcharts:jar:1.0.0-SNAPSHOT is
>> missing, no dependency information available
>> [INFO]
>> ------------------------------------------------------------------------
>> [INFO] BUILD FAILURE
>> [INFO]
>> ------------------------------------------------------------------------
>> [INFO] Total time: 2.567s
>> [INFO] Finished at: Tue Apr 17 00:32:23 EST 2012
>> [INFO] Final Memory: 4M/81M
>> [INFO]
>> ------------------------------------------------------------------------
>> [ERROR] Failed to execute goal on project highcharts: Could not resolve
>> dependencies for project org.opencsta:highcharts:war:1.0-SNAPSHOT: Failure
>> to find org.got5:tapestry5-highcharts:jar:1.0.0-SNAPSHOT in
>> https://repository.apache.org/content/groups/staging/ was cached in the
>> local repository, resolution will not be reattempted until the update
>> interval of apache-staging has elapsed or updates are forced -> [Help 1]
>> [ERROR]
>> [ERROR] To see the full stack trace of the errors, re-run Maven with the
>> -e switch.
>> [ERROR] Re-run Maven using the -X switch to enable full debug logging.
>> [ERROR]
>> [ERROR] For more information about the errors and possible solutions,
>> please read the following articles:
>> [ERROR] [Help 1]
>> http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
>> 
>> 
>> 
>> As suggested by maven
>> 
>> mvn install:install-file -DgroupId=org.got5
>> -DartifactId=tapestry5-highcharts -Dversion=1.0.0-SNAPSHOT -Dpackaging=jar
>> -Dfile=/Users/chrismylonas/.m2/repository/org/got5/tapestry5-highcharts/1.0.0-SNAPSHOT/tapestry5-highcharts.jar
>> 
>> 
>> Any ideas?
>> 
>> Cheers
>> Chris
>> 
>> 
>> On 30/03/2012, at 8:40 PM, Emmanuel DEMEY wrote:
>> 
>>> Hi everybody !!
>>> 
>>> The WebPlatform team, from Atos Company, is very pleased to announce a
>> new
>>> Tapestry Component library : Tapestry5-HighCharts.
>>> 
>>> This contribution makes it possible to integrate the highcharts library (
>>> http://www.highcharts.com/) into a Tapestry5-jQuery based application.
>>> 
>>> The release 1.0.0 is based on Tapestry 5.2.6, the 1.1.0-SNAPSHOT on
>>> Tapestry 5.3.2.
>>> 
>>> The source are available on github (
>>> https://github.com/got5/tapestry5-highcharts), and some documentation on
>>> the Tapestry5-jQuery website (http://tapestry5-jquery.com/highcharts).
>>> 
>>> We are waiting for your feedbacks !
>>> 
>>> Manu
>> 
>> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to