Skip to content

Template maven project for mixing scala and java using maven dependency management. Each branch is for different versions of Scala and contains README.md for Eclipse IDE setup with all the update sites and m2e connectors.

Notifications You must be signed in to change notification settings

michal-harish/scala-java-maven-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ECLIPSE-MAVEN-SCALA 2.10.3 SETUP FOR Kepler (or Juno)

1. Download Eclipse Kepler for Java or J2EE (pref: show white space characters; use 4xspace for tabs)
2. install m2e via marketplace 
3. "Scala 2.10.x IDE + Scalatest" http://download.scala-ide.org/sdk/helium/e38/scala210/stable/site
4. "Maven for Scala Eclipse" - http://alchim31.free.fr/m2e-scala/update-site/
5. template pom.xml

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  </properties>

  <dependencies>
     <dependency>
         <groupId>org.scala-lang</groupId>
         <artifactId>scala-library</artifactId>
         <version>2.10.3</version>
     </dependency>
     <dependency>
          <groupId>org.scalatest</groupId>
          <artifactId>scalatest_2.10</artifactId>
          <version>2.1.2</version>
          <scope>test</scope>
     </dependency>
  </dependencies>

  <build>
    <sourceDirectory>src/main/scala</sourceDirectory>
    <testSourceDirectory>src/test/scala</testSourceDirectory>
    <plugins>
      <plugin>
        <groupId>org.scala-tools</groupId>
        <artifactId>maven-scala-plugin</artifactId>
        <version>2.15.2</version>
        <configuration>
          <scalaVersion>2.10.3</scalaVersion>
        </configuration>
        <executions>
            <execution>
              <id>testCompile</id>
              <phase>test-compile</phase>
              <goals>
                <goal>testCompile</goal>
              </goals>
            </execution>
            <execution>
              <id>compile</id>
              <phase>compile</phase>
              <goals>
                <goal>compile</goal>
              </goals>
            </execution>
        </executions>
      </plugin>
      <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-surefire-plugin</artifactId>
          <version>2.7</version>
          <configuration>
            <skipTests>true</skipTests>
          </configuration>
      </plugin>
      <plugin>
          <groupId>org.scalatest</groupId>
          <artifactId>scalatest-maven-plugin</artifactId>
          <version>1.0-RC1</version>
          <configuration>
            <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
            <junitxml>.</junitxml>
            <filereports>WDF TestSuite.txt</filereports>
          </configuration>
          <executions>
            <execution>
              <id>test</id>
              <phase>test</phase>
              <goals>
                <goal>test</goal>
              </goals>
            </execution>
          </executions>
      </plugin>
    </plugins>
  </build>
       

About

Template maven project for mixing scala and java using maven dependency management. Each branch is for different versions of Scala and contains README.md for Eclipse IDE setup with all the update sites and m2e connectors.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published