web-dev-qa-db-ja.com

最も基本的なScalaプロジェクトをMavenで作成していますか?

私はMaven 3を使用して新しいScalaプロジェクトを作成しています。私が理解している限り、Mavenで新しいプロジェクトを作成する方法は次のとおりです。

mvn archetype:generate

多分私は何かを逃しているかもしれませんが、最も単純なScalaプロジェクト(lein new app ...(Clojureなど)。ここで何か助けはありますか?

14
shakedzy

mvn archetype:generateを使用できるはずです。たとえば、org.scala-tools.archetypes:scala-archetype-simpleを選択できます。アーキタイプ名の横にある番号番号を入力する必要がありますmvn archetype:generateコマンドの出力に番号は時間とともに変化する可能性があるためです。 この記事 に記載されているように、eu.stratosphere:quickstart-scalaのような他のオプションもあります。

ただし、多少古くなっている可能性があります。個人的には、pom.xmlファイルを手動で書き込むことを好みます。参考までに、Scala 2.11.6およびScalatest 2.2.5で使用する最小のpomファイルを次に示します。

<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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.example</groupId>
  <artifactId>my-artifact</artifactId>
  <version>1.0-SNAPSHOT</version>

  <properties>
    <encoding>UTF-8</encoding>
    <scala.version>2.11.6</scala.version>
  </properties>

  <dependencies>
    <dependency>
      <groupId>org.scala-lang</groupId>
      <artifactId>scala-library</artifactId>
      <version>${scala.version}</version>
    </dependency>

    <dependency>
      <groupId>org.scalatest</groupId>
      <artifactId>scalatest_2.11</artifactId>
      <version>2.2.5</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.scala-tools</groupId>
        <artifactId>maven-scala-plugin</artifactId>
        <version>2.15.2</version>
        <executions>
          <execution>
            <goals>
              <goal>compile</goal>
              <goal>testCompile</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <groupId>org.scalatest</groupId>
        <artifactId>scalatest-maven-plugin</artifactId>
        <version>1.0</version>
        <configuration>
        </configuration>
        <executions>
          <execution>
            <id>test</id>
            <goals>
              <goal>test</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

    </plugins>

  </build>
</project>
20
Mifeet