一定要注意设置scala的版本,设置成和spark的scala一样的版本。
一、命令行
1.在IDE的workspace下,用maven命令,新建项目,命令如下:
mvn archetype:generate -DarchetypeGroupId=net.alchim31.maven -DarchetypeArtifactId=scala-archetype-simple -DremoteRepositories=http://scala-tools.org/repo-releases -DgroupId=com.bigdata -DartifactId=sparkTest
2.然后使用命令:mvn clean compile
3.使用scala IDE导入相关的项目。
二、ide直接新建
1.在ide中直接新建maven项目
2.add archetype,如下图
三、选择的刚刚建的archetype。需要关掉新建maven项目的向导,重新开启,新建的archetype才能刷新出来。
说明:scala-archetype-simple有2个不同的组织的,进maven中央仓库可以查询,建议使用GroupId=net.alchim31.maven,因为这个组织出的比较新的,版本号省略就默认用最新的版本。DremoteRepositories就都是用上面的,参考下面2篇文章可知。
参考: