]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - sandbox/argeo.slc.jemmytest/pom.xml
Integrate XML-based file exchanges.
[gpl/argeo-slc.git] / sandbox / argeo.slc.jemmytest / pom.xml
index 2e1662a0c73b99108594cf1c757bf58eb9d4dfa9..9a3edf3910ef4505a6ad95ce8cb967d0341518a1 100644 (file)
 <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.jemmytest</artifactId>
-       <name>SLC Sandbox JemmyTest</name>
-       <version>0.1.1-SNAPSHOT</version>
-       <packaging>bundle</packaging>
-       <build>
-               <plugins>
-                       <plugin>
-                               <groupId>org.apache.felix</groupId>
-                               <artifactId>maven-bundle-plugin</artifactId>
-                               <version>1.4.3</version>
-                               <extensions>true</extensions>
-                               <configuration>
-                                       <manifestLocation>META-INF</manifestLocation>
-                                       <instructions>
-                                               <Bundle-SymbolicName>
-                                                       ${pom.artifactId}
-                                               </Bundle-SymbolicName>
-                                               <Bundle-Activator>
-                                                       org.argeo.slc.jemmytest.JemmyTestActivator
-                                               </Bundle-Activator>
-                                               <Import-Package>
-                                                       !org.apache.felix.*,*
-                                               </Import-Package>
-                                               <Export-Package>
-                                                       org.argeo.slc.jemmytest.*
-                                               </Export-Package>
-                                       </instructions>
-                               </configuration>
-                       </plugin>
-                       <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>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-surefire-plugin</artifactId>
-                               <configuration>
-                                       <skipTests>true</skipTests>
-                               </configuration>
-                       </plugin>
-               </plugins>
-       </build>
-       <profiles></profiles>
-       <dependencies>
-               <dependency>
-                       <groupId>org.argeo.slc</groupId>
-                       <artifactId>org.argeo.slc.autoui</artifactId>
-                       <version>0.10.3-SNAPSHOT</version>
-                       <exclusions>
-                               <exclusion>
-                                       <groupId>org.apache.felix</groupId>
-                                       <artifactId>org.osgi.core</artifactId>
-                               </exclusion>
-                               <exclusion>
-                                       <groupId>org.apache.felix</groupId>
-                                       <artifactId>org.apache.felix.main</artifactId>
-                               </exclusion>
-                       </exclusions>
-               </dependency>
+    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>
+    <parent>
+        <groupId>org.argeo.slc</groupId>
+        <artifactId>argeo-slc</artifactId>
+        <version>0.11.1-SNAPSHOT</version>
+        <relativePath>../org.argeo.slc</relativePath>
+    </parent>
+    <groupId>org.argeo.slc.sandbox</groupId>
+    <artifactId>org.argeo.slc.sandbox.jemmytest</artifactId>
+    <name>SLC Sandbox JemmyTest</name>
+    <packaging>bundle</packaging>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <version>1.4.3</version>
+                <extensions>true</extensions>
+                <configuration>
+                    <manifestLocation>
+                        src/main/resources/META-INF
+                    </manifestLocation>
+                    <instructions>
+                        <Bundle-SymbolicName>
+                            ${pom.artifactId}
+                        </Bundle-SymbolicName>
+                        <Bundle-Activator>
+                            org.argeo.slc.jemmytest.JemmyTestActivator
+                        </Bundle-Activator>
+                        <Export-Package>
+                            org.argeo.slc.jemmytest.*
+                        </Export-Package>
+                        <Import-Package>
+                            *,org.springframework.beans.factory.xml;version=2.0.8
+                        </Import-Package>
+                        <Require-Bundle>
+                            org.argeo.slc.detached
+                        </Require-Bundle>
+                    </instructions>
+                </configuration>
+            </plugin>
+            <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>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration></configuration>
+            </plugin>
+        </plugins>
+    </build>
+    <profiles></profiles>
+    <dependencies>
+        <dependency>
+            <groupId>org.argeo.slc</groupId>
+            <artifactId>org.argeo.slc.detached</artifactId>
+            <version>${project.version}</version>
+        </dependency>
 
-               <dependency>
-                       <groupId>org.argeo.dep.jemmy</groupId>
-                       <artifactId>org.argeo.dep.jemmy.nb61</artifactId>
-                       <version>0.2.1-SNAPSHOT</version>
-               </dependency>
-               <dependency>
-                       <groupId>junit</groupId>
-                       <artifactId>junit</artifactId>
-                       <version>3.8.2</version>
-                       <scope>test</scope>
-               </dependency>
-               <dependency>
-                       <groupId>org.argeo.slc.sandbox</groupId>
-                       <artifactId>org.argeo.slc.sandbox.testui</artifactId>
-                       <version>0.1.1-SNAPSHOT</version>
-                       <scope>test</scope>
-               </dependency>
+        <dependency>
+            <groupId>org.argeo.slc</groupId>
+            <artifactId>argeo-slc-agent</artifactId>
+            <version>${project.version}</version>
+            <scope>test</scope>
+        </dependency>
 
-               <!-- OSGi -->
-               <dependency>
-                       <groupId>org.apache.felix</groupId>
-                       <artifactId>org.osgi.core</artifactId>
-                       <version>1.0.0</version>
-               </dependency>
-       </dependencies>
-       <repositories>
-               <repository>
-                       <id>argeo</id>
-                       <url>http://www.argeo.org/maven/argeo</url>
-               </repository>
-       </repositories>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-context</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.osgi.core</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.argeo.dep.jemmy</groupId>
+            <artifactId>org.argeo.dep.jemmy.nb61</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+
+    </dependencies>
 </project>
\ No newline at end of file