matheclipse-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.matheclipse</groupId> <artifactId>matheclipse-api</artifactId> <version>3.0.0</version> </dependency>
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.matheclipse</groupId> <artifactId>matheclipse</artifactId> <version>3.0.0</version> </parent> <artifactId>matheclipse-api</artifactId> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>The Symja api module</description> <licenses> <license> <name>GNU General Public License, Version 3</name> <url>https://www.gnu.org/licenses/gpl-3.0.html</url> <distribution>repo</distribution> <comments>A free, copyleft license for software and other kinds of works</comments> </license> </licenses> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>matheclipse-nlp</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </dependency> <dependency> <groupId>io.undertow</groupId> <artifactId>undertow-core</artifactId> </dependency> <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-analyzers-common</artifactId> </dependency> <dependency> <groupId>org.commonmark</groupId> <artifactId>commonmark-ext-gfm-tables</artifactId> </dependency> <dependency> <groupId>org.owasp.encoder</groupId> <artifactId>encoder</artifactId> </dependency> <!-- logging dependencies --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>matheclipse-logging</artifactId> <version>${project.version}</version> </dependency> <!-- test dependencies --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>matheclipse-script</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution> <id>server</id> <goals> <goal>java</goal> </goals> <configuration> <mainClass>org.matheclipse.api.SymjaServer</mainClass> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>appassembler-maven-plugin</artifactId> <version>2.1.0</version> <configuration> <assembleDirectory>${project.build.directory}/binary</assembleDirectory> <repositoryLayout>flat</repositoryLayout> <repositoryName>lib</repositoryName> <useWildcardClassPath>true</useWildcardClassPath> <programs> <program> <mainClass>org.matheclipse.api.SymjaServer</mainClass> <id>symjaapi</id> </program> </programs> </configuration> <executions> <execution> <id>make-distribution</id> <phase>package</phase> <goals> <goal>assemble</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> </project>