zoukankan      html  css  js  c++  java
  • Windows下安装配置SBT

    1:安装包下载界面

    http://www.scala-sbt.org/download.html

    下载后进行安装。

    安装路径:D:Javasbtconf

    2:进行配置

    (1)sbtconfig.txt

    # Set the java args to high
    
    -Xmx512M
    
    -XX:MaxPermSize=256m
    
    -XX:ReservedCodeCacheSize=128m
    
    
    
    # Set the extra SBT options
    
    -Dsbt.log.format=true
    
    -Dsbt.boot.directory=D:/Java/sbt-p/boot/
    -Dsbt.global.base=D:/Java/sbt-p/.sbt
    -Dsbt.ivy.home=D:/Java/sbt-p/.ivy2
    -Dsbt.repository.config=D:/Java/sbt/conf/repo.properties

    (2)repo.properties

    [repositories]  
     local
     Nexus osc : https://code.lds.org/nexus/content/groups/main-repo
     Nexus osc thirdparty : https://code.lds.org/nexus/content/groups/plugin-repo/
     typesafe: http://repo.typesafe.com/typesafe/ivy-releases/, [organization]/[module]/(scala_[scalaVersion]/)(sbt_[sbtVersion]/)[revision]/[type]s/[artifact](-[classifier]).[ext], bootOnly  
     typesafe2: http://repo.typesafe.com/typesafe/releases/
     sbt-plugin: http://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/
     sonatype: http://oss.sonatype.org/content/repositories/snapshots  
     uk_maven: http://uk.maven.org/maven2/  
     ibibli: http://mirrors.ibiblio.org/maven2/  
     repo2: http://repo2.maven.org/maven2/
     

    3:打开CMD运行sbt,系统会下载一堆依赖包

    C:Usersyan>sbt
    Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=256m; support was removed in 8.0
    Getting org.scala-sbt sbt 0.13.15  (this may take some time)...
    You probably access the destination server through a proxy server that is not well configured.
    You probably access the destination server through a proxy server that is not well configured.
    You probably access the destination server through a proxy server that is not well configured.
    You probably access the destination server through a proxy server that is not well configured.
    downloading https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.10.6/scala-library-2.10.6.jar ...
            [SUCCESSFUL ] org.scala-lang#scala-library;2.10.6!scala-library.jar (19115ms)
    downloading https://repo.typesafe.com/typesafe/ivy-releases/org.scala-sbt/main/0.13.15/jars/main.jar ...
            [SUCCESSFUL ] org.scala-sbt#main;0.13.15!main.jar (16346ms)

    4:测试

    > sbtVersion
    [info] 0.13.15
    >

  • 相关阅读:
    2,进程----multiprocessing模块介绍
    1,进程----进程理论知识
    对ORM的理解
    对queryset的理解
    个人总结-10-代码测试整合
    个人总结-9-session的使用,十天免登陆
    个人总结-8-重新写注册和登录界面
    个人总结-7- 实现图片在MySQL数据库中的存储,取出以及显示在jsp页面上
    从人机交互看对搜狗输入法的使用感受
    个人总结6-验证码制作总结
  • 原文地址:https://www.cnblogs.com/yshyee/p/7233455.html
Copyright © 2011-2022 走看看