Doolin
0.9.2

Download binaries and sources

Doolin can be downloaded in the form of a ZIP archive that contains binaries and/or sources.

Maven

Doolin is also available using a Maven repository. For example, just include the following elements in your pom.xml:

	...
	<repositories>
		<repository>
			<releases>
				<enabled>true</enabled>
				<checksumPolicy>warn</checksumPolicy>
			</releases>
			<snapshots>
				<enabled>true</enabled>
				<updatePolicy>never</updatePolicy>
				<checksumPolicy>warn</checksumPolicy>
			</snapshots>
			<id>doolin-repository</id>
			<name>Doolin repository</name>
			<url>http://www.doolin-guif.net/repository</url>
			<layout>default</layout>
		</repository>
	</repositories>
	...
	<dependencies>
		<dependency>
			<groupId>net.sf.doolin</groupId>
			<artifactId>Doolin-GUI</artifactId>
			<version>0.9.2</version>
		</dependency>
	</dependencies>