|
| 1 | +<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"> |
| 2 | + <modelVersion>4.0.0</modelVersion> |
| 3 | + <groupId>explore</groupId> |
| 4 | + <artifactId>rabbitmq</artifactId> |
| 5 | + <version>0.1-SNAPSHOT</version> |
| 6 | + <properties> |
| 7 | + <scala.version>2.11.8</scala.version> |
| 8 | + </properties> |
| 9 | + |
| 10 | + <repositories> |
| 11 | + <repository> |
| 12 | + <id>scala-tools.org</id> |
| 13 | + <name>Scala-Tools Maven2 Repository</name> |
| 14 | + <url>http://scala-tools.org/repo-releases</url> |
| 15 | + </repository> |
| 16 | + </repositories> |
| 17 | + |
| 18 | + <pluginRepositories> |
| 19 | + <pluginRepository> |
| 20 | + <id>scala-tools.org</id> |
| 21 | + <name>Scala-Tools Maven2 Repository</name> |
| 22 | + <url>http://scala-tools.org/repo-releases</url> |
| 23 | + </pluginRepository> |
| 24 | + </pluginRepositories> |
| 25 | + |
| 26 | + <dependencies> |
| 27 | + <dependency> |
| 28 | + <groupId>org.scala-lang</groupId> |
| 29 | + <artifactId>scala-library</artifactId> |
| 30 | + <version>${scala.version}</version> |
| 31 | + </dependency> |
| 32 | + <dependency> |
| 33 | + <groupId>com.rabbitmq</groupId> |
| 34 | + <artifactId>amqp-client</artifactId> |
| 35 | + <version>4.0.0</version> |
| 36 | + </dependency> |
| 37 | + </dependencies> |
| 38 | + |
| 39 | + <build> |
| 40 | + <sourceDirectory>src/main/scala</sourceDirectory> |
| 41 | + <testSourceDirectory>src/test/scala</testSourceDirectory> |
| 42 | + <plugins> |
| 43 | + <plugin> |
| 44 | + <groupId>org.scala-tools</groupId> |
| 45 | + <artifactId>maven-scala-plugin</artifactId> |
| 46 | + <executions> |
| 47 | + <execution> |
| 48 | + <goals> |
| 49 | + <goal>compile</goal> |
| 50 | + <goal>testCompile</goal> |
| 51 | + </goals> |
| 52 | + </execution> |
| 53 | + </executions> |
| 54 | + <configuration> |
| 55 | + <scalaVersion>${scala.version}</scalaVersion> |
| 56 | + <args> |
| 57 | + <arg>-target:jvm-1.5</arg> |
| 58 | + </args> |
| 59 | + </configuration> |
| 60 | + </plugin> |
| 61 | + <plugin> |
| 62 | + <groupId>org.apache.maven.plugins</groupId> |
| 63 | + <artifactId>maven-eclipse-plugin</artifactId> |
| 64 | + <configuration> |
| 65 | + <downloadSources>true</downloadSources> |
| 66 | + <buildcommands> |
| 67 | + <buildcommand>ch.epfl.lamp.sdt.core.scalabuilder</buildcommand> |
| 68 | + </buildcommands> |
| 69 | + <additionalProjectnatures> |
| 70 | + <projectnature>ch.epfl.lamp.sdt.core.scalanature</projectnature> |
| 71 | + </additionalProjectnatures> |
| 72 | + <classpathContainers> |
| 73 | + <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer> |
| 74 | + <classpathContainer>ch.epfl.lamp.sdt.launching.SCALA_CONTAINER</classpathContainer> |
| 75 | + </classpathContainers> |
| 76 | + </configuration> |
| 77 | + </plugin> |
| 78 | + </plugins> |
| 79 | + </build> |
| 80 | + <reporting> |
| 81 | + <plugins> |
| 82 | + <plugin> |
| 83 | + <groupId>org.scala-tools</groupId> |
| 84 | + <artifactId>maven-scala-plugin</artifactId> |
| 85 | + <configuration> |
| 86 | + <scalaVersion>${scala.version}</scalaVersion> |
| 87 | + </configuration> |
| 88 | + </plugin> |
| 89 | + </plugins> |
| 90 | + </reporting> |
| 91 | +</project> |
0 commit comments