sirius-nlp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.scireum</groupId> <artifactId>sirius-nlp</artifactId> <version>5.6.8.1</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> <groupId>com.scireum</groupId> <artifactId>sirius-nlp</artifactId> <version>5.6.8.1</version> <packaging>pom</packaging> <name>SIRIUS NLP</name> <description>analyzers, tokenizers, tokenfilters, ... </description> <url>http://www.sirius-lib.net</url> <licenses> <license> <name>MIT License</name> <url>http://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <name>scireum</name> <email>info@scireum.de</email> <organization>scireum GmbH</organization> <organizationUrl>http://www.scireum.de</organizationUrl> </developer> </developers> <modules> <module>sirius-nlp-main</module> <module>sirius-nlp-plugin</module> </modules> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <timestamp>${maven.build.timestamp}</timestamp> <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format> <!-- You can lower the checkstyle checks by using checkstyle-basic.xml instead --> <checkstyle.file>checkstyle-strict.xml</checkstyle.file> <!-- Determines the IPL version used by applications --> <sirius.ipl.version>1.3</sirius.ipl.version> <!-- Contains a copy of the effective version of the parent pom as it is referenced to load certain resources --> <!-- Do not use ${project.version} here, as it is overwritten by the child pom! --> <sirius.parent.version>3.8.2</sirius.parent.version> <project.owner>scireum</project.owner> <project.repository>${project.artifactId}</project.repository> </properties> <repositories> <repository> <id>snapshots-repo</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>always</updatePolicy> </snapshots> </repository> <repository> <id>releases-repo</id> <url>https://oss.sonatype.org/content/repositories/releases</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>snapshots-plugin-repo</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>always</updatePolicy> </snapshots> </pluginRepository> <pluginRepository> <id>releases-plugin-repo</id> <url>https://oss.sonatype.org/content/repositories/releases</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> </pluginRepositories> <!-- Determines the default upload repository for snapshots --> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <!-- Builds a SCM url for github based on the owner and artifact id --> <scm> <connection>scm:git:git@github.com:${project.owner}/${project.repository}.git</connection> <developerConnection>scm:git:git@github.com:${project.owner}/${project.repository}.git</developerConnection> <url>git@github.com:${project.owner}/${project.repository}.git</url> </scm> <dependencies> <dependency> <groupId>com.scireum</groupId> <artifactId>sirius-kernel</artifactId> <version>9.0.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.scireum</groupId> <artifactId>sirius-kernel</artifactId> <version>9.0.0</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>com.scireum</groupId> <artifactId>sirius-search</artifactId> <version>11.6</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch</artifactId> <version>5.6.8</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.codelibs</groupId> <artifactId>elasticsearch-cluster-runner</artifactId> <version>5.6.8.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-test-framework</artifactId> <version>6.6.1</version> <scope>test</scope> </dependency> <!-- Include JUnit for testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <!-- Include JUNIT-Toolbox for testing --> <dependency> <groupId>com.googlecode.junit-toolbox</groupId> <artifactId>junit-toolbox</artifactId> <version>2.2</version> <scope>test</scope> </dependency> <!-- Include Spock for testing --> <dependency> <groupId>org.spockframework</groupId> <artifactId>spock-core</artifactId> <version>0.7-groovy-2.0</version> <scope>test</scope> </dependency> <!-- Include cglib and objenesis for advanced mocking... --> <dependency> <groupId>cglib</groupId> <artifactId>cglib</artifactId> <version>3.2.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.objenesis</groupId> <artifactId>objenesis</artifactId> <version>2.5.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.7</version> <configuration> <skip>true</skip> </configuration> </plugin> <!-- We use git tags to ensure that a release isn't performed twice --> <plugin> <groupId>com.scireum</groupId> <artifactId>github-tag-plugin</artifactId> <version>1.2</version> <inherited>false</inherited> <executions> <execution> <id>tag</id> <goals> <goal>tagBuild</goal> <goal>verifyReleaseTag</goal> <goal>addReleaseTag</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.9</version> <inherited>false</inherited> <executions> <execution> <id>validate</id> <phase>validate</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>com.scireum</groupId> <artifactId>sirius-parent</artifactId> <version>${sirius.parent.version}</version> <type>jar</type> <overWrite>true</overWrite> <outputDirectory>${project.basedir}</outputDirectory> <includes>.idea/**</includes> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>module-build</id> <activation> <file> <exists>src</exists> </file> </activation> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>**/*.conf</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> <excludes> <exclude>**/*.conf</exclude> </excludes> </resource> </resources> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> <testResource> <directory>docs</directory> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.15</version> <executions> <execution> <id>validate</id> <phase>validate</phase> <configuration> <configLocation>${checkstyle.file}</configLocation> <encoding>UTF-8</encoding> <consoleOutput>true</consoleOutput> <failsOnError>false</failsOnError> </configuration> <goals> <goal>checkstyle</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>com.scireum</groupId> <artifactId>sirius-parent</artifactId> <version>${sirius.parent.version}</version> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <compilerVersion>${maven.compiler.source}</compilerVersion> <fork>true</fork> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <debug>true</debug> <optimize>true</optimize> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> <compilerArgument>-Xlint:-options,unchecked,deprecation</compilerArgument> <excludes> <exclude>**/package-info.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.3</version> <executions> <execution> <id>display-updates</id> <phase>validate</phase> <goals> <goal>display-dependency-updates</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>deploy-nexus</id> <activation> <file> <missing>src/main/resources/application.conf</missing> </file> </activation> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>module-test</id> <activation> <file> <exists>src/test/java</exists> </file> </activation> <build> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> <testResource> <directory>docs</directory> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <excludes> <exclude>**/*Test.*</exclude> <exclude>**/*Spec.*</exclude> <exclude>**/*Spec$*</exclude> <exclude>**/*Test$*</exclude> </excludes> </configuration> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.12.1</version> <configuration> <includes> <include>TestSuite.java</include> </includes> </configuration> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>1.7</version> <executions> <execution> <id>groovyc</id> <phase>test-compile</phase> <configuration> <target> <taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc"> <classpath refid="maven.test.classpath"/> </taskdef> <mkdir dir="${project.build.testOutputDirectory}"/> <groovyc srcdir="${basedir}/src/test/java" destdir="${project.build.testOutputDirectory}" encoding="${project.build.sourceEncoding}"> <classpath refid="maven.test.classpath"/> </groovyc> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <compilerVersion>${maven.compiler.source}</compilerVersion> <fork>true</fork> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <debug>true</debug> <optimize>true</optimize> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> <compilerArgument>-Xlint:-options,unchecked,deprecation</compilerArgument> <excludes> <exclude>**/package-info.java</exclude> </excludes> </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>2.10.4</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <links> <link>http://sirius-lib.net/apidocs/sirius-kernel/</link> <link>http://sirius-lib.net/apidocs/sirius-web/</link> <link>http://sirius-lib.net/apidocs/sirius-db/</link> <link>http://sirius-lib.net/apidocs/sirius-search/</link> <link>http://sirius-lib.net/apidocs/sirius-biz/</link> <link>http://sirius-lib.net/apidocs/sirius-ipl/</link> <link>http://netty.io/4.0/api/</link> </links> <failOnError>false</failOnError> <breakiterator>true</breakiterator> <version>false</version> <author>false</author> <keywords>true</keywords> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.3</version> <executions> <execution> <id>display-updates</id> <phase>validate</phase> <goals> <goal>display-dependency-updates</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>