scalaconcurrency.
Wrapper classes for jdk5, and 7 concurrency package.
Here is the list of declaration for scalaconcurrency. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.googlecode.scalaconcurrency</groupId> <artifactId>scalaconcurrency</artifactId> <version>0.7.0</version> </dependency>
If you think this Maven repository POM file listing for scalaconcurrency is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Apache License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.
The scalaconcurrency-0.7.0 has 4 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Scala | scalatest_2.9.1 1.6.1 ScalaTest is a free, open-source testing toolkit for Scala and Java programmers. | 37 |
JUnit | junit 4.10 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 1957 |
The following plugins are used in the scalaconcurrency-0.7.0.jar
The following packages are defined in the scalaconcurrency-0.7.0.jar
com.googlecode.concurrent
Here is the content of the POM file.
<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.googlecode.scalaconcurrency</groupId> <artifactId>scalaconcurrency</artifactId> <version>0.7.0</version> <name>scalaconcurrency</name> <description> Wrapper classes for jdk5, and 7 concurrency package </description> <url>https://code.google.com/p/scalaconcurrency/</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <scm> <connection>scm:svn:https://scalaconcurrency.googlecode.com/svn/trunk/</connection> <developerConnection>scm:svn:https://scalaconcurrency.googlecode.com/svn/trunk/</developerConnection> <url>https://code.google.com/p/scalaconcurrency/source/browse/</url> </scm> <issueManagement> <system>Google Code</system> <url>https://code.google.com/p/scalaconcurrency/issues/list</url> </issueManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <scala.version>2.9.1</scala.version> <scala.lib.version>2.9.0-1</scala.lib.version> </properties> <dependencies> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> <version>${scala.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.scala-tools.time</groupId> <artifactId>time_2.9.1</artifactId> <version>0.5</version> </dependency> <dependency> <groupId>org.scalatest</groupId> <artifactId>scalatest_2.9.1</artifactId> <version>1.6.1</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> </dependencies> <build> <sourceDirectory>src/main/scala</sourceDirectory> <testSourceDirectory>src/test/scala</testSourceDirectory> <plugins> <!-- Ensures we are compiling at 1.7 level --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.scala-tools</groupId> <artifactId>maven-scala-plugin</artifactId> <version>2.15.2</version> <configuration> <scalaVersion>${scala.version}</scalaVersion> <args> <arg>-target:jvm-1.5</arg> </args> <charset>${project.build.sourceEncoding}</charset> <jvmArgs> <jvmArg>-Xmx1024m</jvmArg> </jvmArgs> </configuration> <executions> <execution> <goals> <goal>compile</goal> <goal>testCompile</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.10</version> <configuration> <includes> <include>**/*Spec.class</include> <include>**/*Suite.class</include> </includes> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.2.1</version> </plugin> <plugin> <artifactId>maven-repository-plugin</artifactId> <version>2.3.1</version> </plugin> </plugins> </build> <repositories> <repository> <id>scala-tools.releases</id> <name>Scala-Tools Dependencies Repository for Releases</name> <url>http://scala-tools.org/repo-releases</url> </repository> <repository> <id>scala-tools.org.snapshots</id> <name>Scala Tools Maven2 Repository</name> <url>http://scala-tools.org/repo-snapshots</url> <snapshots /> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>scala-tools.releases</id> <name>Scala-Tools Plugins Repository for Releases</name> <url>http://scala-tools.org/repo-releases</url> </pluginRepository> </pluginRepositories> <profiles> <profile> <id>release</id> <distributionManagement> <repository> <id>scala-tools.org</id> <url>http://nexus.scala-tools.org/content/repositories/releases</url> </repository> </distributionManagement> </profile> </profiles> </project>