If you're on Linux, you can change your plugins path by setting the IDEA_PLUGINS_PATH environment variable to the path before running IDEA. This probably works on other platforms too. This way you can set your plugins path to be ~/idea-plugins or something, so it isn't touched when you upgrade IDEA.
If you're on Linux, you can change your plugins path by setting the
IDEA_PLUGINS_PATH environment variable to the path before running IDEA. This probably works on other platforms too. This way you can set your plugins path to be ~/idea-plugins or something, so it isn't touched when you upgrade IDEA.
Try adding something like -Didea.plugins.path="~ .IntelliJIdea plugins" to the "lax.nl.java.option.additional" entry in the idea.lax file. It seems to work with WinXP Pro. Although I haven't really tested it other than checking the plugin list after startup to see that it matches the right plugins directory contents.
is it possible? after each update i need to re-install the plugins...
I install each new IDEA from the zip file. For each update I do the following steps (on windows 2000). 1. rename the directory of the previous installation by appending the build number(e.g. C:\Program Files\IDEA --> C:\Program Files\IDEA1179) 2. unpack the zip in a new directory with the same name (C:\Program Files\IDEA) 3. move the jre directory from the old installation to the new one. 4. move the plugin jars and directories from the old installation to the new one (being careful not to overwrite the plugins already there: cvsIntegration, jsr45debug, starteamIntegration, tomcatIntegration)
Finished. These actions can of course be scripted to avoid manual labor:-) This way I can easily go back a build if the current one doesn't allow me to work and I don't have to install all plugins again.
Yes this is exactly what I do too. Any budding script writers fancy knocking together a bat file? ;)
N.
Bas Leijdekkers wrote:
On 24-03-2004 18:28, Michal Bazynski wrote:
>> is it possible? after each update i need to re-install the plugins...
I install each new IDEA from the zip file. For each update I do the following steps (on windows 2000). 1. rename the directory of the previous installation by appending the build number(e.g. C:\Program Files\IDEA --> C:\Program Files\IDEA1179) 2. unpack the zip in a new directory with the same name (C:\Program Files\IDEA) 3. move the jre directory from the old installation to the new one. 4. move the plugin jars and directories from the old installation to the new one (being careful not to overwrite the plugins already there: cvsIntegration, jsr45debug, starteamIntegration, tomcatIntegration)
Finished. These actions can of course be scripted to avoid manual labor:-) This way I can easily go back a build if the current one doesn't allow me to work and I don't have to install all plugins again.
Yes this is exactly what I do too. Any budding script writers fancy knocking together a bat file? ;)
>
N.
>
Bas Leijdekkers wrote:
>
On 24-03-2004 18:28, Michal Bazynski wrote:
> >> is it possible? after each update i need to re-install the plugins... > >
I install each new IDEA from the zip file. For each update I do the following steps (on windows 2000). 1. rename the directory of the previous installation by appending the build number(e.g. C:\Program Files\IDEA --> C:\Program Files\IDEA1179) 2. unpack the zip in a new directory with the same name (C:\Program Files\IDEA) 3. move the jre directory from the old installation to the new one. 4. move the plugin jars and directories from the old installation to the new one (being careful not to overwrite the plugins already there: cvsIntegration, jsr45debug, starteamIntegration, tomcatIntegration)
>
Finished. These actions can of course be scripted to avoid manual labor:-) This way I can easily go back a build if the current one doesn't allow me to work and I don't have to install all plugins again.
Try adding something like -Didea.plugins.path="~ .IntelliJIdea plugins" to the "lax.nl.java.option.additional" entry in the idea.lax file. It seems to work with WinXP Pro. Although I haven't really tested it
other
than checking the plugin list after startup to see that it matches the
Try adding something like -Didea.plugins.path="~ .IntelliJIdea plugins" to the "lax.nl.java.option.additional" entry in the idea.lax file. It seems to work with WinXP Pro. Although I haven't really tested it
other
than checking the plugin list after startup to see that it matches the
Yes this is exactly what I do too. Any budding script writers fancy knocking together a bat file? ;)
>
N.
>
Bas Leijdekkers wrote:
>
On 24-03-2004 18:28, Michal Bazynski wrote:
> >> is it possible? after each update i need to re-install the plugins... > >
I install each new IDEA from the zip file. For each update I do the following steps (on windows 2000). 1. rename the directory of the previous installation by appending the build number(e.g. C:\Program Files\IDEA --> C:\Program Files\IDEA1179) 2. unpack the zip in a new directory with the same name (C:\Program Files\IDEA) 3. move the jre directory from the old installation to the new one. 4. move the plugin jars and directories from the old installation to
the
new one (being careful not to overwrite the plugins already there: cvsIntegration, jsr45debug, starteamIntegration, tomcatIntegration)
>
Finished. These actions can of course be scripted to avoid manual labor:-) This way I can easily go back a build if the current one doesn't allow me to work and I don't have to install all plugins
Not at all. It uses Winzip comand-line which requires Winzip 9.0. So, if you have another zip tool, you'll have to edit accordingly. Anyway, here it is.
Yes this is exactly what I do too. Any budding script writers fancy knocking together a bat file? ;)
>
N.
>
Bas Leijdekkers wrote:
>
On 24-03-2004 18:28, Michal Bazynski wrote:
> >> is it possible? after each update i need to re-install the
plugins...
> >
I install each new IDEA from the zip file. For each update I do the following steps (on windows 2000). 1. rename the directory of the previous installation by appending
2. unpack the zip in a new directory with the same name (C:\Program Files\IDEA) 3. move the jre directory from the old installation to the new one. 4. move the plugin jars and directories from the old installation to
the
new one (being careful not to overwrite the plugins already there: cvsIntegration, jsr45debug, starteamIntegration, tomcatIntegration)
>
Finished. These actions can of course be scripted to avoid manual labor:-) This way I can easily go back a build if the current one doesn't allow me to work and I don't have to install all plugins
Another way to do it: I got tired of struggling with batch file limitations so I wrote a simple Ant script which I call from a very simple batch file (which overrides "dest" and "settings", etc.):
update.bat: ant -f C:\dev\tools\settings\build.xml -Ddest=%1 -Dbasedir="." -Dsettings="C:\dev\tools\settings"
Brad wrote:
Not at all. It uses Winzip comand-line which requires Winzip 9.0. So, if you have another zip tool, you'll have to edit accordingly. Anyway, here it is.
If you're on Linux, you can change your plugins path by setting the IDEA_PLUGINS_PATH environment variable to the path before running IDEA. This probably works on other platforms too. This way you can set your plugins path to be ~/idea-plugins or something, so it isn't touched when you upgrade IDEA.
Unfortunately, that doesn't work in Windows. XP Pro anyway.
"Keith Lea" <keith@cs.oswego.edu> wrote in message
news:8132042.1080155790793.JavaMail.itn@is.intellij.net...
IDEA_PLUGINS_PATH environment variable to the path before running IDEA. This
probably works on other platforms too. This way you can set your plugins
path to be ~/idea-plugins or something, so it isn't touched when you upgrade
IDEA.
Try adding something like -Didea.plugins.path="~
.IntelliJIdea
plugins"
to the "lax.nl.java.option.additional" entry in the idea.lax file.
It seems to work with WinXP Pro. Although I haven't really tested it other
than checking the plugin list after startup to see that it matches the right
plugins directory contents.
"Brad" <none@nowhere.org> wrote in message
news:c3so0d$7lv$1@is.intellij.net...
>
This
upgrade
>
>
On 24-03-2004 18:28, Michal Bazynski wrote:
I install each new IDEA from the zip file. For each update I do the
following steps (on windows 2000).
1. rename the directory of the previous installation by appending the
build number(e.g. C:\Program Files\IDEA --> C:\Program Files\IDEA1179)
2. unpack the zip in a new directory with the same name (C:\Program
Files\IDEA)
3. move the jre directory from the old installation to the new one.
4. move the plugin jars and directories from the old installation to the
new one (being careful not to overwrite the plugins already there:
cvsIntegration, jsr45debug, starteamIntegration, tomcatIntegration)
Finished. These actions can of course be scripted to avoid manual
labor:-) This way I can easily go back a build if the current one
doesn't allow me to work and I don't have to install all plugins again.
Bas
Yes this is exactly what I do too. Any budding script writers fancy
knocking together a bat file? ;)
N.
Bas Leijdekkers wrote:
>> is it possible? after each update i need to re-install the plugins...
I have a .bat file that does this.
"Nathan Brown" <nedski@yahoo.com> wrote in message
news:c3uogh$cgr$2@is.intellij.net...
>
>
>
Tried that and it didn't work. I'll give it another shot though.
"Tim Haley" <ymaraner@yahoo.com> wrote in message
news:c3un2i$rob$1@is.intellij.net...
other
right
>
>
>
Hmm. Must have had a typo the first try. Works now. Thanks.
"Tim Haley" <ymaraner@yahoo.com> wrote in message
news:c3un2i$rob$1@is.intellij.net...
other
right
>
>
>
Brad,
I don't suppose you would mind sharing that .bat would you?
thanks
scott
"Brad" <none@nowhere.org> wrote in message
news:c3uq72$gtq$1@is.intellij.net...
>
the
again.
>
>
Not at all. It uses Winzip comand-line which requires Winzip 9.0. So, if you
have another zip tool, you'll have to edit accordingly.
Anyway, here it is.
"Scott Curtis" <scurtis@smart421.com> wrote in message
news:c3ut8i$3ui$1@is.intellij.net...
>
>
>
plugins...
the
Files\IDEA1179)
>
>
Attachment(s):
install.bat
Another way to do it: I got tired of struggling with batch file
limitations so I wrote a simple Ant script which I call from a very
simple batch file (which overrides "dest" and "settings", etc.):
build.xml:
]]>
<property name="idea.lax" value="$/bin/idea.lax"/> <available property="idea" file="${idea.lax}" /> <fail unless="idea" message="Not an idea installation!" /> <copy todir="$" overwrite="true" >
<fileset dir="$" includes="plugins/*,lib/,bin/*" />
</copy>
<replaceregexp file="${idea.lax}" match="-Xms.?m -Xmx.?m"
replace="-Xms64m -Xmx512m" />
</project>
update.bat:
ant -f C:\dev\tools\settings\build.xml -Ddest=%1 -Dbasedir="."
-Dsettings="C:\dev\tools\settings"
Brad wrote:
>>Brad,
>>
>>I don't suppose you would mind sharing that .bat would you?
>>
>>thanks
>>scott
--
Regards,
Rob Harwood
Software Developer
JetBrains, Inc
http://www.intellij.com
"Develop with pleasure!"
thank you everyone.
I really like your approach! Especially the regular expression replacement is very neat