Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0ee6cf331b45121b2064f346be147e5e013d9312 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0"?>
<project>
	<modelVersion>4.0.0</modelVersion>	
	<parent>
		<groupId>ch.ethz.iks.r-osgi</groupId>
		<artifactId>project</artifactId>
		<version>1.0.0.RC1</version>
	</parent>
	<groupId>ch.ethz.iks.r-osgi</groupId>
	<artifactId>remote</artifactId>
	<packaging>osgi-bundle</packaging>
	<name>R-OSGi Remote Service</name>
	
	<build>
		<resources>
			<resource>
				<targetPath>META-INF</targetPath>
				<directory>resources</directory>
			</resource>
		</resources>
		<plugins>
			<plugin>
		        <groupId>org.apache.maven.plugins</groupId>
        		<artifactId>maven-compiler-plugin</artifactId>
          		<configuration>
	    			<source>1.2</source>
	    			<target>1.1</target>
	    			<optimize>true</optimize>
	    			<debug>false</debug>
	    		</configuration>
	    	</plugin>
			<plugin>
				<groupId>org.apache.felix.plugins</groupId>
				<artifactId>maven-osgi-plugin</artifactId>
				<version>0.9.0-incubator-SNAPSHOT</version>
				<extensions>true</extensions>
				<configuration>
					<osgiManifest>
						<bundleActivator>ch.ethz.iks.r_osgi.impl.RemoteOSGiActivator</bundleActivator>
						<bundleName>R-OSGi Remote Service</bundleName>
						<bundleSymbolicName>ch.ethz.iks.r_osgi.remote</bundleSymbolicName>
						<bundleDescription>R-OSGi Remote Service</bundleDescription>
						<bundleVendor>Jan S. Rellermeyer, ETH Zurich</bundleVendor>
						<importPackage>org.osgi.framework, org.osgi.util.tracker, org.osgi.service.log, org.osgi.service.event</importPackage>
						<exportPackage>ch.ethz.iks.r_osgi, ch.ethz.iks.r_osgi.channels, ch.ethz.iks.r_osgi.messages, ch.ethz.iks.r_osgi.types, ch.ethz.iks.r_osgi.service_discovery, ch.ethz.iks.util, org.objectweb.asm</exportPackage>
						<dynamicImportPackage>*</dynamicImportPackage>
					</osgiManifest>
				</configuration>
			</plugin>
		</plugins>
	</build>

	<dependencies>
		<dependency>
			<groupId>org.osgi</groupId>
			<artifactId>org.osgi</artifactId>
			<version>3.0</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>asm</groupId>
			<artifactId>asm</artifactId>
			<version>3.0</version>
		</dependency>
		<dependency>
        	<groupId>junit</groupId>
         	<artifactId>junit</artifactId>
         	<version>3.8.1</version>
         	<scope>test</scope>
      	</dependency>
	</dependencies>

	<reporting>
		<plugins>
	       <plugin>
    	      <artifactId>maven-site-plugin</artifactId>
   	    	</plugin>
   	 		<plugin>
				<artifactId>maven-javadoc-plugin</artifactId>
			</plugin>
		</plugins>
	</reporting>

</project>

Back to the top