umigon-ngram-ops
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.clementlevallois.functions</groupId> <artifactId>umigon-ngram-ops</artifactId> <version>0.18</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>net.clementlevallois.functions</groupId> <artifactId>umigon-ngram-ops</artifactId> <version>0.18</version> <packaging>jar</packaging> <properties> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>net.clementlevallois.functions</groupId> <artifactId>umigon-model</artifactId> <version>0.14</version> </dependency> <dependency> <groupId>net.clementlevallois.utils</groupId> <artifactId>utils-core</artifactId> <version>0.13</version> </dependency> <!--for tests--> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.10.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.24.2</version> <scope>test</scope> </dependency> <dependency> <groupId>net.clementlevallois.functions</groupId> <artifactId>umigon-tokenizer</artifactId> <version>0.19</version> <scope>test</scope> </dependency> </dependencies> <name>umigon-ngram-ops</name> <description>because ngrams are more than a couple of terms separated by white space</description> <url>https://github.com/seinecle/umigon-ngram-ops</url> <inceptionYear>2021</inceptionYear> <!-- Developers --> <developers> <developer> <id>seinecle</id> <name>Clement Levallois</name> <email>clementlevallois@protonmail.com</email> </developer> </developers> <!-- Licenses --> <licenses> <license> <name>Creative Commons Attribution 4.0 International Public License</name> <url>https://creativecommons.org/licenses/by/4.0/legalcode</url> </license> </licenses> <!-- SCM --> <scm> <connection>scm:git:git@github.com:seinecle/umigon-ngram-ops.git</connection> <developerConnection>scm:git:git@github.com:seinecle/umigon-ngram-ops.git</developerConnection> <url>https://github.com/seinecle/umigon-ngram-ops</url> </scm> <!-- Build --> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <executions> <execution> <goals> <goal>compile</goal> </goals> <id>compile</id> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> <dependencies> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>9.4</version> </dependency> </dependencies> </plugin> </plugins> </build> <!-- Profile to publish to Maven Central--> <profiles> <profile> <id>release</id> <properties> <altDeploymentRepository>local::file:./target/staging-deploy</altDeploymentRepository> </properties> <build> <defaultGoal>clean deploy</defaultGoal> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <configuration> <source>11</source> <target>11</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>attach-javadoc</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-source</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jreleaser</groupId> <artifactId>jreleaser-maven-plugin</artifactId> <version>1.5.1</version> <configuration> <jreleaser> <signing> <active>ALWAYS</active> <armored>true</armored> </signing> <deploy> <maven> <pomchecker> <version>1.9.0</version> </pomchecker> <nexus2> <maven-central> <active>ALWAYS</active> <url>https://s01.oss.sonatype.org/service/local</url>; <closeRepository>true</closeRepository> <releaseRepository>true</releaseRepository> <stagingRepositories>target/staging-deploy</stagingRepositories> </maven-central> </nexus2> </maven> </deploy> </jreleaser> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>