Print

Print


Commit in hps-java on MAIN
pom.xml+39-51.87 -> 1.88
src/site/changes.xml+60added 1.1
+99-5
1 added + 1 modified, total 2 files
added Matt to list of developers; other minor changes to developers list; added initial configuration of maven-changes-plugin to show release notes for HPS Java versions

hps-java
pom.xml 1.87 -> 1.88
diff -u -r1.87 -r1.88
--- pom.xml	3 May 2013 18:30:44 -0000	1.87
+++ pom.xml	3 May 2013 21:02:26 -0000	1.88
@@ -40,9 +40,8 @@
     </distributionManagement>
     <developers>        
         <developer>
-            <name>Jeremy</name>
+            <name>Jeremy McCormick</name>
             <email>[log in to unmask]</email>
-            <url>http://www.slac.stanford.edu/~jeremym</url>
             <organization>SLAC National Accelerator Laboratory</organization>
             <organizationUrl>http://www.slac.stanford.edu/</organizationUrl>
             <roles>
@@ -54,7 +53,17 @@
             </properties>
         </developer>       
         <developer>
-            <name>Sho</name>
+            <name>Matthew Graham</name>
+            <email>[log in to unmask]</email>
+            <organization>SLAC National Accelerator Laboratory</organization>
+            <organizationUrl>http://www.slac.stanford.edu/</organizationUrl>
+            <roles>
+                <role>developer</role>
+            </roles>
+            <timezone>-8</timezone>
+        </developer>     
+        <developer>
+            <name>Sho Uemura</name>
             <email>[log in to unmask]</email>
             <organization>SLAC National Accelerator Laboratory</organization>
             <organizationUrl>http://www.slac.stanford.edu/</organizationUrl>
@@ -93,8 +102,11 @@
         </mailingList>
     </mailingLists>
     <issueManagement>
-        <system>Jira</system>
+        <system>JIRA</system>
+        <!--
         <url>https://jira.slac.stanford.edu/browse/HPSJAVA/</url>
+        -->
+        <url>https://jira.slac.stanford.edu/browse/</url>
     </issueManagement>
     <reporting>
         <plugins>
@@ -104,7 +116,29 @@
                 <configuration>
                     <anonymousConnection>scm:cvs:pserver:[log in to unmask]:/cvs/lcd:hps-java</anonymousConnection>
                 </configuration>
-            </plugin>
+            </plugin>                        
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-changes-plugin</artifactId>
+                <version>2.9</version>
+                <configuration>
+                    <columnNames>Type,Key,Summary,Assignee,Status,Resolution,Fix Version,Created</columnNames>
+                    <sortColumnNames>Type,Key DESC</sortColumnNames>
+                    <statusIds>Resolved, Closed</statusIds>
+                    <maxEntries>9999</maxEntries>
+                    <xmlPath>${basedir}/src/site/changes.xml</xmlPath>
+                </configuration>
+                <reportSets>
+                    <reportSet>
+                        <reports>
+                            <report>changes-report</report>
+                            <!--
+                            <report>jira-report</report>
+                            -->
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>                                   
         </plugins>
     </reporting>
     <build>

hps-java/src/site
changes.xml added at 1.1
diff -N changes.xml
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ changes.xml	3 May 2013 21:02:27 -0000	1.1
@@ -0,0 +1,60 @@
+<document xmlns="http://maven.apache.org/changes/1.0.0"
+xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/xsd/changes-1.0.0.xsd">
+    <properties>
+        <title>HPS Java</title>
+        <author email="[log in to unmask]">Jeremy McCormick</author>
+    </properties>
+    <body>
+        
+          <!--  
+            Supported action types are the following:
+              add : added functionnality to the project.
+              fix : bug fix for the project.
+              update : updated some part of the project.
+              remove : removed some functionnality from the project.
+          -->                    
+        <release version="1.6" date="2013-04-26" description="HPS Java Release 1.6">
+            <action dev="Sho Uemura" type="fix" issue="HPSJAVA-26">
+                Fixed ConditionsReader on OSX.
+            </action>
+            <action dev="Matthew Graham" type="add" issue="HPSJAVA-34">
+                Added offline event filtering on minimum number of RawTrackerHits.               
+            </action>
+            <action dev="Sho Uemura" type="update" issue="HPSJAVA-13">
+                Made SimpleSVTReadout the standard SVT readout driver and updated related configuration.
+                <fixes issue="HPSJAVA-15"/>
+                <fixes issue="HPSJAVA-16"/>
+                <fixes issue="HPSJAVA-17"/>
+            </action>
+            <action dev="Sho Uemura" type="add" issue="HPSJAVA-25">
+                Added readout time information the reconstructed events.
+            </action>            
+            <action dev="Per Hansson" type="add">
+                Implemented optional iterative fit algorithm in SeedTracker, solving a number of reconstruction performance issues.
+                <fixes issue="HPSJAVA-14"/>
+                <fixes issue="HPSJAVA-18"/>
+                <fixes issue="HPSJAVA-19"/>
+                <fixes issue="HPSJAVA-31"/>                
+            </action>
+            <action dev="Sho Uemura" type="fix" issue="HPSJAVA-24">
+                Fixed performance issue with the event loop by updating an lcsim dependency.
+            </action>
+            <action dev="Matthew Graham" type="add" issue="HPSJAVA-20">
+                Changed BilliorVertex to implement org.lcsim.event.Vertex and added Vertices to reconstruction output.
+            </action>
+            <action dev="Sho Uemura" type="update" issue="HPSJAVA-11">
+                Moved readout and trigger drivers to org.lcsim.hps.readout.ecal package.
+            </action>
+            <action dev="Sho Uemura" type="update" issue="HPSJAVA-12">
+                Organized steering files by moving them to subfolders.
+            </action>
+            <action dev="Jeremy McCormick" type="update" issue="HPSJAVA-8">
+                Improved the Maven-generated project website by adding javadoc, a link to the JIRA, and the list of developers. 
+            </action>
+            <action dev="Sho Uemura" type="add" issue="HPSJAVA-28">
+                Added list of SimTrackerHits toe the SVT RawTrackerHits in SimpleSVTReadout.
+            </action>
+        </release>
+    </body>
+</document>
CVSspam 0.2.12


Use REPLY-ALL to reply to list

To unsubscribe from the LCD-CVS list, click the following link:
https://listserv.slac.stanford.edu/cgi-bin/wa?SUBED1=LCD-CVS&A=1