languagetool-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.languagetool</groupId> <artifactId>languagetool-server</artifactId> <version>6.6</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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.languagetool</groupId> <artifactId>languagetool-parent</artifactId> <version>6.6</version> </parent> <artifactId>languagetool-server</artifactId> <packaging>jar</packaging> <name>LanguageTool embedded HTTP server</name> <url>https://www.languagetool.org</url> <licenses> <license> <name>GNU Lesser General Public License</name> <url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Daniel Naber</name> <roles> <role>Maintainer</role> </roles> </developer> <developer> <name>Marcin Miłkowski</name> <roles> <role>Maintainer</role> </roles> </developer> </developers> <dependencies> <dependency> <groupId>at.favre.lib</groupId> <artifactId>bcrypt</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> <dependency> <groupId>co.elastic.logging</groupId> <artifactId>logback-ecs-encoder</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </dependency> <dependency> <groupId>io.lettuce</groupId> <artifactId>lettuce-core</artifactId> </dependency> <dependency> <!-- monitoring via prometheusMonitoring --> <!-- client and guava bindings in languagetool-core --> <!-- Hotspot JVM metrics--> <groupId>io.prometheus</groupId> <artifactId>simpleclient_hotspot</artifactId> </dependency> <dependency> <!-- Exposition HTTPServer--> <groupId>io.prometheus</groupId> <artifactId>simpleclient_httpserver</artifactId> </dependency> <dependency> <groupId>org.languagetool</groupId> <artifactId>language-all</artifactId> </dependency> <dependency> <groupId>org.languagetool</groupId> <artifactId>languagetool-core</artifactId> </dependency> <dependency> <groupId>org.languagetool</groupId> <artifactId>languagetool-gui-commons</artifactId> </dependency> <dependency> <groupId>org.mariadb.jdbc</groupId> <artifactId>mariadb-java-client</artifactId> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <scope>test</scope> </dependency> <dependency> <!-- see http://stackoverflow.com/questions/174560/sharing-test-code-in-maven#174670 --> <groupId>org.languagetool</groupId> <artifactId>languagetool-core</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <classpathLayoutType>custom</classpathLayoutType> <!-- this artifact is used in languagetool-standalone, so adapt the path accordingly: --> <customClasspathLayout>libs/$${artifact.artifactId}$${dashClassifier?}.$${artifact.extension}</customClasspathLayout> </manifest> <manifestEntries> <!-- as we later unzip the language JARs (see languagetool-standalone's pom.xml), we need to add the top directory to the classpath: --> <Class-Path>./</Class-Path> <Main-Class>org.languagetool.server.HTTPServer</Main-Class> <ComponentVersion>${project.version}</ComponentVersion> <Implementation-Date>${maven.build.timestamp}</Implementation-Date> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>false</skip> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>fat-jar</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <goals> <goal>shade</goal> </goals> <phase>package</phase> <configuration> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <mainClass>org.languagetool.server.HTTPServer</mainClass> </transformer> <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"></transformer> <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> <resource>META-INF/org/languagetool/language-module.properties</resource> </transformer> <transformer implementation="org.apache.maven.plugins.shade.resource.ApacheLicenseResourceTransformer"></transformer> <transformer implementation="org.apache.maven.plugins.shade.resource.ApacheNoticeResourceTransformer"> <addHeader>false</addHeader> </transformer> </transformers> <artifactSet> <excludes> <exclude>junit:junit</exclude> <exclude>io.rest-assured:rest-assured</exclude> <exclude>org.mockito:mockito-core</exclude> <exclude>org.hsqldb:hsqldb</exclude> </excludes> </artifactSet> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>