First functioning version of Jemmy tests with OSGi
authorMathieu Baudier <mbaudier@argeo.org>
Sun, 21 Sep 2008 12:52:45 +0000 (12:52 +0000)
committerMathieu Baudier <mbaudier@argeo.org>
Sun, 21 Sep 2008 12:52:45 +0000 (12:52 +0000)
git-svn-id: https://svn.argeo.org/slc/trunk@1606 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

sandbox/argeo.slc.testui/.classpath
sandbox/argeo.slc.testui/.project
sandbox/argeo.slc.testui/.settings/org.maven.ide.eclipse.prefs [new file with mode: 0644]
sandbox/argeo.slc.testui/pom.xml [new file with mode: 0644]

index 30a18728e6fb958bccb95124c0ec1d1c46316dd7..40998eec1c7a0bb167801e323ee61a869e668fac 100644 (file)
@@ -2,5 +2,6 @@
 <classpath>
        <classpathentry kind="src" path="src/main/java"/>
        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/j2sdk1.3.1"/>
+       <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
        <classpathentry kind="output" path="bin"/>
 </classpath>
index 6b8609fcc2e4cd8865edc62464c2e8135627d106..5d57a05b052f0d620c5423807378d850a21eefb7 100644 (file)
                        <arguments>
                        </arguments>
                </buildCommand>
+               <buildCommand>
+                       <name>org.maven.ide.eclipse.maven2Builder</name>
+                       <arguments>
+                       </arguments>
+               </buildCommand>
        </buildSpec>
        <natures>
                <nature>org.eclipse.jdt.core.javanature</nature>
+               <nature>org.maven.ide.eclipse.maven2Nature</nature>
        </natures>
 </projectDescription>
diff --git a/sandbox/argeo.slc.testui/.settings/org.maven.ide.eclipse.prefs b/sandbox/argeo.slc.testui/.settings/org.maven.ide.eclipse.prefs
new file mode 100644 (file)
index 0000000..922182c
--- /dev/null
@@ -0,0 +1,9 @@
+#Sun Sep 21 14:46:02 CEST 2008
+activeProfiles=
+eclipse.preferences.version=1
+filterResources=false
+includeModules=false
+resolveWorkspaceProjects=true
+resourceFilterGoals=process-resources resources\:testResources
+useMavenFolders=false
+version=1
diff --git a/sandbox/argeo.slc.testui/pom.xml b/sandbox/argeo.slc.testui/pom.xml
new file mode 100644 (file)
index 0000000..e9427f6
--- /dev/null
@@ -0,0 +1,35 @@
+<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">
+       <modelVersion>4.0.0</modelVersion>
+       <groupId>org.argeo.slc.sandbox</groupId>
+       <artifactId>org.argeo.slc.sandbox.testui</artifactId>
+       <name>SLC Test UI</name>
+       <version>0.1.1-SNAPSHOT</version>
+       <packaging>jar</packaging>
+       <build>
+               <plugins>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-compiler-plugin</artifactId>
+                               <configuration>
+                                       <source>1.3</source>
+                                       <target>1.3</target>
+                               </configuration>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-source-plugin</artifactId>
+                               <executions>
+                                       <execution>
+                                               <id>attach-sources</id>
+                                               <phase>package</phase>
+                                               <goals>
+                                                       <goal>jar</goal>
+                                               </goals>
+                                       </execution>
+                               </executions>
+                       </plugin>
+               </plugins>
+       </build>
+</project>
\ No newline at end of file