I tried your dependency and got the same error. Change "chenillekit-project" to "chenillekit-tapestry". The complete dependency from my pom is:
<dependency> <groupId>org.chenillekit</groupId> <artifactId>chenillekit-tapestry</artifactId> <version>1.2.0</version> <!-- Avoid conflicting versions of javassist; see http://www.mail-archive.com/users@tapestry.apache.org/msg37246.html --> <exclusions> <exclusion> <groupId>jboss</groupId> <artifactId>javassist</artifactId> </exclusion> </exclusions> </dependency> You might not need the exclusion part, depending on how you deploy, but it doesn't hurt. On Wed, Oct 14, 2009 at 4:59 AM, Roy Douglas <onj888-tapes...@yahoo.com.hk>wrote: > > Thanks, I did and put the following in my pom.xml > <dependency> > <groupId>org.chenillekit</groupId> > <artifactId>chenillekit-project</artifactId> > <version>1.2.0</version> > </dependency> > > then I got this from my eclipse console output > > Missing artifact org.chenillekit:chenillekit-project:jar:1.2.0:compile > Maven Builder: AUTO_BUILD > > other dependencies was running fine, what should I do? > > > I attach my pom.xml here > > <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 > http://maven.apache.org/maven-v4_0_0.xsd" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > xmlns="http://maven.apache.org/POM/4.0.0"> > <modelVersion>4.0.0</modelVersion> > <groupId>org.douglas1212</groupId> > <artifactId>celebrities</artifactId> > <version>0.0.1-SNAPSHOT</version> > <packaging>war</packaging> > <name>celebrities Tapestry 5 Application</name> > <dependencies> > <dependency> > <groupId>org.apache.tapestry</groupId> > <artifactId>tapestry-core</artifactId> > <version>${tapestry-release-version}</version> > </dependency> > <dependency> > <groupId>org.chenillekit</groupId> > <artifactId>chenillekit-project</artifactId> > <version>1.2.0</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>5.8</version> > <classifier>jdk15</classifier> > <scope>test</scope> > </dependency> > > <dependency> > <groupId>org.easymock</groupId> > <artifactId>easymock</artifactId> > <version>2.4</version> > <scope>test</scope> > </dependency> > > <!-- tapestry-test will conflict with RunJettyRun inside Eclipse. > tapestry-test brings in Selenium, which > is based on Jetty 5.1; RunJettyRun uses Jetty 6. > <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>2.5</version> > <scope>provided</scope> > </dependency> > > </dependencies> > <build> > <finalName>celebrities</finalName> > <plugins> > <plugin> > <groupId>org.apache.maven.plugins</groupId> > <artifactId>maven-compiler-plugin</artifactId> > <configuration> > <source>1.5</source> > <target>1.5</target> > <optimize>true</optimize> > </configuration> > </plugin> > > <!-- Run the application using "mvn jetty:run" --> > <plugin> > <groupId>org.mortbay.jetty</groupId> > <artifactId>maven-jetty-plugin</artifactId> > <version>6.1.9</version> > <configuration> > <!-- Log to the console. --> > <requestLog > implementation="org.mortbay.jetty.NCSARequestLog"> > <!-- This doesn't do anything for Jetty, but is a > workaround for a Maven bug > that prevents the requestLog from being set. > --> > <append>true</append> > </requestLog> > </configuration> > </plugin> > </plugins> > </build> > > <reporting> > > <!-- Adds a report detailing the components, mixins and base classes > defined by this module. --> > <plugins> > <plugin> > <groupId>org.apache.tapestry</groupId> > <artifactId>tapestry-component-report</artifactId> > <version>${tapestry-release-version}</version> > <configuration> > <rootPackage>org.douglas1212.celebrities</rootPackage> > </configuration> > </plugin> > </plugins> > </reporting> > > <repositories> > > <!-- This repository is only needed if the Tapestry released > artifacts haven't made it to the central Maven repository yet. --> > <repository> > <id>tapestry</id> > <url>http://tapestry.formos.com/maven-repository/</url> > </repository> > > <!-- This repository is only needed when the > tapestry-release-version is a snapshot release. --> > <repository> > <id>tapestry-snapshots</id> > <url>http://tapestry.formos.com/maven-snapshot-repository/ > </url> > </repository> > > <repository> > <id>codehaus.snapshots</id> > <url>http://snapshots.repository.codehaus.org</url> > </repository> > <repository> > <id>OpenQA_Release</id> > <name>OpenQA Release Repository</name> > <url>http://archiva.openqa.org/repository/releases/</url> > </repository> > </repositories> > > <pluginRepositories> > > <!-- As above, this can be commented out when access to the snapshot > version > of a Tapestry Maven plugin is not required. --> > <pluginRepository> > <id>tapestry-snapshots</id> > <url>http://tapestry.formos.com/maven-snapshot-repository/ > </url> > </pluginRepository> > > > </pluginRepositories> > > <properties> > <tapestry-release-version>5.1.0.5</tapestry-release-version> > </properties> > </project> > > > > > Olle Hallin-2 wrote: > > > > Hint: Use mavensearch.net for finding exactly what to paste into pom.xml > > It indexes not only central, but also a bunch of other useful > > repositories. > > > > Olle Hallin > > Senior Java Developer and Architect > > olle.hal...@crisp.se > > www.crisp.se > > > > > > > > > > 2009/10/13 Borut Bolčina <borut.bolc...@gmail.com> > > > >> Roy, > >> > >> you do not have to specify the <repository> as the chenillekit is in the > >> main maven repository (included by default). > >> > >> Cheers, > >> Borut > >> > >> 2009/10/13 Roy Douglas <onj888-tapes...@yahoo.com.hk> > >> > >> > > >> > thanks, how about the repo? is it > >> > > >> > <repository> > >> > <id>chenillekit</id> > >> > <url>http://repo1.maven.org/maven2/org/chenillekit/</url> > >> > </repository> > >> > > >> > > >> > > >> > > >> > > >> > Kalle Korhonen-2 wrote: > >> > > > >> > > Depending on what you need, e.g: > >> > > <dependency> > >> > > <groupId>org.chenillekit</groupId> > >> > > <artifactId>chenillekit-tapestry</artifactId> > >> > > <version>1.2.0</version> > >> > > </dependency> > >> > > > >> > > The released artifacts are in repo1... > >> > > > >> > > Kalle > >> > > > >> > > > >> > > On Tue, Oct 13, 2009 at 12:08 PM, Roy Douglas > >> > > <onj888-tapes...@yahoo.com.hk> wrote: > >> > >> > >> > >> Hi, > >> > >> > >> > >> sorry, I really don't know what to put it in my pom.xml, I tried to > >> > >> search > >> > >> through google and here, > >> > >> would you please tell me what is the url of the repo and group id > >> and > >> > >> artifact id I should use? > >> > >> > >> > >> Thanks > >> > >> Roy > >> > >> > >> > >> > >> > >> Massimo Lusetti wrote: > >> > >>> > >> > >>> Hi everyone, > >> > >>> I'm happy to announce the 1.2.0 release of the ChenilleKit > >> project, > >> > >>> our first release compatible with Tapestry 5.1.0.5. > >> > >>> > >> > >>> The ChenilleKit project lately have suffered from various issues > >> > >>> affecting project management that have complicated more then the > >> > >>> necessary the development. > >> > >>> > >> > >>> We finally find peace at CodeHaus http://chenillekit.codehaus.org > . > >> > >>> > >> > >>> Anyway the release is done now and for the first time you will > find > >> > >>> 1.2.0 artifacts in the central maven repo, thanks to CodeHaus > >> syncing > >> > >>> with it. I think this is a great plus for us and everyone using > >> > >>> ChenilleKit. > >> > >>> > >> > >>> I would like 1.2.0 to be released as a distribution outside maven > >> > >>> scope too, but I failed, so you will find 1.2.0 only as a maven > >> > >>> artifacts, sorry for that. > >> > >>> > >> > >>> Due to our late moves (from googlecode to tapestry...@formos and > >> then > >> > >>> to CodeHaus) we lost our JIRA issues and we cannot produce a > >> reliable > >> > >>> release notes. > >> > >>> > >> > >>> I would like to remember one more time to everyone interested that > >> we > >> > >>> have our own mailing lists: > >> > >>> - annou...@chenillekit.codehaus.org Projects announcing > important > >> > >>> news about the project, used by the team. > >> > >>> - u...@chenillekit.codehaus.org Users discussions and support > >> > >>> - d...@chenillekit.codehaus.org Developers discussions about all > >> > >>> aspect of Chenillekit coding. > >> > >>> - s...@chenillakit.codehaus.org Commit logs and JIRA issues > >> > >>> > >> > >>> Cheers > >> > >>> -- > >> > >>> Massimo > >> > >>> http://meridio.blogspot.com > >> > >>> > >> > >>> > >> --------------------------------------------------------------------- > >> > >>> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > >> > >>> For additional commands, e-mail: users-h...@tapestry.apache.org > >> > >>> > >> > >>> > >> > >>> > >> > >> > >> > >> -- > >> > >> View this message in context: > >> > >> > >> > > >> > http://www.nabble.com/-ANNOUNCE--ChenilleKit-1.2.0-RELEASE-tp25511012p25878865.html > >> > >> Sent from the Tapestry - User mailing list archive at Nabble.com. > >> > >> > >> > >> > >> > >> > >> --------------------------------------------------------------------- > >> > >> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > >> > >> For additional commands, e-mail: users-h...@tapestry.apache.org > >> > >> > >> > >> > >> > > > >> > > > --------------------------------------------------------------------- > >> > > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > >> > > For additional commands, e-mail: users-h...@tapestry.apache.org > >> > > > >> > > > >> > > > >> > > >> > -- > >> > View this message in context: > >> > > >> > http://www.nabble.com/-ANNOUNCE--ChenilleKit-1.2.0-RELEASE-tp25511012p25879735.html > >> > Sent from the Tapestry - User mailing list archive at Nabble.com. > >> > > >> > > >> > --------------------------------------------------------------------- > >> > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > >> > For additional commands, e-mail: users-h...@tapestry.apache.org > >> > > >> > > >> > > > > > > -- > View this message in context: > http://www.nabble.com/-ANNOUNCE--ChenilleKit-1.2.0-RELEASE-tp25511012p25887581.html > Sent from the Tapestry - User mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > >