This my pom.xml  ( Maven 2.0.3)
I see there is a lot of ( ../../) the only need 8, to go to target/site ??

See i don't use sufire because it compile the project ( i use ant ) i
don't know how to see how to use other jar's dependencies.....

----------------------------------------------------------------------------------------------------------------
<project xmlns="http://maven.apache.org/POM/4.0.0";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd";
 >

  <modelVersion>4.0.0</modelVersion>
  <groupId>com.JSP</groupId>
  <artifactId>JSP_SITE</artifactId>
  <packaging>jar</packaging>
  <version>1.0-SNAPSHOT</version>

  <!--  project name and description -->
  <name>JSP Site </name>
  <url>http://www.citigroup.com</url>
  <description>Site development of PET</description>


  <!--  deploying site
  <distributionManagement>
        <site>
                <id> website </id>
                <url> scp://www.mycompany.com/www/docs/project/ </url>
        </site>
  </distributionManagement>
  -->


  <!--  issue tracking
  <issueManagement>
    <system>Bugzilla</system>
    <url>https://bugzilla.wakaleo.com/</url>
  </issueManagement>
        -->

  <!-- continuos integration
  <ciManagement>
    <system>Continuum</system>
    <url>http://integrationserver.wakaleo.com/continuum</url>
    <notifiers>
      <notifier>
          <type>mail</type>
        <address>[EMAIL PROTECTED]</address>
      </notifier>
    </notifiers>
  </ciManagement>
        -->

  <!-- mail list
  <inceptionYear>2005</inceptionYear>
  <mailingLists>
    <mailingList>
      <name>HotelDatabase project mailing list</name>
      <subscribe>[EMAIL PROTECTED]</subscribe>
      <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
      <post>[EMAIL PROTECTED]</post>
      <archive>http://mail-archives.wakaleo.com/mod_mbox/dev/</archive>
    </mailingList>
  </mailingLists>
        -->

  <!-- the projet team  -->
  <developers>
    <developer>
      <id>jOliveira</id>
      <name>Julio Oliveira</name>
      <email>[EMAIL PROTECTED]</email>
      <roles>
         <role>Web Engineer</role>
         <role>Architect</role>
      </roles>
      <organization>JavaTango.com</organization>
      <timezone>-5</timezone>
    </developer>
  </developers>




  <!--  the source repository
  <scm>
    <connection>scm:svn:http://svn.wakaleo.com/hoteldatabase/</connection>
    
<developerConnection>scm:svn:http://svn.wakaleo.com/hoteldatabase/</developerConnection>
    <url>http://svn.wakaleo.com/viewcvs.cgi/hoteldatabase/</url>
  </scm>
   -->




<repositories>
  <repository>
    <id>Maven Snapshots</id>
    <url>http://snapshots.maven.codehaus.org/maven2/</url>
    <snapshots>
      <enabled>true</enabled>
    </snapshots>
    <releases>
      <enabled>false</enabled>
    </releases>
  </repository>
</repositories>




<pluginRepositories>
  <pluginRepository>
    <id>Maven Snapshots</id>
    <url>http://snapshots.maven.codehaus.org/maven2/</url>
    <snapshots>
      <enabled>true</enabled>
    </snapshots>
    <releases>
      <enabled>false</enabled>
    </releases>
  </pluginRepository>
</pluginRepositories>




  <!-- organization  -->
  <organization>
    <name>JavaTango</name>
    <url>http://www.JavaTango.com</url>
  </organization>



  <!--  dependency  -->
  <dependencies>

  <!--
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
        -->



<!--
    <dependency>
      <groupId>org.codehaus.mojo.cobertura-maven-plugin</groupId>
      <artifactId>cobertura-maven-plugin</artifactId>
      <version>2.0-20060130.214008-3</version>
    </dependency>
-->



  </dependencies>





  <!--   -->
  <build>
    <finalName>JSP_PET</finalName>
        
        
    <plugins>
        
        <!--
      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
         <configuration>
             <source>1.4</source>
             <target>1.4</target>
                <compilerArguments>
                                  
<classpath>E:\Work\eclipse3_1\libMLI</classpath>
                        </compilerArguments>
              </configuration>
      </plugin>
        -->

       <!--
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>cobertura-maven-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>clean</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

         -->
                <!--
         <plugin>
       <groupId>org.apache.maven.plugins</groupId>
       <artifactId>maven-antrun-plugin</artifactId>
       <version>1.0</version>
       <executions>
         <execution>
           <phase>generate-sources</phase>
           <configuration>
             <tasks>
               <echo>!!!!!!!!!!!!! I WAS HERE !!!!!!!!!!!!!!</echo>
             </tasks>
           </configuration>
           <goals>
             <goal>run</goal>
           </goals>
         </execution>
       </executions>
     </plugin>
        -->

    </plugins>
  </build>





  <!--   -->
  <reporting>
    <plugins>

          <!-- info  -->
      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-project-info-reports-plugin</artifactId>
      </plugin>

          <!-- surefire   unit-test
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>surefire-report-maven-plugin</artifactId>
      </plugin>
           don't put it because it compile the project -->
          -->
        
          <!-- surefire   source cross ref
         <plugin>
       <groupId>org.apache.maven.plugins</groupId>
       <artifactId>maven-surefire-report-plugin</artifactId>
       <version>2.0</version>
     </plugin>
           don't put it because it compile the project -->
          -->
        
        
        
      <!-- clover test result  (license out )
      <plugin>
        <artifactId>maven-clover-plugin</artifactId>
      </plugin>
        -->
          <!--  jxr  se usa con surefire-->
                <!--
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>jxr-maven-plugin</artifactId>
      </plugin>
                -->


          <!--  javadoc  -->
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
      </plugin>


          <!-- checkstyle  -->
      <plugin>
        <artifactId>maven-checkstyle-plugin</artifactId>
      </plugin>

          <!--  pmd  -->
      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-pmd-plugin</artifactId>
         <configuration>
            <targetjdk>1.5</targetjdk>
            <rulesets>
               <ruleset>/rulesets/basic.xml</ruleset>
               <ruleset>/rulesets/controversial.xml</ruleset>
            </rulesets>
            <format>xml</format>
            <linkXref>true</linkXref>
            <sourceEncoding>utf-8</sourceEncoding>
            <minimumTokens>100</minimumTokens>
         </configuration>
      </plugin>

          <!-- changes   uses a  xml file  see ( src/changes/changes.xml)-->
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>changes-maven-plugin</artifactId>
      </plugin>

          <!--  changelog uses  SCM repository to list the changes
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>changelog-maven-plugin</artifactId>
      </plugin>
                repository bad it not exist -->
                

          <!-- taglist  list all @todo or TODO tags -->
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>taglist-maven-plugin</artifactId>
      </plugin>


    </plugins>
  </reporting>
</project>




On 4/21/06, Kathryn Huxtable <[EMAIL PROTECTED]> wrote:
> Neither does mine. And I can't find the JXR documentation.
>
>
> --
> Kathryn Huxtable
> Middleware Architect
> Core Middleware
> Information Technology, a division of Information Services
> The University of Kansas
> +1 785 864 0420
>
>
>
> On 4/21/06 1:34 PM, "Julio Oliveira" <[EMAIL PROTECTED]> wrote:
>
> > Hi
> >
> > I have the PMD report info, when i see the html source, and want to go
> > to the Viewjavadoc it doesn't work.
> >
> >
> >
> > They addres is....
> >
> > file:///apidocs   ????
> > ------------------------------------------------------------------------------
> > ----------------------------------
> > <div id="overview"><a
> > href="../../../../../../../../../../../../../../../../apidocs/com/ar/latam/pat
> > /step/model/helper/ChangeDate.html">View
> > Javadoc</a></div><pre>
> > ------------------------------------------------------------------------------
> > ----------------------------------
> >
> > What's wrong ??
> >
> > regards
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to