SentimentAnalysis
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.starlangsoftware</groupId> <artifactId>SentimentAnalysis</artifactId> <version>1.0.2</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>io.github.starlangsoftware</groupId> <artifactId>SentimentAnalysis</artifactId> <version>1.0.2</version> <packaging>jar</packaging> <name>NlpToolkit.SentimentAnalysis</name> <description>Sentiment Analysis</description> <url>https://github.com/StarlangSoftware/SentimentAnalysis</url> <organization> <name>io.github.starlangsoftware</name> <url>https://github.com/starlangsoftware</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Oguz Kerem Yildiz</name> <email>oguzkeremyildiz@gmail.com</email> <organization>Starlang Software</organization> <organizationUrl>http://www.starlangyazilim.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/starlangsoftware/sentimentanalysis.git</connection> <developerConnection>scm:git:ssh://github.com:starlangsoftware/sentimentanalysis.git</developerConnection> <url>http://github.com/starlangsoftware/sentimentanalysis/tree/master</url> </scm> <properties> <maven.compiler.source>13</maven.compiler.source> <maven.compiler.target>13</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>io.github.starlangsoftware</groupId> <artifactId>DataCollector</artifactId> <version>1.0.15</version> </dependency> </dependencies> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <source>1.8</source> <target>1.8</target> </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> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>sentence-sentiment</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <archive> <manifest> <mainClass>Annotation.Sentence.TestSentenceSentimentFrame</mainClass> </manifest> </archive> <finalName>sentence-sentiment</finalName> </configuration> </execution> </executions> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <appendAssemblyId>false</appendAssemblyId> </configuration> </plugin> </plugins> </build> </project>