1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
<?xml version="1.0" encoding="UTF-8"?>
<project>
<pomVersion>3</pomVersion>
<artifactId>sisc</artifactId>
<name>SISC</name>
<groupId>sisc</groupId>
<currentVersion>1.10.0-alpha</currentVersion>
<organization />
<inceptionYear>2001</inceptionYear>
<package>sisc</package>
<description><![CDATA[<p>
SISC is an extensible Java based interpreter of the algorithmic language Scheme. SISC uses modern interpretation techniques, and handily <a href="http://sisc.sourceforge.net/comparison.php">outperforms</a> all existing JVM interpreters (often by more than an order of magnitude).
</p>
<p>
In addition, SISC is a complete implementation of the language. The
entire R5RS Scheme standard is <a href="http://sisc.sourceforge.net/r5rs_pitfall.php">supported, no
exceptions</a>. This includes a full number tower including complex number support, arbitrary precision integers and floating point numbers, as well as hygenic R5RS
macros, proper tail recursion, and first-class continuations (not just the escaping continuations as in many limited Scheme systems). SISC also attempts to implement the standard as correctly as possible, while still providing exceptional performance.
</p>
<p>
SISC also provides useful real-world extensions, such as networking, elegant exception handling, a scope-friendly module system, support for SLIB, numerous SRFIs, and a Java foreign-function interface.
</p>
<p>
Finally, native functionality can be added through the use of Modules, extensions that may add new types, values, and functions to the language. These extensions can be packaged into scopable modules at the Scheme level as well.
</p>
<p>
SISC is released simultaneously under the terms of the Mozilla Public License (MPL) v1.1 and the GNU General Public License (GPL) v2. Users/Developers may choose which ever license suits their goals.
</p>
]]>
</description>
<shortDescription>Second Interpreter of Scheme Code</shortDescription>
<url>http://sisc.sourceforge.net/</url>
<repository>
<connection>scm:cvs:pserver:anonymous@cvs.sourceforge.net:/cvsroot/sisc:sisc</connection>
<developerConnection>scm:cvs:ext:developername@cvs.sourceforge.net:/cvsroot/sisc:sisc</developerConnection>
<url>http://cvs.sourceforge.net/viewcvs.py/sisc/</url>
</repository>
<mailingLists>
<mailingList>
<name>${pom.name} Dev List</name>
<subscribe> sisc-devel-subscribe@lists.sourceforge.net</subscribe>
<unsubscribe> sisc-devel-unsubscribe@lists.sourceforge.net</unsubscribe>
<archive>http://sourceforge.net/mailarchive/forum.php?forum_id=5454</archive>
</mailingList>
<mailingList>
<name>${pom.name} User List</name>
<subscribe> sisc-users-subscribe@lists.sourceforge.net</subscribe>
<unsubscribe> sisc-users-unsubscribe@lists.sourceforge.net</unsubscribe>
<archive>http://sourceforge.net/mailarchive/forum.php?forum_id=7422</archive>
</mailingList>
</mailingLists>
<developers>
<developer>
<name>Scott G. Miller</name>
<id>0</id>
<email>scgmille@freenetproject.org</email>
<timezone>-6</timezone>
</developer>
<developer>
<name>Matthias Radestock</name>
<id>1</id>
<email>matthias@sorted.org</email>
<timezone>0</timezone>
</developer>
<developer>
<name>Turadg Aleahmad</name>
<id>2</id>
<email>turadg@berkeley.edu</email>
<url>http://tels.berkeley.edu/~turadg/</url>
<timezone>-8</timezone>
</developer>
</developers>
<licenses>
<license>
<name>Mozilla Public License (MPL) v1.1</name>
</license>
<license>
<name>General Public License (GPL) v2</name>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<type>jar</type>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/sisc</sourceDirectory>
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
<unitTest>
<includes>
<include>**/*Test.java</include>
</includes>
</unitTest>
</build>
<reports>
<report>maven-checkstyle-plugin</report>
<report>maven-license-plugin</report>
<report>maven-junit-report-plugin</report>
</reports>
</project>
|