diff --git a/.gitignore b/.gitignore index 06f8c17..5a3fcbc 100755 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ slask* bumblebee_junit4_acceptance/reports bumblebee_junit4/reports bumblebee_jruby/reports +bumblebee_uml/reports bumblebee/reports .settings bumblebee_junit4_acceptance/.settings diff --git a/buildfile b/buildfile index 4f2d31b..da5d64d 100755 --- a/buildfile +++ b/buildfile @@ -28,6 +28,7 @@ module Buildr end end + desc 'Bumblebee' define 'com.agical.bumblebee' do project.group = 'com.agical.bumblebee' @@ -39,6 +40,7 @@ define 'com.agical.bumblebee' do desc 'Bumblebee is a framework for generating useful, human-friendly documentation from executing code.' define 'bumblebee' do + project.eclipse.name = 'bumblebee' compile.with MUSE, MUSE_PARSER, JUNIT,PMD test.include 'com.agical.bumblebee.TestAll' package :jar, :id => 'bumblebee' @@ -50,6 +52,7 @@ define 'com.agical.bumblebee' do on the collector and from the comments in classes and methods involved. The script is executed and the resulting output can be processed further if neccessary.' define 'bumblebee_jruby' do + project.eclipse.name = 'bumblebee_jruby' compile.with BUMBLEBEE, JRUBY, JUNIT test.include 'com.agical.bumblebee.jruby.TestAll' package :jar, :id => 'bumblebee_jruby' @@ -59,6 +62,7 @@ define 'com.agical.bumblebee' do desc 'This is an extension to use JUnit4 for executing the code that Bumblebee collects data from.' define 'bumblebee_junit4' do + project.eclipse.name = 'bumblebee_junit4' compile.with BUMBLEBEE, JUNIT test.include 'com.agical.bumblebee.junit4.TestAll' package :jar, :id => 'bumblebee_junit4' @@ -68,6 +72,7 @@ define 'com.agical.bumblebee' do desc 'This is a UML extension to draw diagrams of different kinds' define 'bumblebee_uml' do + project.eclipse.name = 'bumblebee_uml' compile.with BUMBLEBEE, BUMBLEBEE_JUNIT4, BUMBLEBEE_JRUBY, JUNIT, MUSE, MUSE_PARSER, JRUBY, PMD, BATIK, UMLSPEED test.include 'com.agical.bumblebee.uml.TestAll' @@ -78,6 +83,7 @@ define 'com.agical.bumblebee' do desc 'This is an extension to use Bumblebee with Selenium' define 'bumblebee_selenium' do + project.eclipse.name = 'bumblebee_selenium' compile.with BUMBLEBEE, BUMBLEBEE_JUNIT4, BUMBLEBEE_JRUBY, JUNIT, MUSE, MUSE_PARSER, JRUBY, PMD, SELENIUM test.include 'com.agical.bumblebee.selenium.TestAll' @@ -88,6 +94,7 @@ define 'com.agical.bumblebee' do desc 'This is an extension to use Bumblebee with Swing' define 'bumblebee_swing' do + project.eclipse.name = 'bumblebee_swing' compile.with BUMBLEBEE, BUMBLEBEE_JUNIT4, BUMBLEBEE_JRUBY, JUNIT, MUSE, MUSE_PARSER, JRUBY, PMD test.include 'com.agical.bumblebee.swing.TestAll' @@ -98,6 +105,7 @@ define 'com.agical.bumblebee' do desc 'This module contains acceptance tests for the JUnit 4 and JRuby modules.' define 'bumblebee_junit4_acceptance' do + project.eclipse.name = 'bumblebee_junit4_acceptance' test.include 'com.agical.bumblebee.acceptance.AllTest' compile.with BUMBLEBEE, BUMBLEBEE_JUNIT4, BUMBLEBEE_JRUBY, BUMBLEBEE_UML,BUMBLEBEE_SWING, BUMBLEBEE_SELENIUM, JUNIT, MUSE, MUSE_PARSER, JRUBY,PMD,UMLSPEED,BATIK,SELENIUM diff --git a/bumblebee/.classpath b/bumblebee/.classpath old mode 100755 new mode 100644 index 7c84f2a..86bc371 --- a/bumblebee/.classpath +++ b/bumblebee/.classpath @@ -1,24 +1,21 @@ - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + diff --git a/bumblebee/.project b/bumblebee/.project old mode 100755 new mode 100644 index b0e7cd3..b8464d5 --- a/bumblebee/.project +++ b/bumblebee/.project @@ -1,5 +1,5 @@ - com.agical.bumblebee-bumblebee + bumblebee diff --git a/bumblebee_jruby/.classpath b/bumblebee_jruby/.classpath old mode 100755 new mode 100644 index 1ab2d6d..ee2babf --- a/bumblebee_jruby/.classpath +++ b/bumblebee_jruby/.classpath @@ -1,11 +1,16 @@ - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/bumblebee_jruby/.project b/bumblebee_jruby/.project old mode 100755 new mode 100644 index 1883c1d..cc89d29 --- a/bumblebee_jruby/.project +++ b/bumblebee_jruby/.project @@ -1,5 +1,5 @@ - com.agical.bumblebee-bumblebee_jruby + bumblebee_jruby diff --git a/bumblebee_junit4/.classpath b/bumblebee_junit4/.classpath old mode 100755 new mode 100644 index c9da194..ef3b6dc --- a/bumblebee_junit4/.classpath +++ b/bumblebee_junit4/.classpath @@ -1,8 +1,13 @@ - - - - - - - - + + + + + + + + + + + + + diff --git a/bumblebee_junit4/.project b/bumblebee_junit4/.project old mode 100755 new mode 100644 index e1d16fa..6b0f421 --- a/bumblebee_junit4/.project +++ b/bumblebee_junit4/.project @@ -1,5 +1,5 @@ - com.agical.bumblebee-bumblebee_junit4 + bumblebee_junit4 diff --git a/bumblebee_junit4_acceptance/.classpath b/bumblebee_junit4_acceptance/.classpath old mode 100755 new mode 100644 index 7866f84..48dcb5c --- a/bumblebee_junit4_acceptance/.classpath +++ b/bumblebee_junit4_acceptance/.classpath @@ -1,16 +1,50 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bumblebee_junit4_acceptance/.project b/bumblebee_junit4_acceptance/.project old mode 100755 new mode 100644 index 8aa7a43..abffc59 --- a/bumblebee_junit4_acceptance/.project +++ b/bumblebee_junit4_acceptance/.project @@ -1,5 +1,5 @@ - com.agical.bumblebee-bumblebee_junit4_acceptance + bumblebee_junit4_acceptance diff --git a/bumblebee_selenium/.classpath b/bumblebee_selenium/.classpath old mode 100755 new mode 100644 index 9f5dc79..089c10f --- a/bumblebee_selenium/.classpath +++ b/bumblebee_selenium/.classpath @@ -1,25 +1,20 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/bumblebee_selenium/.project b/bumblebee_selenium/.project old mode 100755 new mode 100644 index 4521d54..3535efa --- a/bumblebee_selenium/.project +++ b/bumblebee_selenium/.project @@ -1,17 +1,12 @@ - - bumblebee_selenium - - - - - - org.eclipse.jdt.core.javabuilder - - - - - - org.eclipse.jdt.core.javanature - + bumblebee_selenium + + + + org.eclipse.jdt.core.javabuilder + + + + org.eclipse.jdt.core.javanature + diff --git a/bumblebee_swing/.classpath b/bumblebee_swing/.classpath old mode 100755 new mode 100644 index f8ad532..15fd952 --- a/bumblebee_swing/.classpath +++ b/bumblebee_swing/.classpath @@ -1,10 +1,18 @@ - - - - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/bumblebee_swing/.project b/bumblebee_swing/.project old mode 100755 new mode 100644 index f93d5de..02cd66b --- a/bumblebee_swing/.project +++ b/bumblebee_swing/.project @@ -1,17 +1,12 @@ - - bumblebee_swing - - - - - - org.eclipse.jdt.core.javabuilder - - - - - - org.eclipse.jdt.core.javanature - + bumblebee_swing + + + + org.eclipse.jdt.core.javabuilder + + + + org.eclipse.jdt.core.javanature + diff --git a/bumblebee_uml/.classpath b/bumblebee_uml/.classpath old mode 100755 new mode 100644 index 64dac98..50e6c1a --- a/bumblebee_uml/.classpath +++ b/bumblebee_uml/.classpath @@ -1,26 +1,42 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bumblebee_uml/.project b/bumblebee_uml/.project old mode 100755 new mode 100644 index 32543bd..29673e9 --- a/bumblebee_uml/.project +++ b/bumblebee_uml/.project @@ -1,17 +1,12 @@ - - bumblebee_uml - - - - - - org.eclipse.jdt.core.javabuilder - - - - - - org.eclipse.jdt.core.javanature - + bumblebee_uml + + + + org.eclipse.jdt.core.javabuilder + + + + org.eclipse.jdt.core.javanature + diff --git a/bumblebee_uml/reports/junit/TEST-com.agical.bumblebee.uml.TestAll.txt b/bumblebee_uml/reports/junit/TEST-com.agical.bumblebee.uml.TestAll.txt deleted file mode 100755 index adc1587..0000000 --- a/bumblebee_uml/reports/junit/TEST-com.agical.bumblebee.uml.TestAll.txt +++ /dev/null @@ -1,11 +0,0 @@ -Testsuite: com.agical.bumblebee.uml.TestAll -Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 4.157 sec -------------- Standard Output --------------- -About to transcoder source of type: org.apache.batik.apps.rasterizer.SVGConverterFileSource -------------- ---------------- --------------- - -Testcase: generateClassDefinition took 0.408 sec -Testcase: generateClassDiagram took 0.001 sec -Testcase: generateDiagramForAllClassesUsedInAMethod took 0.041 sec -Testcase: writeClassDiagramFile took 0.032 sec -Testcase: testUmlspeedAndBatikGeneration took 3.274 sec diff --git a/bumblebee_uml/reports/junit/TEST-com.agical.bumblebee.uml.TestAll.xml b/bumblebee_uml/reports/junit/TEST-com.agical.bumblebee.uml.TestAll.xml deleted file mode 100755 index 32de535..0000000 --- a/bumblebee_uml/reports/junit/TEST-com.agical.bumblebee.uml.TestAll.xml +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/bumblebee_uml/reports/junit/last_successful_run b/bumblebee_uml/reports/junit/last_successful_run deleted file mode 100755 index e69de29..0000000 diff --git a/dependencies.rb b/dependencies.rb index 7a883aa..31e9b01 100755 --- a/dependencies.rb +++ b/dependencies.rb @@ -41,11 +41,15 @@ 'org.openqa.selenium.server:selenium-server-coreless:jar:0.9.2'] SELENIUM_1_0 = [ - 'org.seleniumhq.selenium.client-drivers:selenium-java-client-driver:jar:1.0-beta-2', - 'org.seleniumhq.selenium.server:selenium-server:jar:1.0-beta-2', - 'org.seleniumhq.selenium.server:selenium-server:jar:standalone:1.0-beta-2', - 'org.seleniumhq.selenium.core:selenium-core:jar:1.0-beta-2', - 'org.seleniumhq.selenium.server:selenium-server-coreless:jar:1.0-beta-2'] + 'org.seleniumhq.selenium.client-drivers:selenium-java-client-driver:jar:1.0.1', + 'org.seleniumhq.selenium.server:selenium-server:jar:1.0.1', + 'org.seleniumhq.selenium.server:selenium-server:jar:standalone:1.0.1', + 'org.seleniumhq.selenium.core:selenium-core:jar:1.0.1', + 'org.seleniumhq.selenium.server:selenium-server-coreless:jar:1.0.1'] + +SELENIUM_2_0 = [ + 'org.seleniumhq.selenium:selenium:jar:2.0a5', + 'org.seleniumhq.selenium:selenium-server:jar:2.0a5'] SELENIUM = SELENIUM_1_0 JETTY = ['jetty:jetty:jar:5.01.1']