Skip to content

Commit

Permalink
Fix some filenames
Browse files Browse the repository at this point in the history
And update a javadoc comment
  • Loading branch information
hannesbraun committed Feb 1, 2021
1 parent d651035 commit 0557ea6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The proxy is developed using Java 1.7.
- Make sure you have [simspark and rcsserver3d](https://gitlab.com/robocup-sim/SimSpark/-/wikis/home) installed and the command `rcssserver3d` is available on your command line.

### Getting the prebuilt bersion
We provide a prebuilt version of the magmaProxy. You can download the latest version from the [Releases page](https://github.com/magmaOffenburg/magmaProxy/releases) (e.g. `magmaProxy-2.1.4.zip`). The Zip file contains the JAR file as well as the start script.
We provide a prebuilt version of magmaProxy. You can download the latest version from the [Releases page](https://github.com/magmaOffenburg/magmaProxy/releases) (e.g. `magmaproxy-2.1.4.zip`). The Zip file contains the JAR file as well as the start script.

### Building from source
- Clone the repository: `git clone https://github.com/magmaOffenburg/magmaProxy.git`.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<descriptors>
<descriptor>src/assembly/release.xml</descriptor>
</descriptors>
<finalName>magmaProxy-${project.version}</finalName>
<finalName>${project.artifactId}-${project.version}</finalName>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</execution>
Expand Down
2 changes: 1 addition & 1 deletion src/assembly/release.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<file>
<source>${project.build.directory}/${project.artifactId}-${project.version}.jar</source>
<outputDirectory>/</outputDirectory>
<destName>${project.artifactId}.jar</destName>
<destName>${project.name}.jar</destName>
</file>
<file>
<source>${project.basedir}/scripts/start.sh</source>
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/magma/tools/proxy/MagmaProxy.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ public class MagmaProxy
* <td>--verbose</td>
* <td>Shows the messages</td>
* </tr>
* <tr>
* <td>--daemon</td>
* <td>Disables the command line interface</td>
* </tr>
* </table>
*/
public static void main(String[] args)
Expand Down

0 comments on commit 0557ea6

Please sign in to comment.