OW2 Consortium

(file) Return to pom.xml CVS log (file) (dir) Up to [OW2-CVS] / howl / howl / logger

Diff for /howl/howl/logger/pom.xml between version 1.3 and 1.4

version 1.3, 2006/05/24 07:57:05 version 1.4, 2006/06/04 22:26:32
Line 1 
Line 1 
   <?xml version="1.0" encoding="UTF-8"?>
 <project> <project>
     <modelVersion>4.0.0</modelVersion>     <modelVersion>4.0.0</modelVersion>
     <groupId>org.objectweb.howl</groupId>     <groupId>org.objectweb.howl</groupId>
     <artifactId>howl-logger</artifactId>     <artifactId>howl-logger</artifactId>
     <name>HOWL logger</name>     <name>HOWL logger</name>
     <packaging>jar</packaging>     <packaging>jar</packaging>
     <version>1.0.1</version>      <version>1.0.1-1</version>
   
       <url>http://forge.objectweb.org/projects/howl/</url>
       <description>HOWL is a logger implementation providing features required by the JOTM project. HOWL uses unformatted
           binary logs to maximize performance and specifies a journalization API with methods necessary to support JOTM
           recovery operations.</description>
  
     <issueManagement>     <issueManagement>
         <system>bugzilla</system>         <system>bugzilla</system>
         <url>http://forge.objectweb.org/tracker/?group_id=92</url>         <url>http://forge.objectweb.org/tracker/?group_id=92</url>
     </issueManagement>     </issueManagement>
  
     <!--  
         <ciManagement>  
           <system>continuum</system>  
           <notifiers>  
             <notifier>  
               <type>mail</type>  
               <sendOnError/>  
               <sendOnFailure/>  
               <address>dev@geronimo.org</address>  
             </notifier>  
           </notifiers>  
         </ciManagement>  
     -->  
   
     <mailingLists>     <mailingLists>
         <mailingList>         <mailingList>
             <name>HOWL List</name>             <name>HOWL List</name>
Line 57 
Line 49 
     <licenses>     <licenses>
         <license>         <license>
             <name>BSD</name>             <name>BSD</name>
 <!--            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>-->  
 <!--            <distribution>repo</distribution>-->  
         </license>         </license>
     </licenses>     </licenses>
  
Line 101 
Line 91 
                     <target>1.4</target>                     <target>1.4</target>
                 </configuration>                 </configuration>
             </plugin>             </plugin>
   
             <plugin>             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-surefire-plugin</artifactId>                 <artifactId>maven-surefire-plugin</artifactId>
Line 114 
Line 105 
                     </excludes>                     </excludes>
                 </configuration>                 </configuration>
             </plugin>             </plugin>
               <plugin>
                   <groupId>org.apache.maven.plugins</groupId>
                   <artifactId>maven-jar-plugin</artifactId>
                   <configuration>
                       <archive>
                           <manifest>
                               <mainClass>org.objectweb.howl.log.Version</mainClass>
                           </manifest>
                       </archive>
                   </configuration>
               </plugin>
         </plugins>         </plugins>
     </build>     </build>
  
 <!--      <profiles>
 this is completely wrong, I'm putting it in as a clue about what needs to be added          <profile>
     <distributionManagement>              <id>release</id>
       <repository>              <!-- this adds resources/version.properties  (containing build timestamp)
         <id>apache-repo</id>              and cvs/status.txt (containing cvs status info from the build) to match the ant build output -->
         <name>Apache CVS Repository</name>              <build>
         <url>scpexe://cvs.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>                  <plugins>
       </repository>                      <plugin>
       <snapshotRepository>                          <artifactId>maven-antrun-plugin</artifactId>
         <id>apache-snapshots</id>                          <executions>
         <name>Apache CVS Development Repository</name>                              <execution>
         <url>scpexe://cvs.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>                                  <phase>compile</phase>
       </snapshotRepository>                                  <configuration>
       <site>                                      <tasks>
         <id>geronimo-website</id>  
         <url>scpexe://minotaur.apache.org/www/geronimo.apache.org/maven/</url>                                          <mkdir dir="${project.build.directory}/classes/cvs"/>
       </site>                                          <cvs output='${project.build.directory}/classes/cvs/status.txt'
     </distributionManagement>                                               cvsroot=":pserver:anonymous@cvs.forge.objectweb.org:/cvsroot/howl"
 -->                                               passfile='nul'
                                                   >
                                               <commandline>
                                                   <argument value="status"/>
                                               </commandline>
                                           </cvs>
                                           <mkdir dir="${project.build.directory}/classes/resources"/>
                                           <echo file='${project.build.directory}/classes/resources/version.properties'>
                                               build.time=${build.time}</echo>
   
                                       </tasks>
                                   </configuration>
                                   <goals>
                                       <goal>run</goal>
                                   </goals>
                               </execution>
                           </executions>
                       </plugin>
                   </plugins>
               </build>
  
           </profile>
       </profiles>
  
 </project> </project>


Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

webmaster@ow2.org
Powered by
ViewCVS 0.9.4

Back to OW2 Forge