Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | <groupId>org.apache.felix</groupId> |
| 7 | <artifactId>servicediagnostics</artifactId> |
| 8 | <version>1.0.0-SNAPSHOT</version> |
| 9 | <packaging>pom</packaging> |
| 10 | |
| 11 | <modules> |
| 12 | <module>core</module> |
| 13 | <module>sample</module> |
| 14 | </modules> |
| 15 | |
| 16 | |
| 17 | <repositories> |
| 18 | <repository> |
| 19 | <id>scala-tools.org</id> |
| 20 | <name>Scala-tools Maven2 Repository</name> |
| 21 | <url>http://scala-tools.org/repo-releases</url> |
| 22 | </repository> |
| 23 | </repositories> |
| 24 | |
| 25 | <pluginRepositories> |
| 26 | <pluginRepository> |
| 27 | <id>scala-tools.org</id> |
| 28 | <name>Scala-tools Maven2 Repository</name> |
| 29 | <url>http://scala-tools.org/repo-releases</url> |
| 30 | </pluginRepository> |
| 31 | </pluginRepositories> |
| 32 | |
| 33 | <dependencies> |
| 34 | <dependency> |
| 35 | <groupId>org.osgi</groupId> |
| 36 | <artifactId>org.osgi.core</artifactId> |
| 37 | <version>4.2.0</version> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>org.osgi</groupId> |
| 41 | <artifactId>org.osgi.compendium</artifactId> |
| 42 | <version>4.2.0</version> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.apache.felix</groupId> |
| 46 | <artifactId>org.apache.felix.scr</artifactId> |
| 47 | <version>1.6.0</version> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.apache.felix</groupId> |
| 51 | <artifactId>org.apache.felix.dependencymanager</artifactId> |
| 52 | <version>3.0.0</version> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>biz.aQute</groupId> |
| 56 | <artifactId>bndlib</artifactId> |
| 57 | <version>1.43.0</version> |
| 58 | </dependency> |
| 59 | </dependencies> |
| 60 | |
| 61 | <build> |
| 62 | <sourceDirectory>src/main/scala</sourceDirectory> |
| 63 | <testSourceDirectory>src/test/scala</testSourceDirectory> |
| 64 | |
| 65 | <plugins> |
| 66 | <plugin> |
| 67 | <groupId>org.scala-tools</groupId> |
| 68 | <artifactId>maven-scala-plugin</artifactId> |
| 69 | <executions> |
| 70 | <execution> |
| 71 | <goals> |
| 72 | <goal>compile</goal> |
| 73 | </goals> |
| 74 | </execution> |
| 75 | </executions> |
| 76 | <configuration> |
| 77 | <scalaVersion>2.8.1</scalaVersion> |
| 78 | </configuration> |
| 79 | </plugin> |
| 80 | |
| 81 | <plugin> |
| 82 | <groupId>org.apache.felix</groupId> |
| 83 | <artifactId>maven-bundle-plugin</artifactId> |
| 84 | <version>2.3.5</version> |
| 85 | <extensions>true</extensions> |
| 86 | </plugin> |
| 87 | </plugins> |
| 88 | </build> |
| 89 | |
| 90 | </project> |