[jboss-user] [JBoss Seam] - Re: Maven Archetype for Seam?
anders3
do-not-reply at jboss.com
Thu Aug 23 18:54:43 EDT 2007
I have been trying to make the dvdstore sample as a maven project.
The project will have 3 subartifacts
1. ejb - containing all classes
2. war - containing the web
3. ear - packaging the stuff
And it is very simple to make the artifacts, but I cannot currently get all dependencies right.
I setup a repository with http://maven.softeu.cz/
I then the ejb by dependencies
<dependencies>
| <dependency>
| <groupId>jboss.seam</groupId>
| <artifactId>jboss-seam</artifactId>
| <version>2.0.0.BETA1</version>
| </dependency>
| <dependency>
| <groupId>javax.ejb</groupId>
| <artifactId>ejb</artifactId>
| <version>3.0-RC8</version>
| </dependency>
| <dependency>
| <groupId>javax.faces</groupId>
| <artifactId>jsf-api</artifactId>
| <version>1.2</version>
| </dependency>
| <dependency>
| <groupId>org.apache.lucene</groupId>
| <artifactId>lucene-core</artifactId>
| <version>2.1.0</version>
| </dependency>
| <dependency>
| <groupId>jboss</groupId>
| <artifactId>jbpm</artifactId>
| <version>3.1.4</version>
| </dependency>
| <dependency>
| <groupId>org.testng</groupId>
| <artifactId>testng</artifactId>
| <version>5.5</version>
| <classifier>jdk15</classifier>
| </dependency>
| </dependencies>
|
But currently I am missing
/dvdstore/ejb/src/main/java/com/jboss/dvd/seam/Product.java:[29,40] cannot find symbol
| symbol : class IndexedEmbedded
| location: package org.hibernate.search.annotations
|
It is an artifact by name hibernate-search.jar ?? I cannot find it at the moment.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077572#4077572
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077572
More information about the jboss-user
mailing list