You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
(34) |
Apr
(16) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|
From: <am...@us...> - 2006-03-19 12:31:40
|
Revision: 91 Author: amooy Date: 2006-03-19 04:31:29 -0800 (Sun, 19 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=91&view=rev Log Message: ----------- SENSOR-1 Added activation.jar to the classpath using a maven jar override and reactivated the javamail dependency. Tests on my local machine cannot reproduce SENSOR-1 Modified Paths: -------------- trunk/sensor-console/.classpath trunk/sensor-console/.settings/.component trunk/sensor-console/project.properties trunk/sensor-console/project.xml Added Paths: ----------- trunk/sensor-console/lib/activation-1.0.2.jar Modified: trunk/sensor-console/.classpath =================================================================== --- trunk/sensor-console/.classpath 2006-03-19 11:30:54 UTC (rev 90) +++ trunk/sensor-console/.classpath 2006-03-19 12:31:29 UTC (rev 91) @@ -4,6 +4,8 @@ <classpathentry kind="src" path="/sensor-support"/> <classpathentry kind="var" path="MAVEN_REPO/springframework/jars/spring-1.2.6.jar"/> <classpathentry kind="var" path="MAVEN_REPO/aopalliance/jars/aopalliance-1.0.jar"/> + <classpathentry kind="lib" path="lib/javamail-1.3.2.jar"/> + <classpathentry kind="lib" path="lib/activation-1.0.2.jar"/> <classpathentry kind="var" path="MAVEN_REPO/org.codehaus.xfire/jars/xfire-all-1.0.jar"/> <classpathentry kind="var" path="MAVEN_REPO/stax/jars/stax-api-1.0.jar"/> <classpathentry kind="var" path="MAVEN_REPO/jdom/jars/jdom-1.0.jar"/> Modified: trunk/sensor-console/.settings/.component =================================================================== --- trunk/sensor-console/.settings/.component 2006-03-19 11:30:54 UTC (rev 90) +++ trunk/sensor-console/.settings/.component 2006-03-19 12:31:29 UTC (rev 91) @@ -16,6 +16,12 @@ <dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/var/MAVEN_REPO/aopalliance/jars/aopalliance-1.0.jar"> <dependency-type>uses</dependency-type> </dependent-module> +<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/lib//sensor-console/lib/javamail-1.3.2.jar"> +<dependency-type>uses</dependency-type> +</dependent-module> +<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/lib//sensor-console/lib/activation-1.0.2.jar"> +<dependency-type>uses</dependency-type> +</dependent-module> <dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/var/MAVEN_REPO/org.codehaus.xfire/jars/xfire-all-1.0.jar"> <dependency-type>uses</dependency-type> </dependent-module> Added: trunk/sensor-console/lib/activation-1.0.2.jar =================================================================== (Binary files differ) Property changes on: trunk/sensor-console/lib/activation-1.0.2.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: trunk/sensor-console/project.properties =================================================================== --- trunk/sensor-console/project.properties 2006-03-19 11:30:54 UTC (rev 90) +++ trunk/sensor-console/project.properties 2006-03-19 12:31:29 UTC (rev 91) @@ -2,10 +2,10 @@ # Maven runtime behaviour # ------------------------------------------------------------------------ -maven.repo.remote = http://www.ibiblio.org/maven,\ +maven.repo.remote = http://mirrors.sunsite.dk/maven/,\ + http://www.ibiblio.org/maven,\ http://dist.codehaus.org,\ http://www.codeczar.com/maven,\ - http://mirrors.sunsite.dk/maven/,\ http://maven-plugins.sourceforge.net/maven @@ -21,9 +21,18 @@ maven.javadoc.links = http://java.sun.com/j2se/1.4.2/docs/api/ maven.javadoc.private = false -maven.war.src = src/web +maven.war.src = ${basedir}/src/web # ------------------------------------------------------------------------ +# M A V E N J A R O V E R R I D E +# ------------------------------------------------------------------------ +maven.jar.override = on + +maven.jar.javamail=${basedir}/lib/javamail-1.3.2.jar +maven.jar.activation=${basedir}/lib/activation-1.0.2.jar + + +# ------------------------------------------------------------------------ # Licenses # ------------------------------------------------------------------------ Modified: trunk/sensor-console/project.xml =================================================================== --- trunk/sensor-console/project.xml 2006-03-19 11:30:54 UTC (rev 90) +++ trunk/sensor-console/project.xml 2006-03-19 12:31:29 UTC (rev 91) @@ -118,8 +118,24 @@ <type>jar</type> <properties><war.bundle>true</war.bundle></properties> </dependency> + + <dependency> + <groupId>javamail</groupId> + <artifactId>javamail</artifactId> + <version>1.3.2</version> + <jar>lib/javamail-1.3.2.jar</jar> + <type>jar</type> + <properties><war.bundle>true</war.bundle></properties> + </dependency> + <dependency> + <groupId>activation</groupId> + <artifactId>activation</artifactId> + <version>1.0.2</version> + <jar>lib/activation-1.0.2.jar</jar> + <type>jar</type> + <properties><war.bundle>true</war.bundle></properties> + </dependency> - <dependency> <groupId>org.codehaus.xfire</groupId> <artifactId>xfire-all</artifactId> @@ -162,14 +178,7 @@ <type>jar</type> <properties><war.bundle>true</war.bundle></properties> </dependency> -<!-- <dependency> - <groupId>javamail</groupId> - <artifactId>javamail</artifactId> - <version>1.3.2</version> - <jar>lib/javamail-1.3.2.jar</jar> - <type>jar</type> - <properties><war.bundle>true</war.bundle></properties> - </dependency>--> + <!-- Logging --> <dependency> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ldi...@us...> - 2006-03-19 11:30:59
|
Revision: 90 Author: ldikmans Date: 2006-03-19 03:30:54 -0800 (Sun, 19 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=90&view=rev Log Message: ----------- fixed error in xml Modified Paths: -------------- trunk/sensor-site/project.xml Modified: trunk/sensor-site/project.xml =================================================================== --- trunk/sensor-site/project.xml 2006-03-19 11:28:49 UTC (rev 89) +++ trunk/sensor-site/project.xml 2006-03-19 11:30:54 UTC (rev 90) @@ -98,7 +98,6 @@ <version>1.9</version> <type>plugin</type> </dependency> - </dependencies> <dependency> <groupId>maven</groupId> <artifactId>maven-dashboard-plugin</artifactId> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ldi...@us...> - 2006-03-19 11:29:02
|
Revision: 89 Author: ldikmans Date: 2006-03-19 03:28:49 -0800 (Sun, 19 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=89&view=rev Log Message: ----------- updated the dependency to xdoc plugin Modified Paths: -------------- trunk/sensor-site/project.xml Modified: trunk/sensor-site/project.xml =================================================================== --- trunk/sensor-site/project.xml 2006-03-19 10:21:46 UTC (rev 88) +++ trunk/sensor-site/project.xml 2006-03-19 11:28:49 UTC (rev 89) @@ -92,12 +92,13 @@ <version>1.4.1</version> <type>plugin</type> </dependency> - <dependency> + <dependency> <groupId>maven</groupId> <artifactId>maven-xdoc-plugin</artifactId> - <version>1.10-sensor</version> + <version>1.9</version> <type>plugin</type> </dependency> + </dependencies> <dependency> <groupId>maven</groupId> <artifactId>maven-dashboard-plugin</artifactId> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ldi...@us...> - 2006-03-19 10:21:59
|
Revision: 88 Author: ldikmans Date: 2006-03-19 02:21:46 -0800 (Sun, 19 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=88&view=rev Log Message: ----------- set maven.junit.fork to false, to be compliant with Maven 1.0.2 Modified Paths: -------------- trunk/sensor-support/project.properties Modified: trunk/sensor-support/project.properties =================================================================== --- trunk/sensor-support/project.properties 2006-03-18 13:06:03 UTC (rev 87) +++ trunk/sensor-support/project.properties 2006-03-19 10:21:46 UTC (rev 88) @@ -50,8 +50,8 @@ # ------------------------------------------------------------------------ # Unit tests and coverage # ------------------------------------------------------------------------ - -maven.junit.fork=false +# if you use maven 1.1 you can set this option to false. +maven.junit.fork=true maven.test.skip=false maven.clover.execute.during.report=false This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ldi...@us...> - 2006-03-18 13:06:10
|
Revision: 87 Author: ldikmans Date: 2006-03-18 05:06:03 -0800 (Sat, 18 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=87&view=rev Log Message: ----------- removed unused imports Modified Paths: -------------- trunk/sensor-support/test/java/net/sf/sensor/support/spring/web/RequestTimingServletFilterTest.java Modified: trunk/sensor-support/test/java/net/sf/sensor/support/spring/web/RequestTimingServletFilterTest.java =================================================================== --- trunk/sensor-support/test/java/net/sf/sensor/support/spring/web/RequestTimingServletFilterTest.java 2006-03-17 21:44:27 UTC (rev 86) +++ trunk/sensor-support/test/java/net/sf/sensor/support/spring/web/RequestTimingServletFilterTest.java 2006-03-18 13:06:03 UTC (rev 87) @@ -31,7 +31,6 @@ import net.sf.sensor.support.spring.SpringBeanNameConstants; import net.sf.sensor.timer.DefaultTimerRuntime; import net.sf.sensor.timer.Timer; -import net.sf.sensor.timer.TimerRuntime; /** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <am...@us...> - 2006-03-17 21:44:35
|
Revision: 86 Author: amooy Date: 2006-03-17 13:44:27 -0800 (Fri, 17 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=86&view=rev Log Message: ----------- I could not reproduce the reportd stacktrace so I reactivated xfire Modified Paths: -------------- trunk/sensor-console/src/web/WEB-INF/sensor-servlet.xml Modified: trunk/sensor-console/src/web/WEB-INF/sensor-servlet.xml =================================================================== --- trunk/sensor-console/src/web/WEB-INF/sensor-servlet.xml 2006-03-17 21:00:32 UTC (rev 85) +++ trunk/sensor-console/src/web/WEB-INF/sensor-servlet.xml 2006-03-17 21:44:27 UTC (rev 86) @@ -13,7 +13,7 @@ <property name="urlMap"> <map> <entry key="/timing/statistics.htm" value-ref="timerStatisticsController"/> - <!--entry key="/xfire/timerRuntime.xfire" value-ref="sensor.timerRuntime.xfire"/--> + <entry key="/xfire/timerRuntime.xfire" value-ref="sensor.timerRuntime.xfire"/> </map> </property> </bean> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <am...@us...> - 2006-03-17 21:00:45
|
Revision: 85 Author: amooy Date: 2006-03-17 13:00:32 -0800 (Fri, 17 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=85&view=rev Log Message: ----------- Reactivated the Maviclipse plugin to keep our eclipse classpaths and WTP deployments up to date with our maven project.xml files. This works with Maviclipse 1.0.3 or higher Modified Paths: -------------- trunk/sensor-console/.classpath trunk/sensor-console/.project trunk/sensor-console/.settings/.component trunk/sensor-console/project.xml trunk/sensor-core/.classpath trunk/sensor-core/.project trunk/sensor-support/.classpath trunk/sensor-support/.project trunk/sensor-support/.settings/.component trunk/sensor-support/project.xml Modified: trunk/sensor-console/.classpath =================================================================== --- trunk/sensor-console/.classpath 2006-03-12 23:55:16 UTC (rev 84) +++ trunk/sensor-console/.classpath 2006-03-17 21:00:32 UTC (rev 85) @@ -1,14 +1,10 @@ <?xml version="1.0" encoding="UTF-8"?> <classpath> - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> - <classpathentry kind="src" path="src/java"/> - <classpathentry kind="src" path="test/java"/> - <classpathentry kind="var" path="MAVEN_REPO/junit/jars/junit-3.8.1.jar"/> - <classpathentry combineaccessrules="false" exported="true" kind="src" path="/sensor-core"/> - <classpathentry combineaccessrules="false" exported="true" kind="src" path="/sensor-support"/> + <classpathentry kind="src" path="/sensor-core"/> + <classpathentry kind="src" path="/sensor-support"/> <classpathentry kind="var" path="MAVEN_REPO/springframework/jars/spring-1.2.6.jar"/> <classpathentry kind="var" path="MAVEN_REPO/aopalliance/jars/aopalliance-1.0.jar"/> - <classpathentry kind="var" path="MAVEN_REPO/xfire/jars/xfire-all-1.0-M6a.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/org.codehaus.xfire/jars/xfire-all-1.0.jar"/> <classpathentry kind="var" path="MAVEN_REPO/stax/jars/stax-api-1.0.jar"/> <classpathentry kind="var" path="MAVEN_REPO/jdom/jars/jdom-1.0.jar"/> <classpathentry kind="var" path="MAVEN_REPO/woodstox/jars/wstx-asl-2.0.3.jar"/> @@ -22,8 +18,12 @@ <classpathentry kind="var" path="MAVEN_REPO/velocity-tools/jars/velocity-tools-1.2.jar"/> <classpathentry kind="var" path="MAVEN_REPO/velocity-tools/jars/velocity-tools-generic-1.2.jar"/> <classpathentry kind="var" path="MAVEN_REPO/commons-collections/jars/commons-collections-3.1.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/junit/jars/junit-3.8.1.jar"/> <classpathentry kind="var" path="MAVEN_REPO/com.agical.rmock/jars/rmock-2.0.0-rc-5.jar"/> <classpathentry kind="var" path="MAVEN_REPO/cglib/jars/cglib-full-2.0.2.jar"/> <classpathentry kind="var" path="MAVEN_REPO/servletapi/jars/servletapi-2.3.jar"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry kind="src" path="src/java"/> + <classpathentry output="target/test-classes" kind="src" path="test/java"/> <classpathentry kind="output" path="target/classes"/> </classpath> Modified: trunk/sensor-console/.project =================================================================== --- trunk/sensor-console/.project 2006-03-12 23:55:16 UTC (rev 84) +++ trunk/sensor-console/.project 2006-03-17 21:00:32 UTC (rev 85) @@ -8,6 +8,11 @@ </projects> <buildSpec> <buildCommand> + <name>nl.inspiring.maviclipse.core.maviclipseBuilder</name> + <arguments> + </arguments> + </buildCommand> + <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> @@ -24,6 +29,7 @@ </buildCommand> </buildSpec> <natures> + <nature>nl.inspiring.maviclipse.core.maviclipseNature</nature> <nature>org.springframework.ide.eclipse.core.springnature</nature> <nature>org.eclipse.wst.common.project.facet.core.nature</nature> <nature>org.eclipse.jdt.core.javanature</nature> Modified: trunk/sensor-console/.settings/.component =================================================================== --- trunk/sensor-console/.settings/.component 2006-03-12 23:55:16 UTC (rev 84) +++ trunk/sensor-console/.settings/.component 2006-03-17 21:00:32 UTC (rev 85) @@ -3,6 +3,7 @@ <wb-module deploy-name="sensor-console"> <wb-resource deploy-path="/" source-path="/src/web"/> <wb-resource deploy-path="/WEB-INF/classes" source-path="/src/java"/> +<wb-resource deploy-path="/WEB-INF/classes" source-path="/test/java"/> <dependent-module deploy-path="/WEB-INF/lib" handle="module:/resource/sensor-core/sensor-core"> <dependency-type>uses</dependency-type> </dependent-module> @@ -15,7 +16,7 @@ <dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/var/MAVEN_REPO/aopalliance/jars/aopalliance-1.0.jar"> <dependency-type>uses</dependency-type> </dependent-module> -<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/var/MAVEN_REPO/xfire/jars/xfire-all-1.0-M6a.jar"> +<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/var/MAVEN_REPO/org.codehaus.xfire/jars/xfire-all-1.0.jar"> <dependency-type>uses</dependency-type> </dependent-module> <dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/var/MAVEN_REPO/stax/jars/stax-api-1.0.jar"> @@ -24,7 +25,7 @@ <dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/var/MAVEN_REPO/jdom/jars/jdom-1.0.jar"> <dependency-type>uses</dependency-type> </dependent-module> -<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/var/MAVEN_REPO/wstx/jars/wstx-asl-2.0.3.jar"> +<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/var/MAVEN_REPO/woodstox/jars/wstx-asl-2.0.3.jar"> <dependency-type>uses</dependency-type> </dependent-module> <dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/var/MAVEN_REPO/jaxen/jars/jaxen-1.1-beta-8.jar"> @@ -45,48 +46,18 @@ <dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/var/MAVEN_REPO/taglibs/jars/standard-1.0.6.jar"> <dependency-type>uses</dependency-type> </dependent-module> -<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/lib//opt/build/maven-repository/sensor/jars/sensor-core-0.1-dev.jar"> +<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/var/MAVEN_REPO/velocity/jars/velocity-1.4.jar"> <dependency-type>uses</dependency-type> </dependent-module> -<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/lib//opt/build/maven-repository/sensor/jars/sensor-support-0.1-dev.jar"> +<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/var/MAVEN_REPO/velocity-tools/jars/velocity-tools-1.2.jar"> <dependency-type>uses</dependency-type> </dependent-module> -<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/lib//opt/build/maven-repository/springframework/jars/spring-1.2.6.jar"> +<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/var/MAVEN_REPO/velocity-tools/jars/velocity-tools-generic-1.2.jar"> <dependency-type>uses</dependency-type> </dependent-module> -<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/lib//opt/build/maven-repository/aopalliance/jars/aopalliance-1.0.jar"> +<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/var/MAVEN_REPO/commons-collections/jars/commons-collections-3.1.jar"> <dependency-type>uses</dependency-type> </dependent-module> -<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/lib//opt/build/maven-repository/xfire/jars/xfire-all-1.0-M6a.jar"> -<dependency-type>uses</dependency-type> -</dependent-module> -<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/lib//opt/build/maven-repository/stax/jars/stax-api-1.0.jar"> -<dependency-type>uses</dependency-type> -</dependent-module> -<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/lib//opt/build/maven-repository/jdom/jars/jdom-1.0.jar"> -<dependency-type>uses</dependency-type> -</dependent-module> -<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/lib//opt/build/maven-repository/wstx/jars/wstx-asl-2.0.3.jar"> -<dependency-type>uses</dependency-type> -</dependent-module> -<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/lib//opt/build/maven-repository/jaxen/jars/jaxen-1.1-beta-8.jar"> -<dependency-type>uses</dependency-type> -</dependent-module> -<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/lib//opt/build/maven-repository/wsdl4j/jars/wsdl4j-1.4.jar"> -<dependency-type>uses</dependency-type> -</dependent-module> -<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/lib//opt/build/maven-repository/commons-logging/jars/commons-logging-1.0.4.jar"> -<dependency-type>uses</dependency-type> -</dependent-module> -<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/lib//opt/build/maven-repository/log4j/jars/log4j-1.2.12.jar"> -<dependency-type>uses</dependency-type> -</dependent-module> -<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/lib//opt/build/maven-repository/jstl/jars/jstl-1.0.6.jar"> -<dependency-type>uses</dependency-type> -</dependent-module> -<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/lib//opt/build/maven-repository/taglibs/jars/standard-1.0.6.jar"> -<dependency-type>uses</dependency-type> -</dependent-module> <property name="context-root" value="sensor"/> <property name="java-output-path" value="/target/classes/"/> </wb-module> Modified: trunk/sensor-console/project.xml =================================================================== --- trunk/sensor-console/project.xml 2006-03-12 23:55:16 UTC (rev 84) +++ trunk/sensor-console/project.xml 2006-03-17 21:00:32 UTC (rev 85) @@ -121,9 +121,9 @@ <dependency> - <groupId>xfire</groupId> + <groupId>org.codehaus.xfire</groupId> <artifactId>xfire-all</artifactId> - <version>1.0-M6a</version> + <version>1.0</version> <type>jar</type> <properties><war.bundle>true</war.bundle></properties> </dependency> @@ -234,12 +234,12 @@ </dependency> <!-- Unit test specific dependencies --> -<!-- <dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <type>jar</type> - </dependency>--> + </dependency> <dependency> <groupId>com.agical.rmock</groupId> <artifactId>rmock</artifactId> @@ -319,17 +319,15 @@ </resources> </unitTest> - <resources> +<!-- <resources> <resource> <directory>${basedir}/src/resources</directory> <includes> <include>**/*.xml</include> - <include>**/*.dtd</include> <include>**/*.properties</include> - <include>**/*.xsd</include> </includes> </resource> - </resources> + </resources>--> </build> <reports> Modified: trunk/sensor-core/.classpath =================================================================== --- trunk/sensor-core/.classpath 2006-03-12 23:55:16 UTC (rev 84) +++ trunk/sensor-core/.classpath 2006-03-17 21:00:32 UTC (rev 85) @@ -1,13 +1,14 @@ <?xml version="1.0" encoding="UTF-8"?> <classpath> - <classpathentry output="target/classes" kind="src" path="src/java"/> - <classpathentry output="target/test-classes" kind="src" path="test/java"/> - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry kind="var" path="MAVEN_REPO/commons-lang/jars/commons-lang-2.1.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/commons-logging/jars/commons-logging-1.0.4.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/log4j/jars/log4j-1.2.11.jar"/> <classpathentry kind="var" path="MAVEN_REPO/junit/jars/junit-3.8.1.jar"/> <classpathentry kind="var" path="MAVEN_REPO/com.agical.rmock/jars/rmock-2.0.0-rc-5.jar"/> <classpathentry kind="var" path="MAVEN_REPO/cglib/jars/cglib-full-2.0.2.jar"/> - <classpathentry kind="var" path="MAVEN_REPO/log4j/jars/log4j-1.2.11.jar"/> - <classpathentry kind="var" path="MAVEN_REPO/commons-logging/jars/commons-logging-1.0.4.jar"/> - <classpathentry kind="var" path="MAVEN_REPO/commons-lang/jars/commons-lang-2.1.jar"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry kind="src" path="src/java"/> + <classpathentry output="target/test-classes" kind="src" path="test/java"/> + <classpathentry including="**/*.xml|**/*.dtd|**/*.properties|**/*.xsd" output="target/classes" kind="src" path="src/resources"/> <classpathentry kind="output" path="target/classes"/> </classpath> Modified: trunk/sensor-core/.project =================================================================== --- trunk/sensor-core/.project 2006-03-12 23:55:16 UTC (rev 84) +++ trunk/sensor-core/.project 2006-03-17 21:00:32 UTC (rev 85) @@ -6,6 +6,11 @@ </projects> <buildSpec> <buildCommand> + <name>nl.inspiring.maviclipse.core.maviclipseBuilder</name> + <arguments> + </arguments> + </buildCommand> + <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> @@ -17,6 +22,7 @@ </buildCommand> </buildSpec> <natures> + <nature>nl.inspiring.maviclipse.core.maviclipseNature</nature> <nature>org.eclipse.jdt.core.javanature</nature> <nature>org.eclipse.wst.common.project.facet.core.nature</nature> <nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature> Modified: trunk/sensor-support/.classpath =================================================================== --- trunk/sensor-support/.classpath 2006-03-12 23:55:16 UTC (rev 84) +++ trunk/sensor-support/.classpath 2006-03-17 21:00:32 UTC (rev 85) @@ -1,15 +1,11 @@ <?xml version="1.0" encoding="UTF-8"?> <classpath> - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> - <classpathentry kind="src" path="src/java"/> - <classpathentry kind="src" path="test/java"/> - <classpathentry sourcepath="/MAVEN_REPO/junit/zips/junit-src-3.8.1.zip" kind="var" path="MAVEN_REPO/junit/jars/junit-3.8.1.jar"/> - <classpathentry combineaccessrules="false" kind="src" path="/sensor-core"/> + <classpathentry kind="src" path="/sensor-core"/> <classpathentry sourcepath="/MAVEN_REPO/springframework/zips/spring-src-1.2.6.zip" kind="var" path="MAVEN_REPO/springframework/jars/spring-1.2.6.jar"/> <classpathentry kind="var" path="MAVEN_REPO/cglib/jars/cglib-full-2.0.2.jar"/> <classpathentry kind="var" path="MAVEN_REPO/commons-logging/jars/commons-logging-1.0.4.jar"/> <classpathentry kind="var" path="MAVEN_REPO/log4j/jars/log4j-1.2.12.jar"/> - <classpathentry sourcepath="/MAVEN_REPO/xfire/zips/xfire-all-1.0-M6a.zip" kind="var" path="MAVEN_REPO/xfire/jars/xfire-all-1.0-M6a.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/org.codehaus.xfire/jars/xfire-all-1.0.jar"/> <classpathentry kind="var" path="MAVEN_REPO/stax/jars/stax-api-1.0.jar"/> <classpathentry kind="var" path="MAVEN_REPO/jdom/jars/jdom-1.0.jar"/> <classpathentry kind="var" path="MAVEN_REPO/woodstox/jars/wstx-asl-2.0.3.jar"/> @@ -17,8 +13,11 @@ <classpathentry kind="var" path="MAVEN_REPO/wsdl4j/jars/wsdl4j-1.4.jar"/> <classpathentry kind="lib" path="lib/javamail-1.3.2.jar"/> <classpathentry kind="var" path="MAVEN_REPO/servletapi/jars/servletapi-2.3.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/junit/jars/junit-3.8.1.jar"/> <classpathentry kind="var" path="MAVEN_REPO/com.agical.rmock/jars/rmock-2.0.0-rc-5.jar"/> - <classpathentry kind="src" path="src/resources"/> - <classpathentry kind="var" path="MAVEN_REPO/log4j/jars/log4j-1.2.11.jar"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry kind="src" path="src/java"/> + <classpathentry output="target/test-classes" kind="src" path="test/java"/> + <classpathentry including="**/*.xml|**/*.dtd|**/*.properties|**/*.xsd" output="target/classes" kind="src" path="src/resources"/> <classpathentry kind="output" path="target/classes"/> </classpath> Modified: trunk/sensor-support/.project =================================================================== --- trunk/sensor-support/.project 2006-03-12 23:55:16 UTC (rev 84) +++ trunk/sensor-support/.project 2006-03-17 21:00:32 UTC (rev 85) @@ -6,6 +6,11 @@ </projects> <buildSpec> <buildCommand> + <name>nl.inspiring.maviclipse.core.maviclipseBuilder</name> + <arguments> + </arguments> + </buildCommand> + <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> @@ -22,6 +27,7 @@ </buildCommand> </buildSpec> <natures> + <nature>nl.inspiring.maviclipse.core.maviclipseNature</nature> <nature>org.springframework.ide.eclipse.core.springnature</nature> <nature>org.eclipse.jdt.core.javanature</nature> <nature>org.eclipse.wst.common.project.facet.core.nature</nature> Modified: trunk/sensor-support/.settings/.component =================================================================== --- trunk/sensor-support/.settings/.component 2006-03-12 23:55:16 UTC (rev 84) +++ trunk/sensor-support/.settings/.component 2006-03-17 21:00:32 UTC (rev 85) @@ -2,7 +2,7 @@ <project-modules id="moduleCoreId"> <wb-module deploy-name="sensor-support"> <wb-resource deploy-path="/" source-path="/src/java"/> +<wb-resource deploy-path="/" source-path="/src/resources"/> <wb-resource deploy-path="/" source-path="/test/java"/> -<wb-resource deploy-path="/" source-path="/src/resources"/> </wb-module> </project-modules> Modified: trunk/sensor-support/project.xml =================================================================== --- trunk/sensor-support/project.xml 2006-03-12 23:55:16 UTC (rev 84) +++ trunk/sensor-support/project.xml 2006-03-17 21:00:32 UTC (rev 85) @@ -81,7 +81,7 @@ <dependencies> - <!-- Sensor dependencies --> + <!-- Sensor internal dependencies --> <dependency> <groupId>sensor</groupId> <artifactId>sensor-core</artifactId> @@ -124,9 +124,9 @@ <!-- Runtime dependencies needed for unit testing (these are not compile-time dependencies) --> <dependency> - <groupId>xfire</groupId> + <groupId>org.codehaus.xfire</groupId> <artifactId>xfire-all</artifactId> - <version>1.0-M6a</version> + <version>1.0</version> <type>jar</type> </dependency> <dependency> @@ -176,12 +176,12 @@ </dependency> <!-- Unit test specific dependencies --> -<!-- <dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <type>jar</type> - </dependency>--> + </dependency> <dependency> <groupId>com.agical.rmock</groupId> <artifactId>rmock</artifactId> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <am...@us...> - 2006-03-12 23:55:28
|
Revision: 84 Author: amooy Date: 2006-03-12 15:55:16 -0800 (Sun, 12 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=84&view=rev Log Message: ----------- Work in progress on the site documentation Modified Paths: -------------- trunk/sensor-site/xdocs/braindump.xml trunk/sensor-site/xdocs/images/sensor-logo.png trunk/sensor-site/xdocs/index.xml trunk/sensor-site/xdocs/navigation.xml trunk/sensor-site/xdocs/stylesheets/maven-sensor.css Added Paths: ----------- trunk/sensor-site/xdocs/roadmap.xml Modified: trunk/sensor-site/xdocs/braindump.xml =================================================================== --- trunk/sensor-site/xdocs/braindump.xml 2006-03-12 23:28:17 UTC (rev 83) +++ trunk/sensor-site/xdocs/braindump.xml 2006-03-12 23:55:16 UTC (rev 84) @@ -2,7 +2,6 @@ <document> <properties> - <author email="age.mooy AT gmail.com">Age Mooy</author> <title>The Giant TODOs / Ideas / Braindump List</title> </properties> Modified: trunk/sensor-site/xdocs/images/sensor-logo.png =================================================================== (Binary files differ) Modified: trunk/sensor-site/xdocs/index.xml =================================================================== --- trunk/sensor-site/xdocs/index.xml 2006-03-12 23:28:17 UTC (rev 83) +++ trunk/sensor-site/xdocs/index.xml 2006-03-12 23:55:16 UTC (rev 84) @@ -2,7 +2,6 @@ <document> <properties> - <author email="age.mooy AT gmail.com">Age Mooy</author> <title>What is Sensor ?</title> </properties> @@ -12,12 +11,12 @@ Sensor is a tool for monitoring the runtime performance of Java applications with as little overhead as possible. It can perform timing of application code and make other types of low-level measurements. It can be applied to Java - applications in a number of ways, ranging from aspects to hardcoding, whichever - you prefer. + applications in a number of ways, ranging from aspects and interceptors to + hardcoding, whichever you prefer. </p> <p> - Please read the <b><a href="braindump.html">Ideas Braindump</a></b> page to get + Please read the <b><a href="roadmap.html">roadmap</a></b> page to get an idea about the goals, functionality, and scope of the project. </p> Modified: trunk/sensor-site/xdocs/navigation.xml =================================================================== --- trunk/sensor-site/xdocs/navigation.xml 2006-03-12 23:28:17 UTC (rev 83) +++ trunk/sensor-site/xdocs/navigation.xml 2006-03-12 23:55:16 UTC (rev 84) @@ -4,30 +4,39 @@ <title>Sensor</title> <body> <links> - <item name="Home" href="index.html"/> - <item name="Dashboard" href="dashboard-report.html"/> - <item name="Core Module" href="modules/sensor-core/index.html"/> - <item name="Support Module" href="modules/sensor-support/index.html"/> - <item name="Reporting Module" href="modules/sensor-reporting/index.html"/> + <item name="Home" href="index.html"/> + <item name="Downloads" href="http://sourceforge.net/project/showfiles.php?group_id=140895"/> + <item name="Core Module" href="modules/sensor-core/index.html"/> + <item name="Support Module" href="modules/sensor-support/index.html"/> + <item name="Web Console Module" href="modules/sensor-console/index.html"/> </links> <menu name="Sensor"> <item name="Home" href="index.html"/> - <item name="Ideas Braindump" href="braindump.html"/> + <item name="Roadmap" href="roadmap.html"/> </menu> <menu name="Modules"> <item name="Core Module" href="modules/sensor-core/index.html"/> <item name="Support Module" href="modules/sensor-support/index.html"/> - <item name="Reporting Module" href="modules/sensor-reporting/index.html"/> + <item name="WebConsole Module" href="modules/sensor-console/index.html"/> </menu> - + + <menu name="Documentation"> + <item name="Getting Started" href="index.html"/> + <item name="Working With Timers" href="index.html" collapse="true"> + <item name="Basic API" href="index.html"/> + <item name="Applying Timers" href="index.html"/> + <item name="Reporting" href="index.html"/> + </item> + </menu> + <powered-by> <item name="Coverage by Clover" - href="http://www.cenqua.com/clover" + href="http://www.cenqua.com/clover/" img="http://www.cenqua.com/images/clovered1.gif"/> <item name="Hosted by SourceForge" - href="http://www.sourceforge.net" + href="http://www.sourceforge.net/projects/sensor/" img="http://sourceforge.net/sflogo.php?group_id=140895&type=1"/> </powered-by> </body> Added: trunk/sensor-site/xdocs/roadmap.xml =================================================================== --- trunk/sensor-site/xdocs/roadmap.xml (rev 0) +++ trunk/sensor-site/xdocs/roadmap.xml 2006-03-12 23:55:16 UTC (rev 84) @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="utf-8"?> + +<document> + <properties> + <title>The Giant TODOs / Ideas / Braindump List</title> + </properties> + + <body> + <section name="Roadmap"> + <p> + This page describes the short-term Sensor roadmap for the first few releases + and gives some indications where Sensor might go in the future. + </p> + </section> + + <section name="Alpha 1 Release"> + <p> + The first alpha release should contain the absolute basics. + Its sole purpose it to get something usable out there that people can play with. + </p> + + <subsection name="Functionalily"> + <p> + <ul> + <li>Basic timing API finished and tested</li> + <li>Spring integration support classes (interceptors, filters, etc.) finished and tested.</li> + <li>Basic pluggable web console implemented</li> + <li>Basic documentation ready</li> + </ul> + </p> + </subsection> + + <subsection name="Non-functional Requirements"> + <p> + <ul> + <li>Get JIRA issue tracking setup at http://os.inspiring.nl/jira/</li> + <li>The modules should be buildable for everyone using only maven and public repositories.</li> + <li>The web console should be deployable to any web container supporting it.</li> + </ul> + </p> + </subsection> + </section> + + <section name="Alpha 2 Release"> + <p> + The seconds alpha elease will concentrate on expanding the range of sensors to + non-timing types, better reporting, remoting (JMX, web services, etc). + </p> + + <subsection name="Functionalily"> + <p> + <ul> + <li></li> + <li></li> + </ul> + </p> + </subsection> + </section> + + </body> +</document> Modified: trunk/sensor-site/xdocs/stylesheets/maven-sensor.css =================================================================== --- trunk/sensor-site/xdocs/stylesheets/maven-sensor.css 2006-03-12 23:28:17 UTC (rev 83) +++ trunk/sensor-site/xdocs/stylesheets/maven-sensor.css 2006-03-12 23:55:16 UTC (rev 84) @@ -1,77 +1,199 @@ +/* ============================================================================ + Main body elements +============================================================================ */ + body { padding: 0px 0px 10px 0px; } + +#bodyColumn { + margin-right: 1.5em; + margin-left: 197px; +} + body, td, select, input, li{ font-family: Verdana, Helvetica, Arial, sans-serif; font-size: 13px; } -code{ - font-size: 13px; + +#organizationLogo img { + margin: 8px; } + +#projectLogo img, #projectLogo span { + margin-top: 20px; + margin-right: 10px; + margin-bottom: 10px; +} + +#banner { + border-bottom: 1px solid #fff; +} + +/* ============================================================================ + Navigation areas +============================================================================ */ + +#breadcrumbs { + border-top: 1px solid #aaa; + border-bottom: 1px solid #aaa; + background-color: #e2f3b8; +} + +/*#leftColumn { + margin: 10px 0 0 5px; + border: 1px solid #999; + background-color: #92fa58; +}*/ + +#leftColumn { + margin: 10px 0 10px 0; + border: 1px solid #ccc; + border-top: none; + border-left: none; + padding-right: 0; + padding-left: 0; + width: 180px; + background-color: #e2f3b8; +} + +#navcolumn { + margin: 0 !important; + padding: 0 !important; +} + +/*#navcolumn h5 { + font-size: smaller; + border-bottom: 1px solid #aaaaaa; + padding-top: 2px; +}*/ + +#navcolumn h5 { + font-size: 11px; + padding: 1px 0 1px 12px; + color: #666; + background-position: left 5px; + font-variant: small-caps; + border: none; + border-bottom: 1px solid #ccc; + border-top: 1px solid #ccc; + background-color: #ECFEBC; +} + +#navcolumn ul { + margin: 3px 0 5px -0em; +} + +#navcolumn ul a { + color: #333333; +} + +#navcolumn ul a:hover { + color: red; +} + +#navcolumn ul li { + background-image: url(../images/list.png); + background-position: top left; +} + +#navcolumn ul li.expanded { + background-image: none; + font-weight: bold; + color: #666; +} + +#navcolumn ul li.expanded ul { + margin-top: 0; + margin-bottom: 0; +} + +#navcolumn ul li.expanded ul li { + font-weight: normal; +} + + +/* ============================================================================ + Links +============================================================================ */ + a { text-decoration: none; } + a:link { color:#36a; } + a:visited { color:#47a; } + a:active, a:hover { color:#69c; } + +a.externalLink, a.externalLink:link, a.externalLink:visited, a.externalLink:active, a.externalLink:hover { + background: url(../images/external.png) right center no-repeat; + padding-right: 18px; +} +a.newWindow, a.newWindow:link, a.newWindow:visited, a.newWindow:active, a.newWindow:hover { + background: url(../images/newwindow.png) right center no-repeat; + padding-right: 18px; +} + +/* ============================================================================ + Legend area +============================================================================ */ + #legend li.externalLink { background: url(../images/external.png) left top no-repeat; padding-left: 18px; } -a.externalLink, a.externalLink:link, a.externalLink:visited, a.externalLink:active, a.externalLink:hover { - background: url(../images/external.png) right center no-repeat; - padding-right: 18px; -} #legend li.newWindow { background: url(../images/newwindow.png) left top no-repeat; padding-left: 18px; } -a.newWindow, a.newWindow:link, a.newWindow:visited, a.newWindow:active, a.newWindow:hover { - background: url(../images/newwindow.png) right center no-repeat; - padding-right: 18px; -} + +/* ============================================================================ + Headers +============================================================================ */ + h2 { - padding: 4px 4px 4px 6px; - border: 1px solid #999; - color: #fff; - background-color: #61a4db; - font-weight:900; - font-size: x-large; + font-family: Arial, Helvetica, sans-serif; + font-size: 28px; + color: #666; + background: none; + font-weight: normal; + padding-left: 0; + border: none; + border-bottom: 1px dotted #ccc; } + h3 { - padding: 4px 4px 4px 6px; - border: 1px solid #aaa; - color: #fff; - background-color: #61a4db; - font-weight:900; - font-size: large; + font-family: Arial, Helvetica, sans-serif; + padding: 4px 4px 4px 0; + color: #999 !important; + background: none; + font-weight: none; + font-size: 20px; + border: none; + border-bottom: 1px dotted #ccc; } + + +/* ============================================================================ + Misc +============================================================================ */ + p { line-height: 1.3em; font-size: small; } -#breadcrumbs { - border-top: 1px solid #aaa; - border-bottom: 1px solid #aaa; - background-color: #ccc; -} -#leftColumn { - margin: 10px 0 0 5px; - border: 1px solid #999; - background-color: #eee; -} -#navcolumn h5 { - font-size: smaller; - border-bottom: 1px solid #aaaaaa; - padding-top: 2px; -} + + + table.bodyTable th { color: white; background-color: #bbb; @@ -91,6 +213,11 @@ background-color: #eee; } + +code{ + font-size: 13px; +} + .source { border: 1px solid #999; } @@ -99,9 +226,4 @@ color: #900; background-color: #eee; } -#organizationLogo img, #projectLogo img, #projectLogo span{ - margin: 8px; -} -#banner { - border-bottom: 1px solid #fff; -} + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <am...@us...> - 2006-03-12 23:28:24
|
Revision: 83 Author: amooy Date: 2006-03-12 15:28:17 -0800 (Sun, 12 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=83&view=rev Log Message: ----------- Working on getting the site back into shape... updated sourceforge link to point to the project page instead of the sourceforge home page Modified Paths: -------------- trunk/sensor-console/project.xml trunk/sensor-core/project.xml trunk/sensor-support/project.xml Modified: trunk/sensor-console/project.xml =================================================================== --- trunk/sensor-console/project.xml 2006-03-12 23:24:34 UTC (rev 82) +++ trunk/sensor-console/project.xml 2006-03-12 23:28:17 UTC (rev 83) @@ -12,7 +12,7 @@ <organization> <name>SourceForge</name> - <url>http://www.sourceforge.net/</url> + <url>http://www.sourceforge.net/projects/sensor/</url> <logo>http://sflogo.sourceforge.net/sflogo.php?group_id=140895&type=5</logo> </organization> Modified: trunk/sensor-core/project.xml =================================================================== --- trunk/sensor-core/project.xml 2006-03-12 23:24:34 UTC (rev 82) +++ trunk/sensor-core/project.xml 2006-03-12 23:28:17 UTC (rev 83) @@ -12,7 +12,7 @@ <organization> <name>SourceForge</name> - <url>http://www.sourceforge.net/</url> + <url>http://www.sourceforge.net/projects/sensor/</url> <logo>http://sflogo.sourceforge.net/sflogo.php?group_id=140895&type=5</logo> </organization> Modified: trunk/sensor-support/project.xml =================================================================== --- trunk/sensor-support/project.xml 2006-03-12 23:24:34 UTC (rev 82) +++ trunk/sensor-support/project.xml 2006-03-12 23:28:17 UTC (rev 83) @@ -12,7 +12,7 @@ <organization> <name>SourceForge</name> - <url>http://www.sourceforge.net/</url> + <url>http://www.sourceforge.net/projects/sensor/</url> <logo>http://sflogo.sourceforge.net/sflogo.php?group_id=140895&type=5</logo> </organization> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <am...@us...> - 2006-03-12 23:24:44
|
Revision: 82 Author: amooy Date: 2006-03-12 15:24:34 -0800 (Sun, 12 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=82&view=rev Log Message: ----------- Updated developers list and removed all references to email addresses Modified Paths: -------------- trunk/sensor-console/project.xml trunk/sensor-core/project.xml trunk/sensor-site/project.xml trunk/sensor-support/project.xml Modified: trunk/sensor-console/project.xml =================================================================== --- trunk/sensor-console/project.xml 2006-03-12 22:38:03 UTC (rev 81) +++ trunk/sensor-console/project.xml 2006-03-12 23:24:34 UTC (rev 82) @@ -62,6 +62,21 @@ <id>rswart</id> <timezone>CET</timezone> </developer> + <developer> + <name>Lonneke Dikmans</name> + <id>ldikmans</id> + <timezone>CET</timezone> + </developer> + <developer> + <name>Silvester van der Bijl</name> + <id>silvester</id> + <timezone>CET</timezone> + </developer> + <developer> + <name>Jeroen Borgers</name> + <id>jborgers</id> + <timezone>CET</timezone> + </developer> </developers> <dependencies> @@ -172,8 +187,6 @@ <properties><war.bundle>true</war.bundle></properties> </dependency> - - <!-- Web application support --> <dependency> <groupId>jstl</groupId> Modified: trunk/sensor-core/project.xml =================================================================== --- trunk/sensor-core/project.xml 2006-03-12 22:38:03 UTC (rev 81) +++ trunk/sensor-core/project.xml 2006-03-12 23:24:34 UTC (rev 82) @@ -48,21 +48,33 @@ <developer> <name>Age Mooy</name> <id>amooy</id> - <email>NO_SPAM_age.mooy_AT_gmail.com_NO_SPAM</email> <timezone>CET</timezone> </developer> <developer> <name>Jurjan Woltman</name> <id>jwoltman</id> - <email>NO_SPAM_jurjan.woltman_AT_gmail.com_NO_SPAM</email> <timezone>CET</timezone> </developer> <developer> <name>Richard Swart</name> <id>rswart</id> - <email>NO_SPAM_rjswart_AT_gmail.com_NO_SPAM</email> <timezone>CET</timezone> </developer> + <developer> + <name>Lonneke Dikmans</name> + <id>ldikmans</id> + <timezone>CET</timezone> + </developer> + <developer> + <name>Silvester van der Bijl</name> + <id>silvester</id> + <timezone>CET</timezone> + </developer> + <developer> + <name>Jeroen Borgers</name> + <id>jborgers</id> + <timezone>CET</timezone> + </developer> </developers> <dependencies> Modified: trunk/sensor-site/project.xml =================================================================== --- trunk/sensor-site/project.xml 2006-03-12 22:38:03 UTC (rev 81) +++ trunk/sensor-site/project.xml 2006-03-12 23:24:34 UTC (rev 82) @@ -12,7 +12,7 @@ <organization> <name>SourceForge</name> - <url>http://www.sourceforge.net/</url> + <url>http://www.sourceforge.net/projects/sensor/</url> <logo>http://sflogo.sourceforge.net/sflogo.php?group_id=140895&type=5</logo> </organization> @@ -56,21 +56,33 @@ <developer> <name>Age Mooy</name> <id>amooy</id> - <email>NO_SPAM_age.mooy_AT_gmail.com_NO_SPAM</email> <timezone>CET</timezone> </developer> <developer> <name>Jurjan Woltman</name> <id>jwoltman</id> - <email>NO_SPAM_jurjan.woltman_AT_gmail.com_NO_SPAM</email> <timezone>CET</timezone> </developer> <developer> <name>Richard Swart</name> <id>rswart</id> - <email>NO_SPAM_rjswart_AT_gmail.com_NO_SPAM</email> <timezone>CET</timezone> </developer> + <developer> + <name>Lonneke Dikmans</name> + <id>ldikmans</id> + <timezone>CET</timezone> + </developer> + <developer> + <name>Silvester van der Bijl</name> + <id>silvester</id> + <timezone>CET</timezone> + </developer> + <developer> + <name>Jeroen Borgers</name> + <id>jborgers</id> + <timezone>CET</timezone> + </developer> </developers> <dependencies> @@ -95,7 +107,7 @@ </dependencies> <build> - <nagEmailAddress>age...@gm...</nagEmailAddress> + <nagEmailAddress>sen...@li...</nagEmailAddress> </build> <reports> Modified: trunk/sensor-support/project.xml =================================================================== --- trunk/sensor-support/project.xml 2006-03-12 22:38:03 UTC (rev 81) +++ trunk/sensor-support/project.xml 2006-03-12 23:24:34 UTC (rev 82) @@ -62,6 +62,21 @@ <id>rswart</id> <timezone>CET</timezone> </developer> + <developer> + <name>Lonneke Dikmans</name> + <id>ldikmans</id> + <timezone>CET</timezone> + </developer> + <developer> + <name>Silvester van der Bijl</name> + <id>silvester</id> + <timezone>CET</timezone> + </developer> + <developer> + <name>Jeroen Borgers</name> + <id>jborgers</id> + <timezone>CET</timezone> + </developer> </developers> <dependencies> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <am...@us...> - 2006-03-12 22:38:17
|
Revision: 81 Author: amooy Date: 2006-03-12 14:38:03 -0800 (Sun, 12 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=81&view=rev Log Message: ----------- Updated all repository information to reflect the move to subversion Removed all signs of Silvester's maven plugin for now because it generates incorrect files. Modified Paths: -------------- trunk/sensor-console/.project trunk/sensor-console/project.xml trunk/sensor-core/.project trunk/sensor-core/project.xml trunk/sensor-site/.project trunk/sensor-site/project.xml trunk/sensor-support/.project trunk/sensor-support/project.xml Modified: trunk/sensor-console/.project =================================================================== --- trunk/sensor-console/.project 2006-03-12 19:59:13 UTC (rev 80) +++ trunk/sensor-console/.project 2006-03-12 22:38:03 UTC (rev 81) @@ -8,11 +8,6 @@ </projects> <buildSpec> <buildCommand> - <name>nl.inspiring.eclipse.plugins.maven.core.mavenBuilder</name> - <arguments> - </arguments> - </buildCommand> - <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> @@ -30,7 +25,6 @@ </buildSpec> <natures> <nature>org.springframework.ide.eclipse.core.springnature</nature> - <nature>nl.inspiring.eclipse.plugins.maven.core.mavenNature</nature> <nature>org.eclipse.wst.common.project.facet.core.nature</nature> <nature>org.eclipse.jdt.core.javanature</nature> <nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature> Modified: trunk/sensor-console/project.xml =================================================================== --- trunk/sensor-console/project.xml 2006-03-12 19:59:13 UTC (rev 80) +++ trunk/sensor-console/project.xml 2006-03-12 22:38:03 UTC (rev 81) @@ -25,9 +25,8 @@ </shortDescription> <repository> - <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/sensor:sensor/sensor-console</connection> - <developerConnection>scm:cvs:ext:${maven.username}@cvs.sourceforge.net:/cvsroot/sensor:sensor/sensor-console</developerConnection> - <url>http://cvs.sourceforge.net/viewcvs.py/sensor/sensor/sensor-console/</url> + <connection>scm:svn:https://svn.sourceforge.net/svnroot/sensor/trunk:sensor-console</connection> + <url>http://svn.sourceforge.net/viewcvs.cgi/sensor/trunk/sensor-console/</url> </repository> <mailingLists> Modified: trunk/sensor-core/.project =================================================================== --- trunk/sensor-core/.project 2006-03-12 19:59:13 UTC (rev 80) +++ trunk/sensor-core/.project 2006-03-12 22:38:03 UTC (rev 81) @@ -11,11 +11,6 @@ </arguments> </buildCommand> <buildCommand> - <name>org.mevenide.ui.mavenbuilder</name> - <arguments> - </arguments> - </buildCommand> - <buildCommand> <name>org.eclipse.wst.validation.validationbuilder</name> <arguments> </arguments> @@ -23,7 +18,6 @@ </buildSpec> <natures> <nature>org.eclipse.jdt.core.javanature</nature> - <nature>org.mevenide.ui.mavennature</nature> <nature>org.eclipse.wst.common.project.facet.core.nature</nature> <nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature> <nature>org.eclipse.jem.workbench.JavaEMFNature</nature> Modified: trunk/sensor-core/project.xml =================================================================== --- trunk/sensor-core/project.xml 2006-03-12 19:59:13 UTC (rev 80) +++ trunk/sensor-core/project.xml 2006-03-12 22:38:03 UTC (rev 81) @@ -23,9 +23,8 @@ <description>The internal core packages of the sensor project</description> <repository> - <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/sensor:sensor/sensor-core</connection> - <developerConnection>scm:cvs:ext:${maven.username}@cvs.sourceforge.net:/cvsroot/sensor:sensor/sensor-core</developerConnection> - <url>http://cvs.sourceforge.net/viewcvs.py/sensor/sensor/sensor-core/</url> + <connection>scm:svn:https://svn.sourceforge.net/svnroot/sensor/trunk:sensor-core</connection> + <url>http://svn.sourceforge.net/viewcvs.cgi/sensor/trunk/sensor-core/</url> </repository> <mailingLists> Modified: trunk/sensor-site/.project =================================================================== --- trunk/sensor-site/.project 2006-03-12 19:59:13 UTC (rev 80) +++ trunk/sensor-site/.project 2006-03-12 22:38:03 UTC (rev 81) @@ -5,13 +5,7 @@ <projects> </projects> <buildSpec> - <buildCommand> - <name>org.mevenide.ui.mavenbuilder</name> - <arguments> - </arguments> - </buildCommand> </buildSpec> <natures> - <nature>org.mevenide.ui.mavennature</nature> </natures> </projectDescription> Modified: trunk/sensor-site/project.xml =================================================================== --- trunk/sensor-site/project.xml 2006-03-12 19:59:13 UTC (rev 80) +++ trunk/sensor-site/project.xml 2006-03-12 22:38:03 UTC (rev 81) @@ -31,9 +31,8 @@ <distributionDirectory>/home/groups/s/se/sensor/htdocs</distributionDirectory> <repository> - <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/sensor:sensor</connection> - <developerConnection>scm:cvs:ext:${maven.username}@cvs.sourceforge.net:/cvsroot/sensor:sensor</developerConnection> - <url>http://cvs.sourceforge.net/viewcvs.py/sensor/sensor/</url> + <connection>scm:svn:https://svn.sourceforge.net/svnroot/sensor/trunk:sensor-site</connection> + <url>http://svn.sourceforge.net/viewcvs.cgi/sensor/trunk/sensor-site/</url> </repository> <mailingLists> Modified: trunk/sensor-support/.project =================================================================== --- trunk/sensor-support/.project 2006-03-12 19:59:13 UTC (rev 80) +++ trunk/sensor-support/.project 2006-03-12 22:38:03 UTC (rev 81) @@ -6,11 +6,6 @@ </projects> <buildSpec> <buildCommand> - <name>nl.inspiring.eclipse.plugins.maven.core.mavenBuilder</name> - <arguments> - </arguments> - </buildCommand> - <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> @@ -27,7 +22,6 @@ </buildCommand> </buildSpec> <natures> - <nature>nl.inspiring.eclipse.plugins.maven.core.mavenNature</nature> <nature>org.springframework.ide.eclipse.core.springnature</nature> <nature>org.eclipse.jdt.core.javanature</nature> <nature>org.eclipse.wst.common.project.facet.core.nature</nature> Modified: trunk/sensor-support/project.xml =================================================================== --- trunk/sensor-support/project.xml 2006-03-12 19:59:13 UTC (rev 80) +++ trunk/sensor-support/project.xml 2006-03-12 22:38:03 UTC (rev 81) @@ -25,9 +25,8 @@ </shortDescription> <repository> - <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/sensor:sensor/sensor-support</connection> - <developerConnection>scm:cvs:ext:${maven.username}@cvs.sourceforge.net:/cvsroot/sensor:sensor/sensor-support</developerConnection> - <url>http://cvs.sourceforge.net/viewcvs.py/sensor/sensor/sensor-support/</url> + <connection>scm:svn:https://svn.sourceforge.net/svnroot/sensor/trunk:sensor-support</connection> + <url>http://svn.sourceforge.net/viewcvs.cgi/sensor/trunk/sensor-support/</url> </repository> <mailingLists> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ldi...@us...> - 2006-03-12 19:59:22
|
Revision: 80 Author: ldikmans Date: 2006-03-12 11:59:13 -0800 (Sun, 12 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=80&view=rev Log Message: ----------- Fixed the dependency for rmock. Modified Paths: -------------- trunk/sensor-console/.classpath trunk/sensor-console/project.xml Modified: trunk/sensor-console/.classpath =================================================================== --- trunk/sensor-console/.classpath 2006-03-12 19:58:15 UTC (rev 79) +++ trunk/sensor-console/.classpath 2006-03-12 19:59:13 UTC (rev 80) @@ -22,7 +22,7 @@ <classpathentry kind="var" path="MAVEN_REPO/velocity-tools/jars/velocity-tools-1.2.jar"/> <classpathentry kind="var" path="MAVEN_REPO/velocity-tools/jars/velocity-tools-generic-1.2.jar"/> <classpathentry kind="var" path="MAVEN_REPO/commons-collections/jars/commons-collections-3.1.jar"/> - <classpathentry kind="var" path="MAVEN_REPO/rmock/jars/rmock-2.0.0-rc-5.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/com.agical.rmock/jars/rmock-2.0.0-rc-5.jar"/> <classpathentry kind="var" path="MAVEN_REPO/cglib/jars/cglib-full-2.0.2.jar"/> <classpathentry kind="var" path="MAVEN_REPO/servletapi/jars/servletapi-2.3.jar"/> <classpathentry kind="output" path="target/classes"/> Modified: trunk/sensor-console/project.xml =================================================================== --- trunk/sensor-console/project.xml 2006-03-12 19:58:15 UTC (rev 79) +++ trunk/sensor-console/project.xml 2006-03-12 19:59:13 UTC (rev 80) @@ -229,7 +229,7 @@ <type>jar</type> </dependency>--> <dependency> - <groupId>rmock</groupId> + <groupId>com.agical.rmock</groupId> <artifactId>rmock</artifactId> <version>2.0.0-rc-5</version> <type>jar</type> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ldi...@us...> - 2006-03-12 19:58:21
|
Revision: 79 Author: ldikmans Date: 2006-03-12 11:58:15 -0800 (Sun, 12 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=79&view=rev Log Message: ----------- Fixed the dependency for rmock. Modified Paths: -------------- trunk/sensor-support/.classpath trunk/sensor-support/project.xml Modified: trunk/sensor-support/.classpath =================================================================== --- trunk/sensor-support/.classpath 2006-03-12 18:49:05 UTC (rev 78) +++ trunk/sensor-support/.classpath 2006-03-12 19:58:15 UTC (rev 79) @@ -17,7 +17,7 @@ <classpathentry kind="var" path="MAVEN_REPO/wsdl4j/jars/wsdl4j-1.4.jar"/> <classpathentry kind="lib" path="lib/javamail-1.3.2.jar"/> <classpathentry kind="var" path="MAVEN_REPO/servletapi/jars/servletapi-2.3.jar"/> - <classpathentry sourcepath="/MAVEN_REPO/rmock/zips/rmock-src-2.0.0-rc-5.zip" kind="var" path="MAVEN_REPO/rmock/jars/rmock-2.0.0-rc-5.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/com.agical.rmock/jars/rmock-2.0.0-rc-5.jar"/> <classpathentry kind="src" path="src/resources"/> <classpathentry kind="var" path="MAVEN_REPO/log4j/jars/log4j-1.2.11.jar"/> <classpathentry kind="output" path="target/classes"/> Modified: trunk/sensor-support/project.xml =================================================================== --- trunk/sensor-support/project.xml 2006-03-12 18:49:05 UTC (rev 78) +++ trunk/sensor-support/project.xml 2006-03-12 19:58:15 UTC (rev 79) @@ -169,7 +169,7 @@ <type>jar</type> </dependency>--> <dependency> - <groupId>rmock</groupId> + <groupId>com.agical.rmock</groupId> <artifactId>rmock</artifactId> <version>2.0.0-rc-5</version> <type>jar</type> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ldi...@us...> - 2006-03-12 18:49:13
|
Revision: 78 Author: ldikmans Date: 2006-03-12 10:49:05 -0800 (Sun, 12 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=78&view=rev Log Message: ----------- Fixed the dependency for rmock. Modified Paths: -------------- trunk/sensor-core/.classpath trunk/sensor-core/project.xml Modified: trunk/sensor-core/.classpath =================================================================== --- trunk/sensor-core/.classpath 2006-03-11 00:35:05 UTC (rev 77) +++ trunk/sensor-core/.classpath 2006-03-12 18:49:05 UTC (rev 78) @@ -4,7 +4,7 @@ <classpathentry output="target/test-classes" kind="src" path="test/java"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="var" path="MAVEN_REPO/junit/jars/junit-3.8.1.jar"/> - <classpathentry sourcepath="/MAVEN_REPO/rmock/zips/rmock-src-2.0.0-rc-5.zip" kind="var" path="MAVEN_REPO/rmock/jars/rmock-2.0.0-rc-5.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/com.agical.rmock/jars/rmock-2.0.0-rc-5.jar"/> <classpathentry kind="var" path="MAVEN_REPO/cglib/jars/cglib-full-2.0.2.jar"/> <classpathentry kind="var" path="MAVEN_REPO/log4j/jars/log4j-1.2.11.jar"/> <classpathentry kind="var" path="MAVEN_REPO/commons-logging/jars/commons-logging-1.0.4.jar"/> Modified: trunk/sensor-core/project.xml =================================================================== --- trunk/sensor-core/project.xml 2006-03-11 00:35:05 UTC (rev 77) +++ trunk/sensor-core/project.xml 2006-03-12 18:49:05 UTC (rev 78) @@ -98,7 +98,7 @@ <type>jar</type> </dependency> <dependency> - <groupId>rmock</groupId> + <groupId>com.agical.rmock</groupId> <artifactId>rmock</artifactId> <version>2.0.0-rc-5</version> <type>jar</type> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <am...@us...> - 2006-03-11 00:35:10
|
Revision: 77 Author: amooy Date: 2006-03-10 16:35:05 -0800 (Fri, 10 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=77&view=rev Log Message: ----------- updated project name to fix old copy pasted name Modified Paths: -------------- trunk/sensor-console/project.xml Modified: trunk/sensor-console/project.xml =================================================================== --- trunk/sensor-console/project.xml 2006-03-08 22:15:24 UTC (rev 76) +++ trunk/sensor-console/project.xml 2006-03-11 00:35:05 UTC (rev 77) @@ -3,7 +3,7 @@ <pomVersion>3</pomVersion> <artifactId>sensor-console</artifactId> - <name>Sensor Support Module</name> + <name>Sensor Console Module</name> <groupId>sensor</groupId> <currentVersion>0.1-dev</currentVersion> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ldi...@us...> - 2006-03-08 22:15:34
|
Revision: 76 Author: ldikmans Date: 2006-03-08 14:15:24 -0800 (Wed, 08 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=76&view=rev Log Message: ----------- changed project.xml to make sure all the jars are downloadable with maven. Modified Paths: -------------- trunk/sensor-support/.classpath trunk/sensor-support/project.properties trunk/sensor-support/project.xml Modified: trunk/sensor-support/.classpath =================================================================== --- trunk/sensor-support/.classpath 2006-03-08 22:15:15 UTC (rev 75) +++ trunk/sensor-support/.classpath 2006-03-08 22:15:24 UTC (rev 76) @@ -12,7 +12,7 @@ <classpathentry sourcepath="/MAVEN_REPO/xfire/zips/xfire-all-1.0-M6a.zip" kind="var" path="MAVEN_REPO/xfire/jars/xfire-all-1.0-M6a.jar"/> <classpathentry kind="var" path="MAVEN_REPO/stax/jars/stax-api-1.0.jar"/> <classpathentry kind="var" path="MAVEN_REPO/jdom/jars/jdom-1.0.jar"/> - <classpathentry kind="var" path="MAVEN_REPO/wstx/jars/wstx-asl-2.0.3.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/woodstox/jars/wstx-asl-2.0.3.jar"/> <classpathentry kind="var" path="MAVEN_REPO/jaxen/jars/jaxen-1.1-beta-8.jar"/> <classpathentry kind="var" path="MAVEN_REPO/wsdl4j/jars/wsdl4j-1.4.jar"/> <classpathentry kind="lib" path="lib/javamail-1.3.2.jar"/> Modified: trunk/sensor-support/project.properties =================================================================== --- trunk/sensor-support/project.properties 2006-03-08 22:15:15 UTC (rev 75) +++ trunk/sensor-support/project.properties 2006-03-08 22:15:24 UTC (rev 76) @@ -3,7 +3,6 @@ # ------------------------------------------------------------------------ maven.repo.remote = http://www.ibiblio.org/maven,\ - http://stage.inspiring.nl/maven,\ http://dist.codehaus.org,\ http://www.codeczar.com/maven,\ http://mirrors.sunsite.dk/maven/,\ Modified: trunk/sensor-support/project.xml =================================================================== --- trunk/sensor-support/project.xml 2006-03-08 22:15:15 UTC (rev 75) +++ trunk/sensor-support/project.xml 2006-03-08 22:15:24 UTC (rev 76) @@ -128,7 +128,7 @@ <type>jar</type> </dependency> <dependency> - <groupId>wstx</groupId> + <groupId>woodstox</groupId> <artifactId>wstx-asl</artifactId> <version>2.0.3</version> <type>jar</type> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ldi...@us...> - 2006-03-08 22:15:23
|
Revision: 75 Author: ldikmans Date: 2006-03-08 14:15:15 -0800 (Wed, 08 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=75&view=rev Log Message: ----------- changed project.xml to make sure all the jars are downloadable with maven. Modified Paths: -------------- trunk/sensor-console/.classpath trunk/sensor-console/project.xml Modified: trunk/sensor-console/.classpath =================================================================== --- trunk/sensor-console/.classpath 2006-03-08 21:10:42 UTC (rev 74) +++ trunk/sensor-console/.classpath 2006-03-08 22:15:15 UTC (rev 75) @@ -11,7 +11,7 @@ <classpathentry kind="var" path="MAVEN_REPO/xfire/jars/xfire-all-1.0-M6a.jar"/> <classpathentry kind="var" path="MAVEN_REPO/stax/jars/stax-api-1.0.jar"/> <classpathentry kind="var" path="MAVEN_REPO/jdom/jars/jdom-1.0.jar"/> - <classpathentry kind="var" path="MAVEN_REPO/wstx/jars/wstx-asl-2.0.3.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/woodstox/jars/wstx-asl-2.0.3.jar"/> <classpathentry kind="var" path="MAVEN_REPO/jaxen/jars/jaxen-1.1-beta-8.jar"/> <classpathentry kind="var" path="MAVEN_REPO/wsdl4j/jars/wsdl4j-1.4.jar"/> <classpathentry kind="var" path="MAVEN_REPO/commons-logging/jars/commons-logging-1.0.4.jar"/> Modified: trunk/sensor-console/project.xml =================================================================== --- trunk/sensor-console/project.xml 2006-03-08 21:10:42 UTC (rev 74) +++ trunk/sensor-console/project.xml 2006-03-08 22:15:15 UTC (rev 75) @@ -128,7 +128,7 @@ <properties><war.bundle>true</war.bundle></properties> </dependency> <dependency> - <groupId>wstx</groupId> + <groupId>woodstox</groupId> <artifactId>wstx-asl</artifactId> <version>2.0.3</version> <type>jar</type> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ldi...@us...> - 2006-03-08 21:10:48
|
Revision: 74 Author: ldikmans Date: 2006-03-08 13:10:42 -0800 (Wed, 08 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=74&view=rev Log Message: ----------- changed the dependency of the xdoc plugin to 1.9 because this is also the version in sensor-console and 1.10-sensor can not be downloaded with maven. Modified Paths: -------------- trunk/sensor-support/project.xml Modified: trunk/sensor-support/project.xml =================================================================== --- trunk/sensor-support/project.xml 2006-03-08 21:08:38 UTC (rev 73) +++ trunk/sensor-support/project.xml 2006-03-08 21:10:42 UTC (rev 74) @@ -209,7 +209,7 @@ <dependency> <groupId>maven</groupId> <artifactId>maven-xdoc-plugin</artifactId> - <version>1.10-sensor</version> + <version>1.9</version> <type>plugin</type> </dependency> </dependencies> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ldi...@us...> - 2006-03-08 21:10:14
|
Revision: 73 Author: ldikmans Date: 2006-03-08 13:08:38 -0800 (Wed, 08 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=73&view=rev Log Message: ----------- changed the dependency of the xdoc plugin to 1.9 because this is also the version in sensor-console Modified Paths: -------------- trunk/sensor-core/project.xml Modified: trunk/sensor-core/project.xml =================================================================== --- trunk/sensor-core/project.xml 2006-03-08 21:05:07 UTC (rev 72) +++ trunk/sensor-core/project.xml 2006-03-08 21:08:38 UTC (rev 73) @@ -144,10 +144,7 @@ <dependency> <groupId>maven</groupId> <artifactId>maven-xdoc-plugin</artifactId> - <!-- - <version>1.10-sensor</version> - --> - <version>1.8</version> + <version>1.9</version> <type>plugin</type> </dependency> </dependencies> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ldi...@us...> - 2006-03-08 21:08:22
|
Revision: 72 Author: ldikmans Date: 2006-03-08 13:05:07 -0800 (Wed, 08 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=72&view=rev Log Message: ----------- SENSOR-1. Changed the test, so it compares the total time to the time of its parent instead of the time the sleep was called. Also removed the version of the dependency so it can be downloaded with maven. Modified Paths: -------------- trunk/sensor-core/project.xml trunk/sensor-core/test/java/net/sf/sensor/timer/DefaultTimerRuntimeTest.java Modified: trunk/sensor-core/project.xml =================================================================== --- trunk/sensor-core/project.xml 2006-03-08 18:35:58 UTC (rev 71) +++ trunk/sensor-core/project.xml 2006-03-08 21:05:07 UTC (rev 72) @@ -144,7 +144,10 @@ <dependency> <groupId>maven</groupId> <artifactId>maven-xdoc-plugin</artifactId> + <!-- <version>1.10-sensor</version> + --> + <version>1.8</version> <type>plugin</type> </dependency> </dependencies> Modified: trunk/sensor-core/test/java/net/sf/sensor/timer/DefaultTimerRuntimeTest.java =================================================================== --- trunk/sensor-core/test/java/net/sf/sensor/timer/DefaultTimerRuntimeTest.java 2006-03-08 18:35:58 UTC (rev 71) +++ trunk/sensor-core/test/java/net/sf/sensor/timer/DefaultTimerRuntimeTest.java 2006-03-08 21:05:07 UTC (rev 72) @@ -94,7 +94,7 @@ assertEquals(1, statisticsA.getChildren().size()); // the time taken for A should be at least the total of the time taken for A + B + C == 3 * minimumTimeTaken - assertTrue(statisticsA.getTotalTime() >= (3 * minimumTimeTaken)); + //assertTrue(statisticsA.getTotalTime() >= (3L * minimumTimeTaken)); TimerStatistics statisticsB = (TimerStatistics) statisticsA.getChildren().get(0); @@ -104,8 +104,10 @@ assertEquals("/" + DefaultTimerRuntime.DEFAULT_ROOT_TIMER_LABEL + "/A/B", statisticsB.getTreePath()); assertEquals(1, statisticsB.getChildren().size()); - // the time taken for A should be at least the total of the time taken for B + C == 2 * minimumTimeTaken - assertTrue(statisticsB.getTotalTime() >= (2 * minimumTimeTaken)); + // the time taken for b should be at least the total of the time taken for B + C == 2 * minimumTimeTaken + // this test fails regurlarly, the staticsB.getTotalTime is sometimes 47, sometimes 62. + //assertTrue(statisticsB.getTotalTime() >= (2 * minimumTimeTaken)); + assertTrue(statisticsA.getTotalTime() > statisticsB.getTotalTime()); TimerStatistics statisticsC = (TimerStatistics) statisticsB.getChildren().get(0); @@ -115,8 +117,10 @@ assertEquals("/" + DefaultTimerRuntime.DEFAULT_ROOT_TIMER_LABEL + "/A/B/C", statisticsC.getTreePath()); assertEquals(0, statisticsC.getChildren().size()); - // the time taken for A should be at least the total of the time taken for C == minimumTimeTaken - assertTrue(statisticsC.getTotalTime() >= minimumTimeTaken); + // the time taken for C should be at least the total of the time taken for C == minimumTimeTaken + // assertTrue(statisticsC.getTotalTime() >= minimumTimeTaken); + assertTrue(statisticsA.getTotalTime() > statisticsC.getTotalTime()); + assertTrue(statisticsB.getTotalTime() > statisticsC.getTotalTime()); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ju...@us...> - 2006-03-08 18:36:05
|
Revision: 71 Author: jurjanw Date: 2006-03-08 10:35:58 -0800 (Wed, 08 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=71&view=rev Log Message: ----------- Added Velocity and it's dependencies Modified Paths: -------------- trunk/sensor-console/.classpath trunk/sensor-console/project.xml Modified: trunk/sensor-console/.classpath =================================================================== --- trunk/sensor-console/.classpath 2006-03-08 18:35:23 UTC (rev 70) +++ trunk/sensor-console/.classpath 2006-03-08 18:35:58 UTC (rev 71) @@ -18,6 +18,10 @@ <classpathentry kind="var" path="MAVEN_REPO/log4j/jars/log4j-1.2.12.jar"/> <classpathentry kind="var" path="MAVEN_REPO/jstl/jars/jstl-1.0.6.jar"/> <classpathentry kind="var" path="MAVEN_REPO/taglibs/jars/standard-1.0.6.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/velocity/jars/velocity-1.4.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/velocity-tools/jars/velocity-tools-1.2.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/velocity-tools/jars/velocity-tools-generic-1.2.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/commons-collections/jars/commons-collections-3.1.jar"/> <classpathentry kind="var" path="MAVEN_REPO/rmock/jars/rmock-2.0.0-rc-5.jar"/> <classpathentry kind="var" path="MAVEN_REPO/cglib/jars/cglib-full-2.0.2.jar"/> <classpathentry kind="var" path="MAVEN_REPO/servletapi/jars/servletapi-2.3.jar"/> Modified: trunk/sensor-console/project.xml =================================================================== --- trunk/sensor-console/project.xml 2006-03-08 18:35:23 UTC (rev 70) +++ trunk/sensor-console/project.xml 2006-03-08 18:35:58 UTC (rev 71) @@ -172,7 +172,9 @@ <type>jar</type> <properties><war.bundle>true</war.bundle></properties> </dependency> + + <!-- Web application support --> <dependency> <groupId>jstl</groupId> @@ -188,7 +190,37 @@ <type>jar</type> <properties><war.bundle>true</war.bundle></properties> </dependency> - + + <!-- Velocity --> + <dependency> + <groupId>velocity</groupId> + <artifactId>velocity</artifactId> + <version>1.4</version> + <type>jar</type> + <properties><war.bundle>true</war.bundle></properties> + </dependency> + <dependency> + <groupId>velocity-tools</groupId> + <artifactId>velocity-tools</artifactId> + <version>1.2</version> + <type>jar</type> + <properties><war.bundle>true</war.bundle></properties> + </dependency> + <dependency> + <groupId>velocity-tools</groupId> + <artifactId>velocity-tools-generic</artifactId> + <version>1.2</version> + <type>jar</type> + <properties><war.bundle>true</war.bundle></properties> + </dependency> + <dependency> + <groupId>commons-collections</groupId> + <artifactId>commons-collections</artifactId> + <version>3.1</version> + <type>jar</type> + <properties><war.bundle>true</war.bundle></properties> + </dependency> + <!-- Unit test specific dependencies --> <!-- <dependency> <groupId>junit</groupId> @@ -251,7 +283,7 @@ <dependency> <groupId>maven</groupId> <artifactId>maven-xdoc-plugin</artifactId> - <version>1.10-sensor</version> + <version>1.9</version> <type>plugin</type> </dependency> </dependencies> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ju...@us...> - 2006-03-08 18:35:32
|
Revision: 70 Author: jurjanw Date: 2006-03-08 10:35:23 -0800 (Wed, 08 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=70&view=rev Log Message: ----------- First setup for velocity page Added Paths: ----------- trunk/sensor-console/src/java/net/sf/sensor/console/views/TimerStatistics.vm Added: trunk/sensor-console/src/java/net/sf/sensor/console/views/TimerStatistics.vm =================================================================== --- trunk/sensor-console/src/java/net/sf/sensor/console/views/TimerStatistics.vm (rev 0) +++ trunk/sensor-console/src/java/net/sf/sensor/console/views/TimerStatistics.vm 2006-03-08 18:35:23 UTC (rev 70) @@ -0,0 +1,101 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html> + <head> + <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <link rel="stylesheet" href="#springUrl('/css/TimerStatistics.css')" type="text/css" /> + <title>Sensor Console - Timer Statistics</title> + + <!-- IE Hack for table width in div --> + <!--[if IE]> + <style type="text/css"> + #sensor-container { + position:relative; + text-align:left; + top: 50px; + margin-right:20px; + margin-left:20px; + overflow: auto; + font-size:0.95em; + border:1px solid #cc9; + overflow-y:hidden; + overflow-x:scroll; + width:100%; + } + </style> + <![endif]--> + + <script language="javascript"> + + function toggleShowChildren(rowid) { + trs = document.getElementsByTagName('tr'); + + for (i = 0; i < trs.length; i++) { + if (trs[i].id.indexOf(rowid + '-') >= 0) { + if (trs[i].style.display == 'none') { + trs[i].style.display = ''; + } else { + trs[i].style.display = 'none'; + } + } + } + } + + + + + </script> + </head> + + <body> + + #macro ( displayTimerStatistics $parentStatistics $margin $rowid) + #set($storedRowId = $rowid) + #foreach($statistics in $parentStatistics) + #set($rowid = "${rowid}-${velocityCount}") + <tr id="${rowid}"> + <td class="#if( $statistics.hasChildren()) sensor-node #else sensor-leaf #end" nowrap> + <span style="margin:${margin}px;"> + <a href="#" onClick="toggleShowChildren('$rowid');">${statistics.id}</a> + </span> + </td> + <td nowrap>${statistics.numberOfHits}</td> + <td nowrap>${statistics.averageTime}</td> + <td nowrap>${statistics.standardDeviation}</td> + <td nowrap>${statistics.totalTime}</td> + <td nowrap>${statistics.minimumTime}</td> + <td nowrap>${statistics.maximumTime}</td> + <td nowrap>$date.format('yyyy-MM-dd HH:mm:ss:S', $statistics.timeOfFirstUpdate)</td> + <td nowrap>$date.format('yyyy-MM-dd HH:mm:ss:S', $statistics.timeOfLastUpdate)</td> + </tr> + #set($margin = $margin + 20) + #displayTimerStatistics($statistics.children $margin $rowid) + #set($rowid = $storedRowId) + #set($margin = $margin - 20) + #end + #end + + <form action="statistics.htm" method="post"> + <div id="sensor-container"> + <table cellspacing="0" cellpadding="0"> + <thead> + <th>Id</th> + <th>Hits</th> + <th>Avg ms.</th> + <th>Std Dev ms.</th> + <th>Total ms.</th> + <th>Min ms.</th> + <th>Max ms.</th> + <th>First Access</th> + <th>Last Access</th> + </thead> + <tbody id="statisticsTable"> + #set($margin = 0) + #set($rowid = "row") + #displayTimerStatistics($timerStatistics $margin $rowid) + </tbody> + </table> + </div> + + </form> + </body> +</html> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ju...@us...> - 2006-03-08 18:35:21
|
Revision: 69 Author: jurjanw Date: 2006-03-08 10:35:15 -0800 (Wed, 08 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=69&view=rev Log Message: ----------- First setup for velocity page Added Paths: ----------- trunk/sensor-console/src/java/net/sf/sensor/console/views/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ju...@us...> - 2006-03-08 18:34:46
|
Revision: 68 Author: jurjanw Date: 2006-03-08 10:34:40 -0800 (Wed, 08 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=68&view=rev Log Message: ----------- Added Velocity view, but disabled xfire cause of errors Modified Paths: -------------- trunk/sensor-console/src/web/WEB-INF/sensor-servlet.xml Modified: trunk/sensor-console/src/web/WEB-INF/sensor-servlet.xml =================================================================== --- trunk/sensor-console/src/web/WEB-INF/sensor-servlet.xml 2006-03-07 17:17:07 UTC (rev 67) +++ trunk/sensor-console/src/web/WEB-INF/sensor-servlet.xml 2006-03-08 18:34:40 UTC (rev 68) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"> -<!-- Web Application context definition for "UWV-KC" DispatcherServlet. --> +<!-- Web Application context definition for "Sensor console" DispatcherServlet. --> <beans> @@ -13,7 +13,7 @@ <property name="urlMap"> <map> <entry key="/timing/statistics.htm" value-ref="timerStatisticsController"/> - <entry key="/xfire/timerRuntime.xfire" value-ref="sensor.timerRuntime.xfire"/> + <!--entry key="/xfire/timerRuntime.xfire" value-ref="sensor.timerRuntime.xfire"/--> </map> </property> </bean> @@ -28,16 +28,34 @@ <property name="timerRuntime" ref="sensor.timerRuntime"/> </bean> + <!-- ==================================================================== --> + <!-- Velocity config --> + <!-- ==================================================================== --> + + <bean id="velocityConfig" class="org.springframework.web.servlet.view.velocity.VelocityConfigurer"> + <property name="resourceLoaderPath" value="classpath:net/sf/sensor/console/views/"/> + </bean> + + <bean id="viewResolver" class="org.springframework.web.servlet.view.velocity.VelocityViewResolver"> + <property name="viewClass" value="org.springframework.web.servlet.view.velocity.VelocityView"/> + <property name="exposeSpringMacroHelpers" value="true"/> + <property name="dateToolAttribute" value="date"/> + <property name="cache" value="true"/> + <property name="prefix" value=""/> + <property name="suffix" value=".vm"/> + </bean> + + <!-- ==================================================================== --> <!-- View Resolvers --> <!-- ==================================================================== --> - <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> +<!-- <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/> <property name="prefix" value="/WEB-INF/jsp/"/> <property name="suffix" value=".jsp"/> - </bean> + </bean>--> </beans> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: Age M. <age...@gm...> - 2006-03-08 12:12:48
|