languagetool-gui-commons
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.languagetool</groupId> <artifactId>languagetool-gui-commons</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-gui-commons</artifactId> <packaging>jar</packaging> <name>LanguageTool common GUI classes</name> <description>GUI classes for both stand-alone and LibreOffice/OpenOffice extension use</description> <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>org.languagetool</groupId> <artifactId>languagetool-core</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> </resource> <resource> <targetPath>META-INF</targetPath> <directory>${basedir}</directory> <includes> <include>CHANGES.txt</include> <include>COPYING.txt</include> <include>README.txt</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> </build> </project>