> 
> --- Bryce Fischer <[EMAIL PROTECTED]> wrote:
> > I've posted this to the Maven list, and was hoping
> > to get some input
> > from here as well.
> > 
> > I'm trying to use the XDoclet plugin for Maven. When
> > I type:
> > maven -X xdoclet:ejbdoclet
> > 
> > It runs with no errors, but it doesn't appear to do
> > anything. Someone
> > suggested on the Maven list that it appears that
> > XDoclet is not finding
> > any sources to run against. The debug information
> > makes it look like its
> > looking in the correct location:
> 
> nevertheless, no xdoclet subtask was run. 
> can you show your (build|project).properties?

I have no build.properties file. I removed everything to try to get it
to run with the default values.

Here's my POM:

<?xml version="1.0" encoding="UTF-8"?>
<project>
        <extend>${basedir}/../bismaster/project.xml</extend>
        <pomVersion>3</pomVersion>
        <id>ejb-db</id>
        <groupId>bis-web</groupId>
        <name>EJB Subproject</name>
        <description>
                Data persistent classes implemented as Enterprise Java Beans. These 
classes help
                abstract the business classes from the database implementations. In 
theory, we
                should be able to support a number of different database backends.
        </description>
        
        <repository>
            <connection>
                scm:cvs:pserver:[EMAIL PROTECTED]:/var/lib/cvsroot:bis-ejb
            </connection>
            <url>
                http://bryce.my-net-space.net/viewcvs/viewcvs.cgi/bis-ejb/
            </url>
        </repository>
        
        <dependencies>
                <dependency>
                        <groupId>j2ee</groupId>
                        <artifactId>j2ee</artifactId>
                        <version>1.3</version>
                </dependency>
                
                <dependency>
                    <groupId>cactus</groupId>
                    <artifactId>cactus-13</artifactId>
                    <version>1.6dev-20030829</version>
                </dependency>
                
                <dependency>
                        <groupId>commons-logging</groupId>
                        <artifactId>commons-logging</artifactId>
                        <version>1.1-dev</version>
                        <properties>
                                <ejb.manifest.classpath>true</ejb.manifest.classpath>
                        </properties>
                </dependency>
        <dependency>
                <groupId>cactus</groupId>
                <artifactId>cactus-ant-13</artifactId>
                <version>1.6dev-20030829</version>
        </dependency>
        <dependency>
                <groupId>commons-httpclient</groupId>
                <artifactId>commons-httpclient</artifactId>
                <version>SNAPSHOT</version>
        </dependency>
        <dependency>
                <groupId>aspectj</groupId>
                <artifactId>aspectjrt</artifactId>
                <version>1.1.0</version>
        </dependency>
        <dependency>
            <id>xdoclet</id>
            <artifactId>xdoclet-ejb-module</artifactId>
            <version>1.2b4</version>
        </dependency>
        <dependency>
            <id>xdoclet</id>
            <artifactId>xdoclet-jboss-module</artifactId>
            <version>1.2b4</version>
        </dependency>
        <dependency>
            <id>xdoclet</id>
            <artifactId>xdoclet-jmx-module</artifactId>
            <version>1.2b4</version>
        </dependency>
        <dependency>
            <id>ejb</id>
            <artifactId>ejb</artifactId>
            <version>2.1</version>
        </dependency>
        <dependency>
            <id>xdoclet</id>
            <artifactId>xdoclet</artifactId>
            <version>1.2b4</version>
        </dependency>
        <dependency>
                <id>xdoclet</id>
                <artifactId>xjavadoc</artifactId>
                <version>1.0</version>
        </dependency>
    </dependencies>

    <build>
        <sourceDirectory>${basedir}/src/java</sourceDirectory>
    </build>
</project>
-- 
Bryce Fischer <[EMAIL PROTECTED]>



-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to