eclipse plugin: update the files to reflect the new project organization
This commit is contained in:
parent
832cd373d8
commit
6ecc25e078
4 changed files with 6 additions and 13 deletions
|
@ -85,7 +85,7 @@ After you got all the prerequisites, you need to setup the eclipse installation.
|
|||
|
||||
\item In Eclipse, right click in \textbf{Package Explorer/Navigator} and then select \textbf{Import - General - Existing projects into Workspace}
|
||||
|
||||
\item Select the path where you downloaded the ``umc\_dev" folder, and check all the projects: ``org.wesnoth", ``org.wesnoth.wml", ``org.wesnoth.wml.ui", ``org.wesnoth.feature".
|
||||
\item Select the path where you downloaded the ``umc\_dev" folder, and check all the projects: ``org.wesnoth", ``org.wesnoth.ui", ``org.wesnoth.feature".
|
||||
|
||||
\item The projects will be compiled automatically. Just to be sure, as in each Java project, verify that the ``Build automatically" entry in the ``Project" menu is checked.
|
||||
\end{enumerate}
|
||||
|
|
|
@ -31,8 +31,7 @@ java -cp %EQUINOXJAR% org.eclipse.core.launcher.Main -data workspace -applicatio
|
|||
|
||||
IF EXIST ../org.wesnoth.feature/build.xml rm ../org.wesnoth.feature/build.xml
|
||||
IF EXIST ../org.wesnoth/build.xml rm ../org.wesnoth/build.xml
|
||||
IF EXIST ../org.wesnoth.wml/build.xml rm ../org.wesnoth.wml/build.xml
|
||||
IF EXIST ../org.wesnoth.wml.ui/build.xml rm ../org.wesnoth.wml.ui/build.xml
|
||||
IF EXIST ../org.wesnoth.ui/build.xml rm ../org.wesnoth.ui/build.xml
|
||||
|
||||
:end
|
||||
echo Script finished.
|
||||
|
|
|
@ -52,11 +52,7 @@ if [[ -f "../org.wesnoth.feature/build.xml" ]]
|
|||
then
|
||||
rm ../org.wesnoth.feature/build.xml
|
||||
fi
|
||||
if [[ -f "../org.wesnoth.wml/build.xml" ]]
|
||||
if [[ -f "../org.wesnoth.ui/build.xml" ]]
|
||||
then
|
||||
rm ../org.wesnoth.wml/build.xml
|
||||
fi
|
||||
if [[ -f "../org.wesnoth.wml.ui/build.xml" ]]
|
||||
then
|
||||
rm ../org.wesnoth.wml.ui/build.xml
|
||||
rm ../org.wesnoth.ui/build.xml
|
||||
fi
|
||||
|
|
|
@ -14,11 +14,9 @@ echo generating key...
|
|||
keytool.exe -genkey -dname "cn=Battle for Wesnoth, ou=Wesnoth, o=Wesnoth" -alias wesnoth -keypass %1 -keystore keystore -storepass %2 -validity 1095
|
||||
echo signing feature
|
||||
jarsigner.exe -keystore keystore -storepass %2 -keypass %1 ../update_site/features/org.wesnoth.feature_%PLUGIN_VERSION%.jar wesnoth
|
||||
echo signing org.wesnoth.wml_%PLUGIN_VERSION%.jar
|
||||
jarsigner.exe -keystore keystore -storepass %2 -keypass %1 ../update_site/plugins/org.wesnoth.wml_%PLUGIN_VERSION%.jar wesnoth
|
||||
echo signing org.wesnoth.wml.ui_%PLUGIN_VERSION%.jar
|
||||
jarsigner.exe -keystore keystore -storepass %2 -keypass %1 ../update_site/plugins/org.wesnoth.wml.ui_%PLUGIN_VERSION%.jar wesnoth
|
||||
echo signing org.wesnoth_%PLUGIN_VERSION%.jar
|
||||
jarsigner.exe -keystore keystore -storepass %2 -keypass %1 ../update_site/plugins/org.wesnoth_%PLUGIN_VERSION%.jar wesnoth
|
||||
echo signing org.wesnoth.ui_%PLUGIN_VERSION%.jar
|
||||
jarsigner.exe -keystore keystore -storepass %2 -keypass %1 ../update_site/plugins/org.wesnoth.ui_%PLUGIN_VERSION%.jar wesnoth
|
||||
echo finished.
|
||||
@pause
|
||||
|
|
Loading…
Add table
Reference in a new issue