[jboss-cvs] JBossAS SVN: r106638 - in projects: cl-benchmark and 6 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Jul 13 12:25:10 EDT 2010


Author: kabir.khan at jboss.com
Date: 2010-07-13 12:25:09 -0400 (Tue, 13 Jul 2010)
New Revision: 106638

Added:
   projects/cl-benchmark/
   projects/cl-benchmark/trunk/
   projects/cl-benchmark/trunk/.classpath
   projects/cl-benchmark/trunk/.project
   projects/cl-benchmark/trunk/.settings/
   projects/cl-benchmark/trunk/.settings/org.eclipse.jdt.core.prefs
   projects/cl-benchmark/trunk/.settings/org.maven.ide.eclipse.prefs
   projects/cl-benchmark/trunk/pom.xml
   projects/cl-benchmark/trunk/src/
   projects/cl-benchmark/trunk/src/main/
   projects/cl-benchmark/trunk/src/main/java/
   projects/cl-benchmark/trunk/src/main/resources/
   projects/cl-benchmark/trunk/src/test/
   projects/cl-benchmark/trunk/src/test/java/
   projects/cl-benchmark/trunk/src/test/resources/
   projects/cl-benchmark/trunk/target/
   projects/cl-benchmark/trunk/target/classes/
   projects/cl-benchmark/trunk/target/test-classes/
Log:
Add basic project structure


Added: projects/cl-benchmark/trunk/.classpath
===================================================================
--- projects/cl-benchmark/trunk/.classpath	                        (rev 0)
+++ projects/cl-benchmark/trunk/.classpath	2010-07-13 16:25:09 UTC (rev 106638)
@@ -0,0 +1,9 @@
+<classpath>
+  <classpathentry kind="src" path="src/test/java" output="target/test-classes" including="**/*.java"/>
+  <classpathentry kind="src" path="src/test/resources" output="target/test-classes" excluding="**/*.java"/>
+  <classpathentry kind="src" path="src/main/java" including="**/*.java"/>
+  <classpathentry kind="src" path="src/main/resources" excluding="**/*.java"/>
+  <classpathentry kind="output" path="target/classes"/>
+  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+  <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
+</classpath>
\ No newline at end of file

Added: projects/cl-benchmark/trunk/.project
===================================================================
--- projects/cl-benchmark/trunk/.project	                        (rev 0)
+++ projects/cl-benchmark/trunk/.project	2010-07-13 16:25:09 UTC (rev 106638)
@@ -0,0 +1,17 @@
+<projectDescription>
+  <name>benchmark</name>
+  <comment>Benchmarks of the jboss-cl project</comment>
+  <projects/>
+  <buildSpec>
+    <buildCommand>
+      <name>org.eclipse.jdt.core.javabuilder</name>
+    </buildCommand>
+    <buildCommand>
+      <name>org.maven.ide.eclipse.maven2Builder</name>
+    </buildCommand>
+  </buildSpec>
+  <natures>
+    <nature>org.eclipse.jdt.core.javanature</nature>
+    <nature>org.maven.ide.eclipse.maven2Nature</nature>
+  </natures>
+</projectDescription>
\ No newline at end of file

Added: projects/cl-benchmark/trunk/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- projects/cl-benchmark/trunk/.settings/org.eclipse.jdt.core.prefs	                        (rev 0)
+++ projects/cl-benchmark/trunk/.settings/org.eclipse.jdt.core.prefs	2010-07-13 16:25:09 UTC (rev 106638)
@@ -0,0 +1,5 @@
+#Tue Jul 13 17:20:48 BST 2010
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.2
+org.eclipse.jdt.core.compiler.compliance=1.4
+org.eclipse.jdt.core.compiler.source=1.3

Added: projects/cl-benchmark/trunk/.settings/org.maven.ide.eclipse.prefs
===================================================================
--- projects/cl-benchmark/trunk/.settings/org.maven.ide.eclipse.prefs	                        (rev 0)
+++ projects/cl-benchmark/trunk/.settings/org.maven.ide.eclipse.prefs	2010-07-13 16:25:09 UTC (rev 106638)
@@ -0,0 +1,9 @@
+#Tue Jul 13 17:20:47 BST 2010
+activeProfiles=
+eclipse.preferences.version=1
+fullBuildGoals=process-test-resources
+includeModules=false
+resolveWorkspaceProjects=true
+resourceFilterGoals=process-resources resources\:testResources
+skipCompilerPlugin=true
+version=1

Added: projects/cl-benchmark/trunk/pom.xml
===================================================================
--- projects/cl-benchmark/trunk/pom.xml	                        (rev 0)
+++ projects/cl-benchmark/trunk/pom.xml	2010-07-13 16:25:09 UTC (rev 106638)
@@ -0,0 +1,13 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <artifactId>jboss-parent</artifactId>
+    <groupId>org.jboss</groupId>
+    <version>5</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.cl</groupId>
+  <artifactId>benchmark</artifactId>
+  <name>JBoss Classloading Benchmark</name>
+  <version>0.0.1-SNAPSHOT</version>
+  <description>Benchmarks of the jboss-cl project</description>
+</project>
\ No newline at end of file



More information about the jboss-cvs-commits mailing list