]> git.argeo.org Git - gpl/argeo-slc.git/blob - sandbox/argeo.slc.jemmytest/pom.xml
Add distribution management
[gpl/argeo-slc.git] / sandbox / argeo.slc.jemmytest / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <groupId>org.argeo.slc.sandbox</groupId>
6 <artifactId>org.argeo.slc.sandbox.jemmytest</artifactId>
7 <name>SLC Sandbox JemmyTest</name>
8 <version>0.1.1-SNAPSHOT</version>
9 <packaging>bundle</packaging>
10 <build>
11 <plugins>
12 <plugin>
13 <groupId>org.apache.felix</groupId>
14 <artifactId>maven-bundle-plugin</artifactId>
15 <version>1.4.3</version>
16 <extensions>true</extensions>
17 <configuration>
18 <manifestLocation>META-INF</manifestLocation>
19 <instructions>
20 <Bundle-SymbolicName>
21 ${pom.artifactId}
22 </Bundle-SymbolicName>
23 <Bundle-Activator>
24 org.argeo.slc.jemmytest.JemmyTestActivator
25 </Bundle-Activator>
26 <Import-Package>
27 !org.apache.felix.*,*
28 </Import-Package>
29 <Export-Package>
30 org.argeo.slc.jemmytest.*
31 </Export-Package>
32 </instructions>
33 </configuration>
34 </plugin>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-compiler-plugin</artifactId>
38 <configuration>
39 <source>1.3</source>
40 <target>1.3</target>
41 </configuration>
42 </plugin>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-source-plugin</artifactId>
46 <executions>
47 <execution>
48 <id>attach-sources</id>
49 <phase>package</phase>
50 <goals>
51 <goal>jar</goal>
52 </goals>
53 </execution>
54 </executions>
55 </plugin>
56 <plugin>
57 <groupId>org.apache.maven.plugins</groupId>
58 <artifactId>maven-surefire-plugin</artifactId>
59 <configuration>
60 <skipTests>true</skipTests>
61 </configuration>
62 </plugin>
63 </plugins>
64 </build>
65 <profiles></profiles>
66 <dependencies>
67 <dependency>
68 <groupId>org.argeo.slc</groupId>
69 <artifactId>org.argeo.slc.autoui</artifactId>
70 <version>0.10.3-SNAPSHOT</version>
71 <exclusions>
72 <exclusion>
73 <groupId>org.apache.felix</groupId>
74 <artifactId>org.osgi.core</artifactId>
75 </exclusion>
76 <exclusion>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>org.apache.felix.main</artifactId>
79 </exclusion>
80 </exclusions>
81 </dependency>
82
83 <dependency>
84 <groupId>org.argeo.dep.jemmy</groupId>
85 <artifactId>org.argeo.dep.jemmy.nb61</artifactId>
86 <version>0.2.1-SNAPSHOT</version>
87 </dependency>
88 <dependency>
89 <groupId>junit</groupId>
90 <artifactId>junit</artifactId>
91 <version>3.8.2</version>
92 <scope>test</scope>
93 </dependency>
94 <dependency>
95 <groupId>org.argeo.slc.sandbox</groupId>
96 <artifactId>org.argeo.slc.sandbox.testui</artifactId>
97 <version>0.1.1-SNAPSHOT</version>
98 <scope>test</scope>
99 </dependency>
100
101 <!-- OSGi -->
102 <dependency>
103 <groupId>org.apache.felix</groupId>
104 <artifactId>org.osgi.core</artifactId>
105 <version>1.0.0</version>
106 </dependency>
107 </dependencies>
108 <repositories>
109 <repository>
110 <id>argeo</id>
111 <url>http://www.argeo.org/maven/argeo</url>
112 </repository>
113 <repository>
114 <id>argeo-snapshots</id>
115 <url>http://www.argeo.org/maven/argeo-snapshots</url>
116 </repository>
117 </repositories>
118 <distributionManagement>
119 <repository>
120 <uniqueVersion>false</uniqueVersion>
121 <id>argeo-restricted</id>
122 <name>Argeo FOSS Repository</name>
123 <url>file:///var/argeo/maven2/argeo</url>
124 </repository>
125 <snapshotRepository>
126 <uniqueVersion>true</uniqueVersion>
127 <id>argeo-snapshots-restricted</id>
128 <name>Argeo FOSS Snapshots Repository</name>
129 <url>file:///var/argeo/maven2/argeo-snapshots</url>
130 </snapshotRepository>
131 </distributionManagement>
132 </project>