Skip to content
Commits on Source (2)
......@@ -10,3 +10,4 @@ ucdetector_reports
*.class
.recommenders
.sonarlint
RemoteSystemsTempFiles
Robocode is licensed under the Eclipse Public License v1.0 (EPL), which is available at
http://robocode.sourceforge.net/license/epl-v10.html
https://robocode.sourceforge.io/license/epl-v10.html
Notable exceptions are:
-----------------------
......
......@@ -3,8 +3,8 @@
Robocode is a programming game, where the goal is to develop a robot battle tank to battle against other tanks in Java or .NET. The robot battles are running in real-time and on-screen.
Read [Introduction](http://robocode.sourceforge.net/docs/ReadMe.html)
Continue reading on [Robocode home page](http://robocode.sourceforge.net/)
Read [Introduction](https://robocode.sourceforge.io/docs/ReadMe.html)
Continue reading on [Robocode home page](https://robocode.sourceforge.io/)
Learn from community at [RoboWiki](http://robowiki.net/)
Talk to developers at [robocode-developers](http://groups.google.com/group/robocode-developers)
......
@REM
@REM Copyright (c) 2001-2018 Mathew A. Nelson and Robocode contributors
@REM Copyright (c) 2001-2019 Mathew A. Nelson and Robocode contributors
@REM All rights reserved. This program and the accompanying materials
@REM are made available under the terms of the Eclipse Public License v1.0
@REM which accompanies this distribution, and is available at
@REM http://robocode.sourceforge.net/license/epl-v10.html
@REM https://robocode.sourceforge.io/license/epl-v10.html
@REM
......
#!/bin/bash
#
# Copyright (c) 2001-2018 Mathew A. Nelson and Robocode contributors
# Copyright (c) 2001-2019 Mathew A. Nelson and Robocode contributors
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://robocode.sourceforge.net/license/epl-v10.html
# https://robocode.sourceforge.io/license/epl-v10.html
#
# NOTE: Here we expect the jacobe tools to be installed on PATH
......
@REM
@REM Copyright (c) 2001-2018 Mathew A. Nelson and Robocode contributors
@REM All rights reserved. This program and the accompanying materials
@REM are made available under the terms of the Eclipse Public License v1.0
@REM which accompanies this distribution, and is available at
@REM http://robocode.sourceforge.net/license/epl-v10.html
@REM
@echo off
if not exist "%~dp0\tools\lib\maven-*-uber.jar" (
call "%~dp0\tools\loadTools.cmd"
)
call "%~dp0\tools\bin\mvn.bat" %*
\ No newline at end of file
#!/bin/bash
#
# Copyright (c) 2001-2018 Mathew A. Nelson and Robocode contributors
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://robocode.sourceforge.net/license/epl-v10.html
#
dp0=${0%/*}
if [ ! -f $dp0/tools/lib/maven-*-uber.jar ]; then
$dp0/tools/loadTools.sh
fi
$dp0/tools/bin/mvn.sh $*
\ No newline at end of file
@REM
@REM Copyright (c) 2001-2018 Mathew A. Nelson and Robocode contributors
@REM All rights reserved. This program and the accompanying materials
@REM are made available under the terms of the Eclipse Public License v1.0
@REM which accompanies this distribution, and is available at
@REM http://robocode.sourceforge.net/license/epl-v10.html
@REM
@echo off
mvn clean install ant:ant -DskipTests=false %*
rem mvn eclipse:eclipse
\ No newline at end of file
#!/bin/bash
#
# Copyright (c) 2001-2018 Mathew A. Nelson and Robocode contributors
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://robocode.sourceforge.net/license/epl-v10.html
#
./mvn.sh clean install ant:ant -DskipTests=false $*
#./mvn.sh eclipse:eclipse
\ No newline at end of file
====
Copyright (c) 2001-2018 Mathew A. Nelson and Robocode contributors
Copyright (c) 2001-2019 Mathew A. Nelson and Robocode contributors
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://robocode.sourceforge.net/license/epl-v10.html
https://robocode.sourceforge.io/license/epl-v10.html
====
This is guide to build Robocode for .NET
......
@REM
@REM Copyright (c) 2001-2018 Mathew A. Nelson and Robocode contributors
@REM Copyright (c) 2001-2019 Mathew A. Nelson and Robocode contributors
@REM All rights reserved. This program and the accompanying materials
@REM are made available under the terms of the Eclipse Public License v1.0
@REM which accompanies this distribution, and is available at
@REM http://robocode.sourceforge.net/license/epl-v10.html
@REM https://robocode.sourceforge.io/license/epl-v10.html
@REM
@echo off
......
@REM
@REM Copyright (c) 2001-2018 Mathew A. Nelson and Robocode contributors
@REM Copyright (c) 2001-2019 Mathew A. Nelson and Robocode contributors
@REM All rights reserved. This program and the accompanying materials
@REM are made available under the terms of the Eclipse Public License v1.0
@REM which accompanies this distribution, and is available at
@REM http://robocode.sourceforge.net/license/epl-v10.html
@REM https://robocode.sourceforge.io/license/epl-v10.html
@REM
@echo off
......@@ -17,4 +17,4 @@ if not exist "%~dp0\..\..\tools\lib\maven-*-uber.jar" (
call "%~dp0\..\..\tools\loadTools.cmd"
)
call "%~dp0\..\..\mvn" %*
\ No newline at end of file
call "%~dp0\..\..\mvnw.cmd" %*
\ No newline at end of file
@REM
@REM Copyright (c) 2001-2018 Mathew A. Nelson and Robocode contributors
@REM Copyright (c) 2001-2019 Mathew A. Nelson and Robocode contributors
@REM All rights reserved. This program and the accompanying materials
@REM are made available under the terms of the Eclipse Public License v1.0
@REM which accompanies this distribution, and is available at
@REM http://robocode.sourceforge.net/license/epl-v10.html
@REM https://robocode.sourceforge.io/license/epl-v10.html
@REM
@echo off
......
......@@ -9,7 +9,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<parent>
<groupId>net.sf.robocode</groupId>
<artifactId>robocode</artifactId>
<version>${robocode.version}</version>
<version>1.9.3.5</version>
<relativePath>../..</relativePath>
</parent>
<repositories>
......
/**
* Copyright (c) 2001-2018 Mathew A. Nelson and Robocode contributors
* Copyright (c) 2001-2019 Mathew A. Nelson and Robocode contributors
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://robocode.sourceforge.net/license/epl-v10.html
* https://robocode.sourceforge.io/license/epl-v10.html
*/

......
/**
* Copyright (c) 2001-2018 Mathew A. Nelson and Robocode contributors
* Copyright (c) 2001-2019 Mathew A. Nelson and Robocode contributors
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://robocode.sourceforge.net/license/epl-v10.html
* https://robocode.sourceforge.io/license/epl-v10.html
*/
using System;
using System.IO;
......
/**
* Copyright (c) 2001-2018 Mathew A. Nelson and Robocode contributors
* Copyright (c) 2001-2019 Mathew A. Nelson and Robocode contributors
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://robocode.sourceforge.net/license/epl-v10.html
* https://robocode.sourceforge.io/license/epl-v10.html
*/

......
/**
* Copyright (c) 2001-2018 Mathew A. Nelson and Robocode contributors
* Copyright (c) 2001-2019 Mathew A. Nelson and Robocode contributors
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://robocode.sourceforge.net/license/epl-v10.html
* https://robocode.sourceforge.io/license/epl-v10.html
*/

......
/**
* Copyright (c) 2001-2018 Mathew A. Nelson and Robocode contributors
* Copyright (c) 2001-2019 Mathew A. Nelson and Robocode contributors
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://robocode.sourceforge.net/license/epl-v10.html
* https://robocode.sourceforge.io/license/epl-v10.html
*/

......
/**
* Copyright (c) 2001-2018 Mathew A. Nelson and Robocode contributors
* Copyright (c) 2001-2019 Mathew A. Nelson and Robocode contributors
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://robocode.sourceforge.net/license/epl-v10.html
* https://robocode.sourceforge.io/license/epl-v10.html
*/

......