Mon, 23 May 2011 15:59:02 +0000
Here’s a quick reference on the basics of installing Subversion on Debian using an Apache subdomain both for my own reference and others too. There were a couple of bits I had to search around for so I thought an all-in-one guide might be useful for others. Install subversion. apt-get install subversion Install Apache and [...]
Read the full article →
Sun, 22 May 2011 10:14:55 +0000
If you wish to use jsr166y (fork join) and extra166y (parallel arrays), normally available as jars at the concurrency interest site, through maven there is a mirror repository that has been set up that can be used as follows. Milestone repository <repositories> <repository> <snapshots> <enabled>false</enabled> </snapshots> <id>codehaus-milestone</id> <name>codehaus-milestone</name> <url>http://repository.codehaus.org</url> </repository> </repositories> Dependencies <dependency> <groupId>org.codehaus.jsr166-mirror</groupId> <artifactId>jsr166y</artifactId> [...]
Read the full article →