点击【左上角】的【File】,选择【Settings...】
选择【Plugins】在输入框中输入【Scala】等待几秒后,看到显示【Scala】点击【Install】当显示为【Installed】代表安装成功了。
步骤二、maven引包
打开【pom.xml】
初始状态:
输入以下编码内容:
<!-- 基础配置 -->
<build>
<plugins>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>3.2.2</version>
<executions>
<execution>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
粘贴位置:
需要重新加载一下maven
这里别急,需要等待,可能3分钟哦。
步骤三、创建Scala类
这里需要在创建位置点击【鼠标右键】依次选择【New】-【Scala Class】
输入个类名,并且需要选择【Object】类型,键盘敲击【Enter】回车即可。
项目结构如下:
输入以下编码:
def main(args: Array[String]): Unit = {
print("hello world!")
}
【鼠标右键】点击【Run】执行即可,第一次执行需要的时间比较长,请耐心等待,可能【1分钟】后才能出来结果哦。
标签:总结,assembly,Scala,maven,点击,右键,今日,输入 From: https://www.cnblogs.com/zhaoyueheng/p/17977256