jboner / scala-otp
- Source
- Commits
- Network (4)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Tree:
8eeddfe
commit 8eeddfea06d01de0d04157056db165733adcd796
tree ff0a2735098429a9a9d5aafe7ceeb3525f940db3
parent c4bfc676a398475c1cf2dc1c04ec45d2127b6878
tree ff0a2735098429a9a9d5aafe7ceeb3525f940db3
parent c4bfc676a398475c1cf2dc1c04ec45d2127b6878
scala-otp / pom.xml
| 15c70068 » | 2008-06-23 | 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 | |||||
| 6 | <name>Scala OTP</name> | ||||
| 82420c07 » | jboner | 2008-08-25 | 7 | <description> | |
| 8 | The Scala OTP project aims implementing an enterprise platform and runtime for Scala Actors similar to Erlangs OTP platform, for implementation of highly fault-tolerant, distributed actor-based enterprise systems. | ||||
| 9 | </description> | ||||
| 15c70068 » | 2008-06-23 | 10 | |||
| 82420c07 » | jboner | 2008-08-25 | 11 | <groupId>org.scala-libs</groupId> | |
| 12 | <artifactId>scala-otp</artifactId> | ||||
| 13 | |||||
| 007a3226 » | richdougherty | 2008-06-23 | 14 | <properties> | |
| 5e554158 » | richdougherty | 2009-01-23 | 15 | <scala.version>2.7.3</scala.version> | |
| 82420c07 » | jboner | 2008-08-25 | 16 | <library.version>0.1-SNAPSHOT</library.version> | |
| 007a3226 » | richdougherty | 2008-06-23 | 17 | </properties> | |
| 18 | |||||
| 752a35db » | jboner | 2008-08-26 | 19 | <version>0.1-SNAPSHOT</version> | |
| 82420c07 » | jboner | 2008-08-25 | 20 | <inceptionYear>2008</inceptionYear> | |
| 21 | <packaging>pom</packaging> | ||||
| 15c70068 » | 2008-06-23 | 22 | |||
| 23 | <modules> | ||||
| 40343c35 » | jboner | 2008-10-09 | 24 | <module>util-java</module> | |
| 9d34f45e » | jboner | 2008-07-15 | 25 | <module>binary</module> | |
| 66c39fab » | richdougherty | 2008-07-19 | 26 | <module>controlflow</module> | |
| 27 | <module>io</module> | ||||
| 469423b5 » | jboner | 2008-08-21 | 28 | <module>behavior</module> | |
| 40343c35 » | jboner | 2008-10-09 | 29 | <module>component</module> | |
| 469423b5 » | jboner | 2008-08-21 | 30 | <module>db</module> | |
| 15c70068 » | 2008-06-23 | 31 | </modules> | ||
| 32 | |||||
| 007a3226 » | richdougherty | 2008-06-23 | 33 | <repositories> | |
| 34 | <repository> | ||||
| 35 | <id>scala-tools.org</id> | ||||
| 36 | <name>Scala-Tools Maven2 Repository</name> | ||||
| 37 | <url>http://scala-tools.org/repo-releases</url> | ||||
| 38 | </repository> | ||||
| 723942b7 » | jboner | 2008-10-09 | 39 | <repository> | |
| 40 | <id>configgy</id> | ||||
| 41 | <name>Configgy's' Repository</name> | ||||
| 42 | <url>http://www.lag.net/repo</url> | ||||
| 43 | </repository> | ||||
| 007a3226 » | richdougherty | 2008-06-23 | 44 | </repositories> | |
| 45 | |||||
| 46 | <pluginRepositories> | ||||
| 47 | <pluginRepository> | ||||
| 48 | <id>scala-tools.org</id> | ||||
| 49 | <name>Scala-Tools Maven2 Repository</name> | ||||
| 50 | <url>http://scala-tools.org/repo-releases</url> | ||||
| 51 | </pluginRepository> | ||||
| 52 | </pluginRepositories> | ||||
| 53 | |||||
| 54 | <dependencyManagement> | ||||
| 55 | <dependencies> | ||||
| 56 | <dependency> | ||||
| 57 | <groupId>org.scala-lang</groupId> | ||||
| 58 | <artifactId>scala-library</artifactId> | ||||
| 59 | <version>${scala.version}</version> | ||||
| 60 | </dependency> | ||||
| 66c39fab » | richdougherty | 2008-07-19 | 61 | ||
| 62 | <dependency> | ||||
| 82420c07 » | jboner | 2008-08-25 | 63 | <groupId>org.scala-libs</groupId> | |
| c4bfc676 » | jboner | 2009-02-16 | 64 | <artifactId>scala-otp-binary</artifactId> | |
| 82420c07 » | jboner | 2008-08-25 | 65 | <version>${library.version}</version> | |
| 66c39fab » | richdougherty | 2008-07-19 | 66 | </dependency> | |
| 67 | <dependency> | ||||
| 82420c07 » | jboner | 2008-08-25 | 68 | <groupId>org.scala-libs</groupId> | |
| c4bfc676 » | jboner | 2009-02-16 | 69 | <artifactId>scala-otp-controlflow</artifactId> | |
| 82420c07 » | jboner | 2008-08-25 | 70 | <version>${library.version}</version> | |
| 66c39fab » | richdougherty | 2008-07-19 | 71 | </dependency> | |
| 72 | <dependency> | ||||
| 82420c07 » | jboner | 2008-08-25 | 73 | <groupId>org.scala-libs</groupId> | |
| c4bfc676 » | jboner | 2009-02-16 | 74 | <artifactId>scala-otp-io</artifactId> | |
| 82420c07 » | jboner | 2008-08-25 | 75 | <version>${library.version}</version> | |
| 76 | </dependency> | ||||
| 77 | <dependency> | ||||
| 78 | <groupId>org.scala-libs</groupId> | ||||
| c4bfc676 » | jboner | 2009-02-16 | 79 | <artifactId>scala-otp-behavior</artifactId> | |
| 82420c07 » | jboner | 2008-08-25 | 80 | <version>${library.version}</version> | |
| 81 | </dependency> | ||||
| 82 | <dependency> | ||||
| 83 | <groupId>org.scala-libs</groupId> | ||||
| c4bfc676 » | jboner | 2009-02-16 | 84 | <artifactId>scala-otp-db</artifactId> | |
| 82420c07 » | jboner | 2008-08-25 | 85 | <version>${library.version}</version> | |
| 66c39fab » | richdougherty | 2008-07-19 | 86 | </dependency> | |
| 007a3226 » | richdougherty | 2008-06-23 | 87 | <dependency> | |
| 40343c35 » | jboner | 2008-10-09 | 88 | <groupId>org.scala-libs</groupId> | |
| c4bfc676 » | jboner | 2009-02-16 | 89 | <artifactId>scala-otp-util-java</artifactId> | |
| 40343c35 » | jboner | 2008-10-09 | 90 | <version>${library.version}</version> | |
| 007a3226 » | richdougherty | 2008-06-23 | 91 | </dependency> | |
| 92 | <dependency> | ||||
| 723942b7 » | jboner | 2008-10-09 | 93 | <groupId>net.lag</groupId> | |
| 94 | <artifactId>configgy</artifactId> | ||||
| 8eeddfea » | jboner | 2009-02-17 | 95 | <version>1.2</version> | |
| 007a3226 » | richdougherty | 2008-06-23 | 96 | </dependency> | |
| 97 | <dependency> | ||||
| 5e554158 » | richdougherty | 2009-01-23 | 98 | <groupId>commons-lang</groupId> | |
| 99 | <artifactId>commons-lang</artifactId> | ||||
| 100 | <version>2.4</version> | ||||
| 101 | <scope>test</scope> | ||||
| 102 | </dependency> | ||||
| 103 | <dependency> | ||||
| 007a3226 » | richdougherty | 2008-06-23 | 104 | <groupId>org.scalatest</groupId> | |
| 105 | <artifactId>scalatest</artifactId> | ||||
| d1258bcf » | richdougherty | 2009-01-18 | 106 | <version>0.9.4</version> | |
| 82420c07 » | jboner | 2008-08-25 | 107 | <scope>test</scope> | |
| 007a3226 » | richdougherty | 2008-06-23 | 108 | </dependency> | |
| 109 | <dependency> | ||||
| 9d34f45e » | jboner | 2008-07-15 | 110 | <groupId>org.scalacheck</groupId> | |
| 111 | <artifactId>scalacheck</artifactId> | ||||
| d1258bcf » | richdougherty | 2009-01-18 | 112 | <version>1.5</version> | |
| 9d34f45e » | jboner | 2008-07-15 | 113 | <scope>test</scope> | |
| 114 | </dependency> | ||||
| 115 | <dependency> | ||||
| 007a3226 » | richdougherty | 2008-06-23 | 116 | <groupId>org.testng</groupId> | |
| 117 | <artifactId>testng</artifactId> | ||||
| 118 | <version>5.7</version> | ||||
| 82420c07 » | jboner | 2008-08-25 | 119 | <scope>test</scope> | |
| 007a3226 » | richdougherty | 2008-06-23 | 120 | <classifier>jdk15</classifier> | |
| 121 | </dependency> | ||||
| 122 | </dependencies> | ||||
| 123 | </dependencyManagement> | ||||
| 124 | |||||
| 125 | <build> | ||||
| 126 | <sourceDirectory>src/main/scala</sourceDirectory> | ||||
| 127 | <testSourceDirectory>src/test/scala</testSourceDirectory> | ||||
| 128 | <plugins> | ||||
| 129 | <plugin> | ||||
| 130 | <groupId>org.scala-tools</groupId> | ||||
| 131 | <artifactId>maven-scala-plugin</artifactId> | ||||
| c624be49 » | jboner | 2008-08-25 | 132 | <executions> | |
| 007a3226 » | richdougherty | 2008-06-23 | 133 | <execution> | |
| 134 | <goals> | ||||
| 135 | <goal>compile</goal> | ||||
| 136 | <goal>testCompile</goal> | ||||
| 137 | </goals> | ||||
| 138 | </execution> | ||||
| 139 | </executions> | ||||
| 140 | <configuration> | ||||
| 141 | <source>1.5</source> | ||||
| 142 | <target>1.5</target> | ||||
| 143 | <encoding>UTF-8</encoding> | ||||
| 144 | <scalaVersion>${scala.version}</scalaVersion> | ||||
| fbb4d073 » | richdougherty | 2009-02-05 | 145 | <args> | |
| 146 | <!--arg>-deprecation</arg--> | ||||
| 147 | <arg>-Ywarn-dead-code</arg> | ||||
| 148 | </args> | ||||
| 007a3226 » | richdougherty | 2008-06-23 | 149 | </configuration> | |
| 150 | </plugin> | ||||
| 151 | <plugin> | ||||
| 152 | <groupId>org.apache.maven.plugins</groupId> | ||||
| 153 | <artifactId>maven-surefire-plugin</artifactId> | ||||
| 154 | <configuration> | ||||
| 155 | <source>1.5</source> | ||||
| 156 | <target>1.5</target> | ||||
| 157 | <encoding>UTF-8</encoding> | ||||
| 158 | <suiteXmlFiles> | ||||
| 159 | <suiteXmlFile>testng.xml</suiteXmlFile> | ||||
| 160 | </suiteXmlFiles> | ||||
| 161 | </configuration> | ||||
| 162 | </plugin> | ||||
| 163 | <plugin> | ||||
| 164 | <groupId>org.apache.maven.plugins</groupId> | ||||
| 165 | <artifactId>maven-eclipse-plugin</artifactId> | ||||
| 166 | <configuration> | ||||
| 3e090816 » | jboner | 2008-08-25 | 167 | <downloadSources>false</downloadSources> | |
| 007a3226 » | richdougherty | 2008-06-23 | 168 | <buildcommands> | |
| 169 | <buildcommand>ch.epfl.lamp.sdt.core.scalabuilder</buildcommand> | ||||
| 170 | </buildcommands> | ||||
| 171 | <additionalProjectnatures> | ||||
| 172 | <projectnature>ch.epfl.lamp.sdt.core.scalanature</projectnature> | ||||
| 173 | </additionalProjectnatures> | ||||
| 174 | <classpathContainers> | ||||
| 175 | <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer> | ||||
| 176 | <classpathContainer>ch.epfl.lamp.sdt.launching.SCALA_CONTAINER</classpathContainer> | ||||
| 177 | </classpathContainers> | ||||
| 178 | </configuration> | ||||
| 179 | </plugin> | ||||
| 180 | </plugins> | ||||
| 181 | <resources> | ||||
| 182 | <resource> | ||||
| 183 | <filtering>false</filtering> | ||||
| 184 | <directory>src/main/resources</directory> | ||||
| 185 | </resource> | ||||
| 186 | <resource> | ||||
| 187 | <filtering>false</filtering> | ||||
| 188 | <directory>src/main/scala</directory> | ||||
| 189 | <includes> | ||||
| 190 | <include>**</include> | ||||
| 191 | </includes> | ||||
| 192 | <excludes> | ||||
| 193 | <exclude>**/*.scala</exclude> | ||||
| 194 | </excludes> | ||||
| 195 | </resource> | ||||
| 196 | </resources> | ||||
| 197 | <testResources> | ||||
| 198 | <testResource> | ||||
| 199 | <filtering>false</filtering> | ||||
| 200 | <directory>src/test/resources</directory> | ||||
| 201 | </testResource> | ||||
| 202 | <testResource> | ||||
| 203 | <filtering>false</filtering> | ||||
| 204 | <directory>src/test/scala</directory> | ||||
| 205 | <includes> | ||||
| 206 | <include>**</include> | ||||
| 207 | </includes> | ||||
| 208 | <excludes> | ||||
| 209 | <exclude>**/*.scala</exclude> | ||||
| 210 | </excludes> | ||||
| 211 | </testResource> | ||||
| 212 | </testResources> | ||||
| 213 | </build> | ||||
| 214 | <reporting> | ||||
| 215 | <plugins> | ||||
| 216 | <plugin> | ||||
| 217 | <groupId>org.scala-tools</groupId> | ||||
| 218 | <artifactId>maven-scala-plugin</artifactId> | ||||
| c624be49 » | jboner | 2008-08-25 | 219 | <configuration> | |
| 220 | <vscaladocVersion>1.1</vscaladocVersion> | ||||
| 221 | <scalaVersion>${scala.version}</scalaVersion> | ||||
| 222 | </configuration> | ||||
| 007a3226 » | richdougherty | 2008-06-23 | 223 | </plugin> | |
| 224 | </plugins> | ||||
| 225 | </reporting> | ||||
| 15c70068 » | 2008-06-23 | 226 | </project> | ||

