Advertisement
Guest User

Untitled

a guest
Apr 6th, 2010
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.60 KB | None | 0 0
  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>org.wileynet</groupId>
  4. <artifactId>slinad</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <inceptionYear>2008</inceptionYear>
  7. <properties>
  8. <scala.version>2.8.0.Beta1</scala.version>
  9. </properties>
  10.  
  11. <repositories>
  12. <repository>
  13. <id>scala-tools.org</id>
  14. <name>Scala-Tools Maven2 Repository</name>
  15. <url>http://scala-tools.org/repo-releases</url>
  16. </repository>
  17. </repositories>
  18.  
  19. <pluginRepositories>
  20. <pluginRepository>
  21. <id>scala-tools.org</id>
  22. <name>Scala-Tools Maven2 Repository</name>
  23. <url>http://scala-tools.org/repo-releases</url>
  24. </pluginRepository>
  25. </pluginRepositories>
  26.  
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.scala-lang</groupId>
  30. <artifactId>scala-library</artifactId>
  31. <version>${scala.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>junit</groupId>
  35. <artifactId>junit</artifactId>
  36. <version>4.4</version>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.scala-tools.testing</groupId>
  41. <artifactId>specs_2.8.0.Beta1</artifactId>
  42. <version>1.6.3</version>
  43. <type>jar</type>
  44. <scope>compile</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.directory.server</groupId>
  48. <artifactId>apacheds-server-integ</artifactId>
  49. <version>1.5.6</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.mina</groupId>
  53. <artifactId>mina-core</artifactId>
  54. <version>2.0.0-RC1</version>
  55. <type>jar</type>
  56. <scope>compile</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>log4j</groupId>
  60. <artifactId>log4j</artifactId>
  61. <version>1.2.15</version>
  62. <type>jar</type>
  63. <scope>compile</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>net.lag</groupId>
  67. <artifactId>naggati</artifactId>
  68. <version>0.7.2_2.8.0.Beta1</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>net.lag</groupId>
  72. <artifactId>configgy_2.8.0.Beta1</artifactId>
  73. <version>1.5</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.slf4j</groupId>
  77. <artifactId>slf4j-log4j12</artifactId>
  78. <version>1.5.10</version>
  79. <type>jar</type>
  80. <scope>compile</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.apache.commons</groupId>
  84. <artifactId>commons-io</artifactId>
  85. <version>1.3.2</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.apache.directory.client.ldap</groupId>
  89. <artifactId>ldap-client-api</artifactId>
  90. <version>0.1</version>
  91. </dependency>
  92. </dependencies>
  93.  
  94. <build>
  95. <sourceDirectory>src/main/scala</sourceDirectory>
  96. <testSourceDirectory>src/test/scala</testSourceDirectory>
  97. <plugins>
  98. <plugin>
  99. <groupId>org.scala-tools</groupId>
  100. <artifactId>maven-scala-plugin</artifactId>
  101. <executions>
  102. <execution>
  103. <goals>
  104. <goal>compile</goal>
  105. <goal>testCompile</goal>
  106. </goals>
  107. </execution>
  108. </executions>
  109. <configuration>
  110. <scalaVersion>${scala.version}</scalaVersion>
  111. <args>
  112. <arg>-target:jvm-1.5</arg>
  113. </args>
  114. </configuration>
  115. </plugin>
  116. <plugin>
  117. <groupId>org.apache.maven.plugins</groupId>
  118. <artifactId>maven-eclipse-plugin</artifactId>
  119. <configuration>
  120. <downloadSources>true</downloadSources>
  121. <buildcommands>
  122. <buildcommand>ch.epfl.lamp.sdt.core.scalabuilder</buildcommand>
  123. </buildcommands>
  124. <additionalProjectnatures>
  125. <projectnature>ch.epfl.lamp.sdt.core.scalanature</projectnature>
  126. </additionalProjectnatures>
  127. <classpathContainers>
  128. <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer>
  129. <classpathContainer>ch.epfl.lamp.sdt.launching.SCALA_CONTAINER</classpathContainer>
  130. </classpathContainers>
  131. </configuration>
  132. </plugin>
  133. </plugins>
  134. </build>
  135. <reporting>
  136. <plugins>
  137. <plugin>
  138. <groupId>org.scala-tools</groupId>
  139. <artifactId>maven-scala-plugin</artifactId>
  140. <configuration>
  141. <scalaVersion>${scala.version}</scalaVersion>
  142. </configuration>
  143. </plugin>
  144. </plugins>
  145. </reporting>
  146. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement