Skip to content

Commit 23fe380

Browse files
committed
Update versions
1 parent 9b23412 commit 23fe380

File tree

2 files changed

+16
-11
lines changed

2 files changed

+16
-11
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,4 @@ Thumbs.db
4545
Desktop.ini
4646

4747

48+
*.versionsBackup

pom.xml

+15-11
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>frege</groupId>
55
<artifactId>frege-repl</artifactId>
6-
<version>1.0.0</version>
6+
<version>1.0.1</version>
77
<packaging>jar</packaging>
88
<name>frege-repl</name>
99
<url>https://github.com/Frege/frege-repl</url>
@@ -12,6 +12,10 @@
1212
<project.build.sourceDirectory>src/main/frege</project.build.sourceDirectory>
1313
<frege.version>frege-3.21.232-g7b05453</frege.version>
1414
<frege.plugin.version>1.0.5</frege.plugin.version>
15+
<frege.scripting.version>1.0.0</frege.scripting.version>
16+
<jline.version>2.10</jline.version>
17+
<ecj.version>4.2.2</ecj.version>
18+
<junit.version>4.11</junit.version>
1519
</properties>
1620
<build>
1721
<pluginManagement>
@@ -60,7 +64,7 @@
6064
<configuration>
6165
<inline>true</inline>
6266
<hints>true</hints>
63-
<includeStale>false</includeStale>
67+
<includeStale>false</includeStale>
6468
</configuration>
6569
</plugin>
6670

@@ -111,8 +115,8 @@
111115
</configuration>
112116
<executions>
113117
<execution>
114-
<id>make-assembly</id> <!-- this is used for inheritance merges -->
115-
<phase>package</phase> <!-- bind to the packaging phase -->
118+
<id>make-assembly</id>
119+
<phase>package</phase>
116120
<goals>
117121
<goal>single</goal>
118122
</goals>
@@ -125,28 +129,28 @@
125129
<dependency>
126130
<groupId>junit</groupId>
127131
<artifactId>junit</artifactId>
128-
<version>4.11</version>
132+
<version>${junit.version}</version>
129133
<scope>test</scope>
130134
</dependency>
131135
<dependency>
132136
<groupId>jline</groupId>
133137
<artifactId>jline</artifactId>
134-
<version>2.10</version>
138+
<version>${jline.version}</version>
135139
</dependency>
136140
<dependency>
137141
<groupId>frege</groupId>
138142
<artifactId>frege-interpreter</artifactId>
139-
<version>1.0-SNAPSHOT</version>
143+
<version>${frege.scripting.version}</version>
140144
</dependency>
141145
<dependency>
142146
<groupId>frege</groupId>
143147
<artifactId>memory-javac</artifactId>
144-
<version>1.0-SNAPSHOT</version>
148+
<version>${frege.scripting.version}</version>
145149
</dependency>
146150
<dependency>
147-
<groupId>org.eclipse.jdt.core.compiler</groupId>
148-
<artifactId>ecj</artifactId>
149-
<version>4.2.2</version>
151+
<groupId>org.eclipse.jdt.core.compiler</groupId>
152+
<artifactId>ecj</artifactId>
153+
<version>${ecj.version}</version>
150154
</dependency>
151155
</dependencies>
152156
</project>

0 commit comments

Comments
 (0)