Skip to content

Commit

Permalink
Update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mmhelloworld committed Oct 6, 2013
1 parent 9b23412 commit 23fe380
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,4 @@ Thumbs.db
Desktop.ini


*.versionsBackup
26 changes: 15 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>frege</groupId>
<artifactId>frege-repl</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<packaging>jar</packaging>
<name>frege-repl</name>
<url>https://github.com/Frege/frege-repl</url>
Expand All @@ -12,6 +12,10 @@
<project.build.sourceDirectory>src/main/frege</project.build.sourceDirectory>
<frege.version>frege-3.21.232-g7b05453</frege.version>
<frege.plugin.version>1.0.5</frege.plugin.version>
<frege.scripting.version>1.0.0</frege.scripting.version>
<jline.version>2.10</jline.version>
<ecj.version>4.2.2</ecj.version>
<junit.version>4.11</junit.version>
</properties>
<build>
<pluginManagement>
Expand Down Expand Up @@ -60,7 +64,7 @@
<configuration>
<inline>true</inline>
<hints>true</hints>
<includeStale>false</includeStale>
<includeStale>false</includeStale>
</configuration>
</plugin>

Expand Down Expand Up @@ -111,8 +115,8 @@
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- bind to the packaging phase -->
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
Expand All @@ -125,28 +129,28 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jline</groupId>
<artifactId>jline</artifactId>
<version>2.10</version>
<version>${jline.version}</version>
</dependency>
<dependency>
<groupId>frege</groupId>
<artifactId>frege-interpreter</artifactId>
<version>1.0-SNAPSHOT</version>
<version>${frege.scripting.version}</version>
</dependency>
<dependency>
<groupId>frege</groupId>
<artifactId>memory-javac</artifactId>
<version>1.0-SNAPSHOT</version>
<version>${frege.scripting.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jdt.core.compiler</groupId>
<artifactId>ecj</artifactId>
<version>4.2.2</version>
<groupId>org.eclipse.jdt.core.compiler</groupId>
<artifactId>ecj</artifactId>
<version>${ecj.version}</version>
</dependency>
</dependencies>
</project>

0 comments on commit 23fe380

Please sign in to comment.