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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd"
>
<modelVersion>4.0.0</modelVersion>
<name>Java Algebra System (JAS)</name>
<groupId>de.uni-mannheim.rz.krum</groupId>
<artifactId>jas</artifactId>
<version>@SVNREV@</version>
<packaging>jar</packaging>
<description> The Java Algebra System (JAS) is an object oriented,
type safe and multi-threaded approach to computer algebra. JAS
provides a well designed software library using generic types for
algebraic computations implemented in the Java programming language
using the JVM runtime infrastructure. The library can be used as any
other Java software package or it can be used interactively or
interpreted through a jython (Java Python) or jruby (Java Ruby)
front end, there is also an Android App based on Ruboto (jruby for
Android). The focus of JAS is at the moment on commutative, solvable
and non-commutative polynomials, power series, Groebner bases,
factorization, real and complex roots and applications. By the use
of Java as implementation language JAS is 64-bit and multi-core CPU
ready and can make use of mutiple CPUs where available. JAS can run
on a wide variety of devices ranging from Android to compute
clusters (using MPJ a Java Message Passing Interface (MPI) or
OpenMPI).
</description>
<url>http://krum.rz.uni-mannheim.de/jas</url>
<!--url>https://github.com/kredel/java-algebra-system</url-->
<licenses>
<license>
<name>GNU GENERAL PUBLIC LICENSE Version 2, June 1991</name>
<url>http://www.gnu.org/licenses/old-licenses/gpl-2.0</url>
</license>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999</name>
<url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1</url>
</license>
</licenses>
<developers>
<developer>
<name>Heinz Kredel</name>
<email>kredel@rz.uni-mannheim.de</email>
<organization>University Mannheim</organization>
<organizationUrl>http://www.uni-mannheim.de/rum/</organizationUrl>
</developer>
</developers>
<contributors>
<contributor>
<name>Axel Kramer</name>
</contributor>
<contributor>
<name>Raphael Jolly</name>
</contributor>
<contributor>
<name>Jan Suess</name>
</contributor>
<contributor>
<name>Youssef Elbarbary</name>
</contributor>
<contributor>
<name>Maximilian Nohr</name>
</contributor>
<contributor>
<name>Hannes Wellmann</name>
</contributor>
<contributor>
<name>Akitoshi Yoshida</name>
</contributor>
</contributors>
<scm>
<connection>scm:git:https://github.com/kredel/java-algebra-system.git</connection>
<developerConnection>scm:git:ssh://github.com/kredel/java-algebra-system.git</developerConnection>
<url>https://github.com/kredel/java-algebra-system/tree/master</url>
</scm>
<dependencies>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>[2.17.1,)</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>[2.17.1,)</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>trc</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.11</source>
<target>1.11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<configuration>
</configuration>
</plugin>
</plugins>
</reporting>
<repositories>
<repository>
<id>maven-central</id>
<url>https://oss.sonatype.org/content/groups/public</url>
</repository>
<repository>
<id>jas-repository</id>
<url>http://krum.rz.uni-mannheim.de/maven-repository</url>
</repository>
</repositories>
</project>
|