Skip to content
This repository has been archived by the owner on Sep 3, 2020. It is now read-only.

Commit

Permalink
Merge pull request #76 from mlangc/support-multiple-scala-versions
Browse files Browse the repository at this point in the history
Support multiple scala versions
  • Loading branch information
misto committed Feb 22, 2015
2 parents 770613e + a970903 commit dc0a66e
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 1 deletion.
2 changes: 1 addition & 1 deletion org.scala-refactoring.library/.classpath
Expand Up @@ -7,6 +7,6 @@
<classpathentry kind="src" path="src/main/scala"/>
<classpathentry kind="src" path="src/test/java"/>
<classpathentry kind="src" path="src/test/scala"/>

<classpathentry kind="src" path="src/main/scala-2_11"/>
<classpathentry kind="output" path="bin"/>
</classpath>
19 changes: 19 additions & 0 deletions org.scala-refactoring.library/pom.xml
Expand Up @@ -35,6 +35,25 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.9.1</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${scala.versioned.source}</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
Expand Down
1 change: 1 addition & 0 deletions org.scala-refactoring.library/src/main/scala-2_10/README
@@ -0,0 +1 @@
Put sources specifically for Scala-2.10.x here
1 change: 1 addition & 0 deletions org.scala-refactoring.library/src/main/scala-2_11/README
@@ -0,0 +1 @@
Put sources specifically for Scala-2.11.x here
1 change: 1 addition & 0 deletions pom.xml
Expand Up @@ -41,6 +41,7 @@
<scala.binary.version>2.11</scala.binary.version>
<scala.xml.version>1.0.1</scala.xml.version>
<scala.parser-combinators.version>1.0.1</scala.parser-combinators.version>
<scala.versioned.source>src/main/scala-${version.suffix}</scala.versioned.source>
</properties>
<modules>
<module>org.scala-refactoring.library</module>
Expand Down

0 comments on commit dc0a66e

Please sign in to comment.