|
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
4 | 4 | <groupId>frege</groupId>
|
5 | 5 | <artifactId>frege-repl</artifactId>
|
6 |
| - <version>1.0.0</version> |
| 6 | + <version>1.0.1</version> |
7 | 7 | <packaging>jar</packaging>
|
8 | 8 | <name>frege-repl</name>
|
9 | 9 | <url>https://github.com/Frege/frege-repl</url>
|
|
12 | 12 | <project.build.sourceDirectory>src/main/frege</project.build.sourceDirectory>
|
13 | 13 | <frege.version>frege-3.21.232-g7b05453</frege.version>
|
14 | 14 | <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> |
15 | 19 | </properties>
|
16 | 20 | <build>
|
17 | 21 | <pluginManagement>
|
|
60 | 64 | <configuration>
|
61 | 65 | <inline>true</inline>
|
62 | 66 | <hints>true</hints>
|
63 |
| - <includeStale>false</includeStale> |
| 67 | + <includeStale>false</includeStale> |
64 | 68 | </configuration>
|
65 | 69 | </plugin>
|
66 | 70 |
|
|
111 | 115 | </configuration>
|
112 | 116 | <executions>
|
113 | 117 | <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> |
116 | 120 | <goals>
|
117 | 121 | <goal>single</goal>
|
118 | 122 | </goals>
|
|
125 | 129 | <dependency>
|
126 | 130 | <groupId>junit</groupId>
|
127 | 131 | <artifactId>junit</artifactId>
|
128 |
| - <version>4.11</version> |
| 132 | + <version>${junit.version}</version> |
129 | 133 | <scope>test</scope>
|
130 | 134 | </dependency>
|
131 | 135 | <dependency>
|
132 | 136 | <groupId>jline</groupId>
|
133 | 137 | <artifactId>jline</artifactId>
|
134 |
| - <version>2.10</version> |
| 138 | + <version>${jline.version}</version> |
135 | 139 | </dependency>
|
136 | 140 | <dependency>
|
137 | 141 | <groupId>frege</groupId>
|
138 | 142 | <artifactId>frege-interpreter</artifactId>
|
139 |
| - <version>1.0-SNAPSHOT</version> |
| 143 | + <version>${frege.scripting.version}</version> |
140 | 144 | </dependency>
|
141 | 145 | <dependency>
|
142 | 146 | <groupId>frege</groupId>
|
143 | 147 | <artifactId>memory-javac</artifactId>
|
144 |
| - <version>1.0-SNAPSHOT</version> |
| 148 | + <version>${frege.scripting.version}</version> |
145 | 149 | </dependency>
|
146 | 150 | <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> |
150 | 154 | </dependency>
|
151 | 155 | </dependencies>
|
152 | 156 | </project>
|
0 commit comments