cannot find Symbol import org.springframework.social.botframework.text.dict.Smiles

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP



cannot find Symbol import org.springframework.social.botframework.text.dict.Smiles



All input files are considered out-of-date for incremental task ':compileJava'.
Compiling with JDK Java compiler API.
D:Softwarests-bundleWorkspaceechoBot-mastersrcmainjavacomskypecontrollerEchoControll
er.java:37: error: cannot find symbol
import org.springframework.social.botframework.text.dict.Smiles;
^
symbol: class Smiles
location: package org.springframework.social.botframework.text.dict
1 error



Task :compileJava FAILED
:compileJava (Thread[Daemon worker Thread 3,5,main]) completed. Took 3.578 secs.



FAILURE: Build failed with an exception.



What went wrong:
Execution failed for task ':compileJava'.



Compilation failed; see the compiler error output for details.



Try:
Run with --stacktrace option to get the stack trace. Run with --debug option to get more log ou
tput. Run with --scan to get full insights.



Get more help at https://help.gradle.org



Deprecated Gradle features were used in this build, making it incompatible with Gradle 5.0.
See https://docs.gradle.org/4.8/userguide/command_line_interface.html#sec:command_line_warnings



BUILD FAILED in 5s



This is my build.gradle


apply plugin: "org.springframework.boot"

sourceCompatibility = 1.8
targetCompatibility = 1.8
version = "0.0.1"
jar.baseName = "echo-bot"

repositories
mavenLocal()
mavenCentral()


buildscript
repositories
mavenCentral()

dependencies
classpath("org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion")



dependencies
compile("ua.profitsoft.social:spring-social-botframework-core:$springSocialBotFrameworkVersion")
compile("ua.profitsoft.social:spring-social-botframework-config:$springSocialBotFrameworkVersion")
compile("ua.profitsoft.social:spring-social-botframework-text:$springSocialBotFrameworkVersion")
//compile("ua.profitsoft.social:spring-social-botframework-service:$springSocialBotFrameworkVersion")
compile("org.springframework.boot:spring-boot-starter-web:$springBootVersion")
exclude module: "spring-boot-starter-logging"

compile("org.springframework.boot:spring-boot-starter-log4j2:$springBootVersion")
compile("com.github.isrsal:spring-mvc-logger:0.2")
exclude module: "servlet-api"


compile group: "org.springframework.security.oauth", name: "spring-security-oauth2", version: "$springSecurityOAuth2Version"

//testCompile group: "org.springframework.boot", name: "spring-boot-starter-test", version: "$springBootVersion"


task stage(dependsOn: build)

task wrapper(type: Wrapper)
gradleVersion = "3.5"





Post text as text. Not as link to images of text.
– JB Nizet
Aug 13 at 6:18





Welcome to stackoverflow. Please read stackoverflow.com/help/how-to-ask and improve your question. For starters don't post code as images and provide a MCVE.
– M. Deinum
Aug 13 at 6:22





have you added spring-social-botframework-text jar in your classpath
– Bhushan Uniyal
Aug 13 at 6:25





OK, so this is a gradle build failing. How about showing us the source of the gradle build script?
– JB Nizet
Aug 13 at 6:30





Now, which of the jar files do you think should contain the class org.springframework.social.botframework.text.dict.Smiles, and why? Have you opened this jar file to see if it indeed contains it?
– JB Nizet
Aug 13 at 6:55









By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Popular posts from this blog

make 2 or more post in bootsrap

Store custom data using WC_Cart add_to_cart() method in Woocommerce 3

Firebase Auth - with Email and Password - Check user already registered