You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
(41) |
Apr
(9) |
May
|
Jun
|
Jul
(39) |
Aug
(38) |
Sep
(135) |
Oct
(220) |
Nov
(75) |
Dec
(74) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
(44) |
Feb
(160) |
Mar
(49) |
Apr
(69) |
May
(40) |
Jun
(52) |
Jul
(47) |
Aug
(51) |
Sep
(19) |
Oct
(22) |
Nov
(36) |
Dec
(76) |
| 2007 |
Jan
(154) |
Feb
(165) |
Mar
(186) |
Apr
(143) |
May
(175) |
Jun
(133) |
Jul
(203) |
Aug
(177) |
Sep
(136) |
Oct
|
Nov
|
Dec
|
|
From: Markus B. <mba...@us...> - 2006-02-05 17:49:09
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6155 Modified Files: customTargets.xml Log Message: site.xml generation: removed obscure attribute url from description element Index: customTargets.xml =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/customTargets.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** customTargets.xml 5 Feb 2006 16:40:58 -0000 1.6 --- customTargets.xml 5 Feb 2006 17:48:56 -0000 1.7 *************** *** 228,232 **** <echo file="${UpdateSiteStagingLocation}/site.xml"><?xml version="1.0" encoding="UTF-8"?> <site> ! <description url="http://updatesite.rubypeople.org/nightly"> The Ruby Development Tools nightly builds. </description> <feature url="features/org.rubypeople.rdt_${featureVersion}.jar" id="org.rubypeople.rdt" version="${featureVersion}"> <category name="RubyEclipseNightlyBuilds"/> </feature> --- 228,232 ---- <echo file="${UpdateSiteStagingLocation}/site.xml"><?xml version="1.0" encoding="UTF-8"?> <site> ! <description;> The Ruby Development Tools nightly builds. </description> <feature url="features/org.rubypeople.rdt_${featureVersion}.jar" id="org.rubypeople.rdt" version="${featureVersion}"> <category name="RubyEclipseNightlyBuilds"/> </feature> |
|
From: Markus B. <mba...@us...> - 2006-02-05 17:02:23
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/test/org/rubypeople/rdt/cruisecontrol/plugin/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20414/test/org/rubypeople/rdt/cruisecontrol/plugin/tests Added Files: EclipseLabelIncrementerTest.java Log Message: a label incrementer plugin for cruisecontrol --- NEW FILE: EclipseLabelIncrementerTest.java --- package org.rubypeople.rdt.cruisecontrol.plugin.tests; import org.rubypeople.rdt.cruisecontrol.plugin.EclipsePluginLabelProvider; import junit.framework.TestCase; public class EclipseLabelIncrementerTest extends TestCase { private EclipsePluginLabelProvider incrementer; public EclipseLabelIncrementerTest(String name) { super(name); } public void setUp() { incrementer = new EclipsePluginLabelProvider(); } public void testIsValidLabel() { assertEquals(incrementer.isValidLabel("abc"), true); } public void testIncrementLabel() { incrementer.setPrefix("1.0.0") ; String label = incrementer.incrementLabel("doesntMatter", null) ; assertTrue(label.startsWith("1.0.0.")) ; String numberPart = label.substring(6) ; assertTrue(numberPart.endsWith("NGT")) ; numberPart = numberPart.substring(0, numberPart.length()-3) ; assertTrue(!numberPart.startsWith("0") ); int number = Integer.parseInt(numberPart) ; // may be in range 501010000 -> Integer.Max ( = 2147483647 , sorry, no more builds in the year 2022 :-) assertTrue(number > 501010000 ); } public void testGetDefaultLabel() { assertEquals("0.1.0", incrementer.getDefaultLabel()); assertTrue(incrementer.isValidLabel(incrementer.getDefaultLabel())); } } |
|
From: Markus B. <mba...@us...> - 2006-02-05 17:02:21
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/test/org/rubypeople/rdt/cruisecontrol In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20219/test/org/rubypeople/rdt/cruisecontrol Log Message: Directory /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/test/org/rubypeople/rdt/cruisecontrol added to the repository |
|
From: Markus B. <mba...@us...> - 2006-02-05 17:02:20
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20414 Added Files: .project cruiseControl.launch .classpath Log Message: a label incrementer plugin for cruisecontrol --- NEW FILE: .project --- <?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>cruise-control-plugin</name> <comment></comment> <projects> </projects> <buildSpec> <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> </buildCommand> </buildSpec> <natures> <nature>org.eclipse.jdt.core.javanature</nature> </natures> </projectDescription> --- NEW FILE: .classpath --- <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path="src"/> <classpathentry kind="src" path="test"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry combineaccessrules="false" kind="src" path="/cruisecontrol"/> <classpathentry kind="output" path="bin"/> </classpath> --- NEW FILE: cruiseControl.launch --- <?xml version="1.0" encoding="UTF-8"?> <launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication"> <stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="CruiseControl"/> <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="cruise-control-plugin"/> <stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:cruise-control-plugin/config}"/> <booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" value="true"/> </launchConfiguration> |
|
From: Markus B. <mba...@us...> - 2006-02-05 17:02:20
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20219/test Log Message: Directory /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/test added to the repository |
|
From: Markus B. <mba...@us...> - 2006-02-05 17:02:20
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/src/org/rubypeople/rdt/cruisecontrol/plugin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20414/src/org/rubypeople/rdt/cruisecontrol/plugin Added Files: EclipsePluginLabelProvider.java Log Message: a label incrementer plugin for cruisecontrol --- NEW FILE: EclipsePluginLabelProvider.java --- package org.rubypeople.rdt.cruisecontrol.plugin; import java.text.SimpleDateFormat; import java.util.Date; import net.sourceforge.cruisecontrol.LabelIncrementer; import org.jdom.Element; public class EclipsePluginLabelProvider implements LabelIncrementer { private String defaultLabel = "0.1.0" ; private String prefix = "0.7.0" ; public EclipsePluginLabelProvider() { super() ; } public boolean isPreBuildIncrementer() { return true ; } public void setDefaultLabel(String label) { defaultLabel = label ; } public String getDefaultLabel() { return defaultLabel ; } public boolean isValidLabel(String label, Element element) { return true ; } public String incrementLabel(String oldLabel, Element buildLog) { return prefix + "." + this.getFormattedDate() + "NGT" ; } public boolean isValidLabel(String label) { return true; } private String getFormattedDate() { String formattedDate = new SimpleDateFormat("yyMMddHHmm").format(new Date()) ; if (formattedDate.startsWith("0")) { return formattedDate.substring(1) ; } else { return formattedDate ; } } public String getPrefix() { return prefix; } public void setPrefix(String prefix) { this.prefix = prefix; } } |
|
From: Markus B. <mba...@us...> - 2006-02-05 17:02:20
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20414/config Added Files: build-empty.xml config.xml Log Message: a label incrementer plugin for cruisecontrol --- NEW FILE: config.xml --- <cruisecontrol> <project name="RDT" buildafterfailed="false"> <plugin name="labelincrementer" classname="org.rubypeople.rdt.cruisecontrol.plugin.EclipsePluginLabelProvider"/> <labelincrementer prefix="0.5.0"/> <!-- Defines where cruise looks for changes, to decide whether to run the build --> <modificationset quietperiod="5"> <alwaysbuild/> </modificationset> <!-- Configures the actual build loop, how often and which build file/target --> <schedule interval="5"> <ant antscript="/usr/local/java/jakarta-ant-1.5.1/bin/ant" buildfile="build-empty.xml" target="empty" uselogger="true" usedebug="false"/> </schedule> <!-- more recent versions of CC should use the listener below, instead of the currentbuildstatusbootstrapper, currentbuildstatuspublisher combination. NOTE: Must match filename in CC reporting/jsp - override.properties: user.build.status.file --> <listeners> <currentbuildstatuslistener file="logs/RDT/buildstatus.txt"/> </listeners> <!-- Publishers are run *after* a build completes --> <publishers> </publishers> </project> </cruisecontrol> --- NEW FILE: build-empty.xml --- <project name="build-RDT" default="build"> <target name="build-RDT"> <echo message="Building"/> </target> </project> |
|
From: Markus B. <mba...@us...> - 2006-02-05 17:02:20
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/test/org/rubypeople/rdt/cruisecontrol/plugin/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20219/test/org/rubypeople/rdt/cruisecontrol/plugin/tests Log Message: Directory /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/test/org/rubypeople/rdt/cruisecontrol/plugin/tests added to the repository |
|
From: Markus B. <mba...@us...> - 2006-02-05 17:02:20
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/src/org In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20219/src/org Log Message: Directory /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/src/org added to the repository |
|
From: Markus B. <mba...@us...> - 2006-02-05 17:02:19
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/src/org/rubypeople/rdt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20219/src/org/rubypeople/rdt Log Message: Directory /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/src/org/rubypeople/rdt added to the repository |
|
From: Markus B. <mba...@us...> - 2006-02-05 17:02:14
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/test/org/rubypeople/rdt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20219/test/org/rubypeople/rdt Log Message: Directory /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/test/org/rubypeople/rdt added to the repository |
|
From: Markus B. <mba...@us...> - 2006-02-05 17:02:14
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/test/org/rubypeople/rdt/cruisecontrol/plugin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20219/test/org/rubypeople/rdt/cruisecontrol/plugin Log Message: Directory /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/test/org/rubypeople/rdt/cruisecontrol/plugin added to the repository |
|
From: Markus B. <mba...@us...> - 2006-02-05 17:02:13
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/test/org In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20219/test/org Log Message: Directory /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/test/org added to the repository |
|
From: Markus B. <mba...@us...> - 2006-02-05 17:02:13
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/test/org/rubypeople In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20219/test/org/rubypeople Log Message: Directory /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/test/org/rubypeople added to the repository |
|
From: Markus B. <mba...@us...> - 2006-02-05 17:02:13
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/src/org/rubypeople/rdt/cruisecontrol/plugin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20219/src/org/rubypeople/rdt/cruisecontrol/plugin Log Message: Directory /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/src/org/rubypeople/rdt/cruisecontrol/plugin added to the repository |
|
From: Markus B. <mba...@us...> - 2006-02-05 17:02:12
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/src/org/rubypeople/rdt/cruisecontrol In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20219/src/org/rubypeople/rdt/cruisecontrol Log Message: Directory /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/src/org/rubypeople/rdt/cruisecontrol added to the repository |
|
From: Markus B. <mba...@us...> - 2006-02-05 17:02:12
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/src/org/rubypeople In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20219/src/org/rubypeople Log Message: Directory /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/src/org/rubypeople added to the repository |
|
From: Markus B. <mba...@us...> - 2006-02-05 17:02:12
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20219/src Log Message: Directory /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/src added to the repository |
|
From: Markus B. <mba...@us...> - 2006-02-05 17:02:12
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20219/config Log Message: Directory /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin/config added to the repository |
|
From: Markus B. <mba...@us...> - 2006-02-05 16:59:45
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18830/cruiseControl/plugin Added Files: README.txt Log Message: readme for cc plugin --- NEW FILE: README.txt --- This is an Eclipse project for a cruise control label provider, it produces labels with the format <prefix>.<date>NGT where date has the format ymmddhhMM and prefix can be set from the cruise control config file. Setup: This project requires a project named "CruiseControl" in the same workspace, it has been tested with Cruise Control 2.3.1. |
|
From: Markus B. <mba...@us...> - 2006-02-05 16:59:40
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18805/cruiseControl/plugin Log Message: Directory /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/plugin added to the repository |
|
From: Markus B. <mba...@us...> - 2006-02-05 16:41:07
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12339 Modified Files: build.properties customTargets.xml Log Message: added comments Index: customTargets.xml =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/customTargets.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** customTargets.xml 20 Jan 2006 01:52:39 -0000 1.5 --- customTargets.xml 5 Feb 2006 16:40:58 -0000 1.6 *************** *** 107,115 **** <target name="replaceVersions" if="baseFeatureVersion"> ! <echo message="Nightly or integration build: replacing version ${baseFeatureVersion} with ${featureVersion}"/> <replace dir="${buildDirectory}/features"> <include name="org.rubypeople.*/feature.xml"/> <replacefilter token="${baseFeatureVersion}" value="${featureVersion}" /> </replace> <replace dir="${buildDirectory}/plugins"> <include name="org.rubypeople.*/plugin.xml"/> --- 107,119 ---- <target name="replaceVersions" if="baseFeatureVersion"> ! <echo message="Replacing version in the feature files: replacing ${baseFeatureVersion} with ${featureVersion}"/> ! <!-- make sure to select the test feature file as well --> <replace dir="${buildDirectory}/features"> <include name="org.rubypeople.*/feature.xml"/> <replacefilter token="${baseFeatureVersion}" value="${featureVersion}" /> </replace> + <!-- in a manual build started with export from the feature.xml, there is no + need to replace the versions in the plugin.xml files if they are set to 0.0.0, + but here it needs to be --> <replace dir="${buildDirectory}/plugins"> <include name="org.rubypeople.*/plugin.xml"/> *************** *** 119,123 **** <include name="org.rubypeople.*/META-INF/MANIFEST.MF"/> <replacefilter token="Bundle-Version: ${baseFeatureVersion}" value="Bundle-Version: ${featureVersion}" /> ! </replace> </target> --- 123,127 ---- <include name="org.rubypeople.*/META-INF/MANIFEST.MF"/> <replacefilter token="Bundle-Version: ${baseFeatureVersion}" value="Bundle-Version: ${featureVersion}" /> ! </replace> </target> Index: build.properties =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/build.properties,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** build.properties 29 Dec 2005 09:45:25 -0000 1.2 --- build.properties 5 Feb 2006 16:40:58 -0000 1.3 *************** *** 113,117 **** # The baseFeatureVersion must be set, because it is used to replace the version in the # feature.xml files of the rdt feature.xml and the test feature.xml with the created featureVersion ! baseFeatureVersion=0.6.0 # B) Every other Build type --- 113,117 ---- # The baseFeatureVersion must be set, because it is used to replace the version in the # feature.xml files of the rdt feature.xml and the test feature.xml with the created featureVersion ! baseFeatureVersion=0.0.0 # B) Every other Build type *************** *** 124,127 **** --- 124,130 ---- # customTargets.xml. The featureVersion consists of the nightlyBuildFeatureVersionPrefix # concatenated with a timestamp in the format yyyyMMddhhmm + # Please mind that this property is not used from cruiseControl. CruiseControl needs to + # calculate the build label by its own with a label incrementer. See config.xml for + # how to change the prefix for the eclipse label incrementer nightlyBuildFeatureVersionPrefix=0.7.0. |
|
From: Markus B. <mba...@us...> - 2006-02-05 16:39:27
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11506 Modified Files: config.xml Log Message: buildAfterFailed to false, increased quiet period, prefix for label incrementer can be set Index: config.xml =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/config.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** config.xml 8 Jan 2006 12:38:36 -0000 1.3 --- config.xml 5 Feb 2006 16:39:14 -0000 1.4 *************** *** 1,11 **** <cruisecontrol> ! <plugin name="labelincrementer" prefix="0.5"/> ! <project name="RDT" buildafterfailed="true"> <plugin name="labelincrementer" classname="org.rubypeople.rdt.cruisecontrol.plugin.EclipsePluginLabelProvider"/> <!-- Defines where cruise looks for changes, to decide whether to run the build --> ! <modificationset quietperiod="10"> ! <cvs cvsroot=":ext:mba...@cv...:/cvsroot/rubyeclipse" module="rdt-all"/> ! </modificationset> <!-- Configures the actual build loop, how often and which build file/target --> --- 1,12 ---- <cruisecontrol> ! <project name="RDT" buildafterfailed="false"> <plugin name="labelincrementer" classname="org.rubypeople.rdt.cruisecontrol.plugin.EclipsePluginLabelProvider"/> + <labelincrementer prefix="0.7.0"/> <!-- Defines where cruise looks for changes, to decide whether to run the build --> ! <modificationset quietperiod="120"> ! <cvs cvsroot=":ext:mba...@cv...:/cvsroot/rubyeclipse" module="rdt-all"/> ! <alwaysbuild/> ! </modificationset> <!-- Configures the actual build loop, how often and which build file/target --> *************** *** 15,19 **** target="dist" uselogger="true" ! usedebug="false"/> </schedule> --- 16,20 ---- target="dist" uselogger="true" ! usedebug="true"/> </schedule> |
|
From: Markus B. <mba...@us...> - 2006-02-05 14:24:11
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.core/META-INF In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29648/META-INF Modified Files: MANIFEST.MF Log Message: undo error for cruiseControl test Index: MANIFEST.MF =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.core/META-INF/MANIFEST.MF,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** MANIFEST.MF 5 Feb 2006 13:57:34 -0000 1.13 --- MANIFEST.MF 5 Feb 2006 14:24:02 -0000 1.14 *************** *** 3,7 **** Bundle-Name: %Plugin.name Bundle-SymbolicName: org.rubypeople.rdt.core; singleton:=true ! Bundle-Version: 0.1.0 Bundle-ClassPath: rdtcore.jar, lib/jruby.jar --- 3,7 ---- Bundle-Name: %Plugin.name Bundle-SymbolicName: org.rubypeople.rdt.core; singleton:=true ! Bundle-Version: 0.0.0 Bundle-ClassPath: rdtcore.jar, lib/jruby.jar |
|
From: Markus B. <mba...@us...> - 2006-02-05 13:57:42
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.core/META-INF In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17426/META-INF Modified Files: MANIFEST.MF Log Message: just a test for buildAfterFailed feature of cruiseControl Index: MANIFEST.MF =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.core/META-INF/MANIFEST.MF,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** MANIFEST.MF 4 Feb 2006 11:48:45 -0000 1.12 --- MANIFEST.MF 5 Feb 2006 13:57:34 -0000 1.13 *************** *** 3,7 **** Bundle-Name: %Plugin.name Bundle-SymbolicName: org.rubypeople.rdt.core; singleton:=true ! Bundle-Version: 0.0.0 Bundle-ClassPath: rdtcore.jar, lib/jruby.jar --- 3,7 ---- Bundle-Name: %Plugin.name Bundle-SymbolicName: org.rubypeople.rdt.core; singleton:=true ! Bundle-Version: 0.1.0 Bundle-ClassPath: rdtcore.jar, lib/jruby.jar |