You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by amit kumar <am...@gmail.com> on 2008/01/04 14:21:33 UTC

PDE Plugin

Has anyone successfully worked out with maven-pde-plugin for eclipse. This
is this eclipse plug in project that i have been trying to build. But maven
is not able to resolve the plug in dependencies ( the one defined in
eclipse). i am trying to build it from command line.
I followed the tutorial on codehaus but it did not work.

Link I have been following http://mojo.codehaus.org/pde-maven-plugin/


Regards,
Amit

Re: PDE Plugin

Posted by amit kumar <am...@gmail.com>.
Hi,
I keep on seeing the below log every time I build my plug-in from command
line:

[eclipse.buildScript] Some inter-plug-in dependencies have not been
satisfied.
[eclipse.buildScript] Bundle org.eclipse.gmf.bridge.ui.dashboard:
[eclipse.buildScript]   Another singleton version selected:
org.eclipse.gmf.bridge.ui.dashboard_1.0.100.v20061222-1800
[eclipse.buildScript] Bundle org.eclipse.gmf.bridge.ui:
[eclipse.buildScript]   Another singleton version selected:
org.eclipse.gmf.bridge.ui_1.0.100.v20061214-0000
[eclipse.buildScript] Bundle org.eclipse.gmf.codegen.edit:
[eclipse.buildScript]   Another singleton version selected:
org.eclipse.gmf.codegen.edit_1.2.1.v20070103-0300
[eclipse.buildScript] Bundle org.eclipse.gmf.codegen.ui:
[eclipse.buildScript]   Another singleton version selected:
org.eclipse.gmf.codegen.ui_1.1.0.v20061222-1800
[eclipse.buildScript]   Optional plug-in org.eclipse.gmf.bridge.trace_[1.0.0
,2.0.0) is not availble.
[eclipse.buildScript] Bundle org.eclipse.gmf.codegen:
[eclipse.buildScript]   Another singleton version selected:
org.eclipse.gmf.codegen_1.2.1.v20070103-0300
[eclipse.buildScript] Bundle org.eclipse.gmf.doc.ui:
[eclipse.buildScript]   Another singleton version selected:
org.eclipse.gmf.doc.ui_1.0.0.v20061214-0000
[eclipse.buildScript] Bundle org.eclipse.gmf.doc:
[eclipse.buildScript]   Another singleton version selected:
org.eclipse.gmf.doc_1.0.0.v20061214-0000
[eclipse.buildScript] Bundle org.eclipse.gmf.ecore.editor:
[eclipse.buildScript]   Another singleton version selected:
org.eclipse.gmf.ecore.editor_1.0.100.v20070103-0300
[eclipse.buildScript] Bundle org.eclipse.gmf.graphdef.codegen.ui:
[eclipse.buildScript]   Another singleton version selected:
org.eclipse.gmf.graphdef.codegen.ui_1.0.102.v20061214-0000
[eclipse.buildScript] Bundle org.eclipse.gmf.graphdef.codegen:
..
..
..

Would this create any problem at the run-time? I am facing problems with the
build plugin at the the time of testing, its behaving weird. Does this has
something to do with the above log messages?

Thanks in advance.
Been stuck on this for two days now :(

Regards,
Amit

On Fri, Feb 22, 2008 at 7:18 PM, amit kumar <am...@gmail.com>
wrote:

> Hi,
> But I had checked some plugins that gets shipped with eclipse (3.3) for
> instance org.apache.batik_1.6.0.v20061222-1222, they do have a lib folder
> inside them but their Manifest.mf file looks a little different, it
> doesn't have an entry for Bundle.classpath, rather it has mentioned many
> packages in Export Packages.
>
> What could be the case with that plugin? Is it because they are not using
> maven? or something else? Just curious.
>
>
> Regards,
> Amit
>
>
> On Fri, Feb 22, 2008 at 6:37 PM, Graham Leggett <mi...@sharp.fm> wrote:
>
> > amit kumar wrote:
> >
> > > Copying the dependencies to the root file is what has worked till now.
> > But
> > > the ultimate packaged plug in looks a little messy. So I was just
> > trying to
> > > do accomplish the copying of dependency to the lib folder as an
> > > improvisation.
> >
> > The need to copy the dependencies to the root folder comes about due to
> > an Eclipse bug - The Eclipse IDE has a feature that allows you to add
> > "links" to dependencies, and the Eclipse IDE puts these in links in the
> > root of the project.
> >
> > Unfortunately this linked dependencies feature is not mirrored in the
> > ant based Eclipse PDE build code, which takes the existence of the files
> > literally. If the files aren't physically in the root directory, then
> > the PDE build will fail.
> >
> > You may also encounter this in Eclipse on it's own: your project may
> > build and run fine from within the IDE, but when you run "export your
> > product" the Eclipse build mysteriously fails.
> >
> > Regards,
> > Graham
> > --
> >
>
>

Re: PDE Plugin

Posted by amit kumar <am...@gmail.com>.
Hi,
But I had checked some plugins that gets shipped with eclipse (3.3) for
instance org.apache.batik_1.6.0.v20061222-1222, they do have a lib folder
inside them but their Manifest.mf file looks a little different, it doesn't
have an entry for Bundle.classpath, rather it has mentioned many packages in
Export Packages.

What could be the case with that plugin? Is it because they are not using
maven? or something else? Just curious.


Regards,
Amit

On Fri, Feb 22, 2008 at 6:37 PM, Graham Leggett <mi...@sharp.fm> wrote:

> amit kumar wrote:
>
> > Copying the dependencies to the root file is what has worked till now.
> But
> > the ultimate packaged plug in looks a little messy. So I was just trying
> to
> > do accomplish the copying of dependency to the lib folder as an
> > improvisation.
>
> The need to copy the dependencies to the root folder comes about due to
> an Eclipse bug - The Eclipse IDE has a feature that allows you to add
> "links" to dependencies, and the Eclipse IDE puts these in links in the
> root of the project.
>
> Unfortunately this linked dependencies feature is not mirrored in the
> ant based Eclipse PDE build code, which takes the existence of the files
> literally. If the files aren't physically in the root directory, then
> the PDE build will fail.
>
> You may also encounter this in Eclipse on it's own: your project may
> build and run fine from within the IDE, but when you run "export your
> product" the Eclipse build mysteriously fails.
>
> Regards,
> Graham
> --
>

Re: PDE Plugin

Posted by Graham Leggett <mi...@sharp.fm>.
amit kumar wrote:

> Copying the dependencies to the root file is what has worked till now. But
> the ultimate packaged plug in looks a little messy. So I was just trying to
> do accomplish the copying of dependency to the lib folder as an
> improvisation.

The need to copy the dependencies to the root folder comes about due to 
an Eclipse bug - The Eclipse IDE has a feature that allows you to add 
"links" to dependencies, and the Eclipse IDE puts these in links in the 
root of the project.

Unfortunately this linked dependencies feature is not mirrored in the 
ant based Eclipse PDE build code, which takes the existence of the files 
literally. If the files aren't physically in the root directory, then 
the PDE build will fail.

You may also encounter this in Eclipse on it's own: your project may 
build and run fine from within the IDE, but when you run "export your 
product" the Eclipse build mysteriously fails.

Regards,
Graham
--

Re: PDE Plugin

Posted by amit kumar <am...@gmail.com>.
Copying the dependencies to the root file is what has worked till now. But
the ultimate packaged plug in looks a little messy. So I was just trying to
do accomplish the copying of dependency to the lib folder as an
improvisation.

Thanks and Regards,
Amit

On Fri, Feb 22, 2008 at 2:26 PM, Graham Leggett <mi...@sharp.fm> wrote:

> amit kumar wrote:
>
> > With the help of people here especially Graham, I am able to build the
> plug
> > in successfully using pde-maven-plugin. The only thing left now is that
> I
> > want to package the lib folder along with the plugin, which I can do by
> > using copy-dependency but I am not able the lib entries to Manifest file
> > thus leaving the plug in handicapped at run time. The manifest entries
> tell
> > plug in to expect the dependencies in the root folder of plugin, while I
> > want to package it in lib folder(the tidier option).
>
> Tell the dependency plugin to copy the dependencies into the root
> folder, not the lib folder.
>
> Full instructions on how to do that are here:
>
> http://maven.apache.org/plugins/maven-eclipse-plugin/pde.html
>
> Regards,
> Graham
> --
>

Re: PDE Plugin

Posted by Graham Leggett <mi...@sharp.fm>.
amit kumar wrote:

> With the help of people here especially Graham, I am able to build the plug
> in successfully using pde-maven-plugin. The only thing left now is that I
> want to package the lib folder along with the plugin, which I can do by
> using copy-dependency but I am not able the lib entries to Manifest file
> thus leaving the plug in handicapped at run time. The manifest entries tell
> plug in to expect the dependencies in the root folder of plugin, while I
> want to package it in lib folder(the tidier option).

Tell the dependency plugin to copy the dependencies into the root 
folder, not the lib folder.

Full instructions on how to do that are here:

http://maven.apache.org/plugins/maven-eclipse-plugin/pde.html

Regards,
Graham
--

Re: PDE Plugin

Posted by amit kumar <am...@gmail.com>.
With the help of people here especially Graham, I am able to build the plug
in successfully using pde-maven-plugin. The only thing left now is that I
want to package the lib folder along with the plugin, which I can do by
using copy-dependency but I am not able the lib entries to Manifest file
thus leaving the plug in handicapped at run time. The manifest entries tell
plug in to expect the dependencies in the root folder of plugin, while I
want to package it in lib folder(the tidier option).

Could someone please help on that?


Regards,
Amit Kumar
On Wed, Feb 20, 2008 at 3:14 PM, amit kumar <am...@gmail.com>
wrote:

> Thanks Dan, but these files are already in eclipse and I just need to copy
> them to the final zipped file.(The outcome of pde-maven-plugin).
>
> Thanks for the kind help. Would look into it.
>
> Regards,
> Amit
>
>
> On Feb 20, 2008 2:55 PM, Dan Tran <da...@gmail.com> wrote:
>
> > again pde plugin knows nothing about maven pom's resource, you will
> > need some help from antrun  plugin to copy those files to
> > a place eclipse can pickup.
> >
> > About the source, you will need to lookup how eclipse's ant build
> > their stuff, there must by  a property
> > you can passing into ant build via pde plugin
> >
> > On Feb 20, 2008 1:16 AM, amit kumar <am...@gmail.com> wrote:
> > > Hi Dan,
> > > Thanks for valuable pointers , now its able to compile the source
> > using
> > > dependencies from both Plugin Dependencies part and pom.xml. Still
> > there are
> > > few doubts and issues
> > >
> > > 1)  pde-plugin is also zipping the source in the zip file that it
> > packages
> > > out of the project. Is there a way to avoid this?
> > >
> > > 2) Resources folders seems to be not working when pde-maven-plugin is
> > being
> > > used, I tried packaging plugin.properties and message.properties(two
> > of the
> > > required files). But I can't see them in the final zipped file.
> > >
> > > I tried
> > >
> > > <resources>
> > >       <resource>
> > >      <directory>${basedir}/resources</directory>
> > >       <targetPath>/</targetPath>
> > >      </resource>
> > >  </resources>
> > >
> > > and as well as
> > >
> > > <resources>
> > >       <resource>
> > >      <directory>${basedir}</directory>
> > >            <includes>
> > >              <include>plugin.properties</include>
> > >              <include>message.properties.properties</include>
> > >          </includes>
> > >          <excludes>
> > >              <exclude>**/*.java</exclude>
> > >          </excludes>
> > >          <targetPath>/</targetPath>
> > >      </resource>
> > >  </resources>
> > >
> > > But both seems to be not working.
> > >
> > > 3) Is it possible to bundle the pom.xml dependencies along with the
> > zipped
> > > file as well?
> > > It is a requirement that the pom.xml dependency jar files must be
> > bundled
> > > with the plugin(zip/jar) inside a lib folder or something of that
> > sort.
> > >
> > >
> > > Thanks and Regards,
> > > Amit
> > >
> > >
> > >
> > >
> > > On Feb 19, 2008 4:29 PM, Dan Tran <da...@gmail.com> wrote:
> > >
> > > > The question here is how do you want pde plugin to consume your
> > pom's
> > > > dependencies thru a way that eclipse can understand?
> > > >
> > > > I maven-dependency-plugin to copy my dependencies to a place that
> > > > eclispe's pde can pick up.
> > > >
> > > > -D
> > > >
> > > > On Feb 19, 2008 2:42 AM, amit kumar <am...@gmail.com>
> > wrote:
> > > > > Oh Ok. But how to inform pde-maven-plugin about the declared
> > > > dependencies? I
> > > > > mean is there any configuration that I am missing?
> > > > >
> > > > > Thanks and regards,
> > > > > Amit
> > > > >
> > > > >
> > > > > On Feb 19, 2008 3:57 PM, Dan Tran <da...@gmail.com> wrote:
> > > > >
> > > > > > pde-maven-plugin does not know about your declared dependencies
> > in
> > > > > > pom.xml.  Every thing must still going thru the eclipse way.
> > > > > >
> > > > > > -D
> > > > > >
> > > > > > On Feb 19, 2008 12:50 AM, amit kumar <am...@gmail.com>
> > > > wrote:
> > > > > > > Hi!
> > > > > > > I am trying to use maven-pde-plugin but without any success.
> > > > > > > When I do mvn install to a plug in project, maven-pde-plugin
> > is not
> > > > able
> > > > > > to
> > > > > > > resolve the pom.xml's dependencies.
> > > > > > > I am unable to locate any relevant document over net.
> > > > > > >
> > > > > > > Could someone please help me? It has been continuously 2nd day
> > when
> > > > I am
> > > > > > > stuck with it.
> > > > > > >
> > > > > > > The build.xml that maven-pde-plugin is generating doesn't have
> > the
> > > > > > pom.xml's
> > > > > > > dependenies in the classpath items. It has only the Plugin
> > > > dependenies.
> > > > > > >
> > > > > > > Is there any workaround for the same?
> > > > > > >
> > > > > > > As linked to by Dan I tried
> > > > > > >
> > http://mojo.codehaus.org/pde-maven-plugin/examples/m2eclipse.htmlthis
> > > > > > as
> > > > > > > well. Any plugin with only plugin dependencies is working
> > fine, but
> > > > as
> > > > > > soon
> > > > > > > as I describe dependencies in pom.xml compilation errors start
> > > > coming
> > > > > > owing
> > > > > > > to the non availability of the dependencies in the jar file.
> > > > > > >
> > > > > > >
> > > > > > > Many thanks in anticipation.
> > > > > > >
> > > > > > > Regards,
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > On Feb 13, 2008 2:48 PM, Dan Tran <da...@gmail.com> wrote:
> > > > > > >
> > > > > > > > IT = integration test
> > > > > > > >
> > > > > > > > try this
> > > > > >
> > http://mojo.codehaus.org/pde-maven-plugin/examples/m2eclipse.html
> > > > > > > >
> > > > > > > > On Feb 13, 2008 12:54 AM, amit kumar <
> > amit.kumar97400@gmail.com>
> > > > > > wrote:
> > > > > > > > > Pardon me Dan, but I did not get it? IT tests?
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > On Feb 13, 2008 1:27 PM, Dan Tran <da...@gmail.com>
> > wrote:
> > > > > > > > >
> > > > > > > > > > are you able to try other IT tests?
> > > > > > > > > >
> > > > > > > > > > On Feb 12, 2008 11:17 PM, amit kumar <
> > > > amit.kumar97400@gmail.com>
> > > > > > > > wrote:
> > > > > > > > > > > Hi,
> > > > > > > > > > > No one has any idea of the problem? I am still awfully
> > stuck
> > > > > > with
> > > > > > > > PDE
> > > > > > > > > > plug
> > > > > > > > > > > in and not able to build eclipse plugin projects using
> > it.
> > > > Could
> > > > > > > > someone
> > > > > > > > > > > please help?
> > > > > > > > > > > Any aware of any helpful content regarding the same?
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Please.
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Amit
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > On Feb 12, 2008 11:09 AM, amit kumar <
> > > > amit.kumar97400@gmail.com>
> > > > > > > > wrote:
> > > > > > > > > > >
> > > > > > > > > > > > While following the tutorial at pde-maven-plugin
> > page.
> > > > When I
> > > > > > > > tried to
> > > > > > > > > > > > run "mvn install" I am getting the following errors:
> > > > > > > > > > > >
> > > > > > > > > > > > [ERROR] BUILD ERROR
> > > > > > > > > > > > [INFO]
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > ------------------------------------------------------------------------
> > > > > > > > > > > > [INFO] Compilation failure
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[3,34]
> > > > > > > > > > > > package org.eclipse.jface.resource does not exist
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[4,29]
> > > > > > > > > > > > package org.eclipse.ui.plugin does not exist
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[5,26]
> > > > > > > > > > > > package org.osgi.framework does not exist
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[10,31]
> > > > > > > > > > > > cannot find symbol
> > > > > > > > > > > > symbol: class AbstractUIPlugin
> > > > > > > > > > > > public class Activator extends AbstractUIPlugin {
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[28,26]
> > > > > > > > > > > > cannot find symbol
> > > > > > > > > > > > symbol  : class BundleContext
> > > > > > > > > > > > location: class
> > > > test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[37,25]
> > > > > > > > > > > > cannot find symbol
> > > > > > > > > > > > symbol  : class BundleContext
> > > > > > > > > > > > location: class
> > > > test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[58,22]
> > > > > > > > > > > > cannot find symbol
> > > > > > > > > > > > symbol  : class ImageDescriptor
> > > > > > > > > > > > location: class
> > > > test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[3,32]
> > > > > > > > > > > > package org.eclipse.jface.action does not exist
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[4,33]
> > > > > > > > > > > > package org.eclipse.jface.viewers does not exist
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[5,22]
> > > > > > > > > > > > package org.eclipse.ui does not exist
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[6,22]
> > > > > > > > > > > > package org.eclipse.ui does not exist
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[7,33]
> > > > > > > > > > > > package org.eclipse.jface.dialogs does not exist
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[17,37]
> > > > > > > > > > > > cannot find symbol
> > > > > > > > > > > > symbol: class IWorkbenchWindowActionDelegate
> > > > > > > > > > > > public class SampleAction implements
> > > > > > > > IWorkbenchWindowActionDelegate {
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[18,16]
> > > > > > > > > > > > cannot find symbol
> > > > > > > > > > > > symbol  : class IWorkbenchWindow
> > > > > > > > > > > > location: class
> > > > > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[31,24]
> > > > > > > > > > > > cannot find symbol
> > > > > > > > > > > > symbol  : class IAction
> > > > > > > > > > > > location: class
> > > > > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,37]
> > > > > > > > > > > > cannot find symbol
> > > > > > > > > > > > symbol  : class IAction
> > > > > > > > > > > > location: class
> > > > > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,53]
> > > > > > > > > > > > cannot find symbol
> > > > > > > > > > > > symbol  : class ISelection
> > > > > > > > > > > > location: class
> > > > > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[61,25]
> > > > > > > > > > > > cannot find symbol
> > > > > > > > > > > > symbol  : class IWorkbenchWindow
> > > > > > > > > > > > location: class
> > > > > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[29,16]
> > > > > > > > > > > > cannot find symbol
> > > > > > > > > > > > symbol  : variable super
> > > > > > > > > > > > location: class
> > > > test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[39,16]
> > > > > > > > > > > > cannot find symbol
> > > > > > > > > > > > symbol  : variable super
> > > > > > > > > > > > location: class
> > > > test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[59,23]
> > > > > > > > > > > > cannot find symbol
> > > > > > > > > > > > symbol  : method imageDescriptorFromPlugin(
> > > > java.lang.String,
> > > > > > > > > > > > java.lang.String)
> > > > > > > > > > > > location: class
> > > > test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[32,16]
> > > > > > > > > > > > cannot find symbol
> > > > > > > > > > > > symbol  : variable MessageDialog
> > > > > > > > > > > > location: class
> > > > > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > As far as I can conclude upon it, this is because
> > besides
> > > > pom
> > > > > > > > > > > > dependencies there is still something like Plug in
> > > > > > dependencies,
> > > > > > > > which
> > > > > > > > > > > > the maven is not able to comprehend.
> > > > > > > > > > > > I have tried the plug in long back, but faced same
> > error.
> > > > Then
> > > > > > had
> > > > > > > > to
> > > > > > > > > > > > drop it for a while.
> > > > > > > > > > > > Could someone please help me out, who knows the
> > workaround
> > > > of
> > > > > > the
> > > > > > > > > > > > solution for the problem.
> > > > > > > > > > > >
> > > > > > > > > > > > If I am not wrong, in one line pde plugin is not
> > able to
> > > > > > handle
> > > > > > > > the
> > > > > > > > > > > > plug in dependencies for the project.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Thanks in anticipation.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Amit
> > > > > > > > > > > >
> > > > > > > > > > > > On 2/12/08, amit kumar <am...@gmail.com>
> > wrote:
> > > > > > > > > > > > > Hi,
> > > > > > > > > > > > > Could anyone please help on a good
> > > > > > > > document(blog/tutorial/article)
> > > > > > > > > > on
> > > > > > > > > > > > > PDE plug in, I followed
> > > > > > > > http://mojo.codehaus.org/pde-maven-plugin/but
> > > > > > > > > > > > > could not able to mavenize an already existing
> > plug in
> > > > > > project.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Amit
> > > > > > > > > > > > >
> > > > > > > > > > > > > On 1/4/08, amit kumar <am...@gmail.com>
> > wrote:
> > > > > > > > > > > > > > But I doubt for any jar unavailable, because I
> > am
> > > > > > downloading
> > > > > > > > the
> > > > > > > > > > jars
> > > > > > > > > > > > > from
> > > > > > > > > > > > > > central repository.
> > > > > > > > > > > > > > I will email the pom.xml and stack trace.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > On Jan 4, 2008 6:56 PM, Vikramaditya Garg <
> > > > > > > > > > > > Vikramaditya_Garg@infosys.com>
> > > > > > > > > > > > > > wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Please sent the exceptions and error what you
> > are
> > > > > > > > > > getting.Probable
> > > > > > > > > > > > > reason
> > > > > > > > > > > > > > > include that u may not be having some jar in
> > your
> > > > local
> > > > > > repo
> > > > > > > > > > which
> > > > > > > > > > > > may
> > > > > > > > > > > > > be
> > > > > > > > > > > > > > > cause of the concern.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Also check ur proxy settings...
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Thanks
> > > > > > > > > > > > > > > Vikramaditya Garg
> > > > > > > > > > > > > > > Technical Specialist
> > > > > > > > > > > > > > > BCM-ADGE
> > > > > > > > > > > > > > > Infosys Technologies Ltd.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > -----Original Message-----
> > > > > > > > > > > > > > > From: amit kumar [mailto:
> > amit.kumar97400@gmail.com]
> > > > > > > > > > > > > > > Sent: Friday, January 04, 2008 6:52 PM
> > > > > > > > > > > > > > > To: Maven Users List
> > > > > > > > > > > > > > > Subject: PDE Plugin
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Has anyone successfully worked out with
> > > > maven-pde-plugin
> > > > > > for
> > > > > > > > > > > > eclipse.
> > > > > > > > > > > > > This
> > > > > > > > > > > > > > > is this eclipse plug in project that i have
> > been
> > > > trying
> > > > > > to
> > > > > > > > > > build.
> > > > > > > > > > > > But
> > > > > > > > > > > > > > > maven
> > > > > > > > > > > > > > > is not able to resolve the plug in
> > dependencies (
> > > > the
> > > > > > one
> > > > > > > > > > defined in
> > > > > > > > > > > > > > > eclipse). i am trying to build it from command
> > line.
> > > > > > > > > > > > > > > I followed the tutorial on codehaus but it did
> > not
> > > > work.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Link I have been following
> > > > > > > > > > > > http://mojo.codehaus.org/pde-maven-plugin/
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Amit
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > **************** CAUTION - Disclaimer
> > > > *****************
> > > > > > > > > > > > > > > This e-mail contains PRIVILEGED AND
> > CONFIDENTIAL
> > > > > > INFORMATION
> > > > > > > > > > > > intended
> > > > > > > > > > > > > > > solely for the use of the addressee(s). If you
> > are
> > > > not
> > > > > > the
> > > > > > > > > > intended
> > > > > > > > > > > > > > > recipient, please notify the sender by e-mail
> > and
> > > > delete
> > > > > > the
> > > > > > > > > > > > original
> > > > > > > > > > > > > > > message. Further, you are not to copy,
> > disclose, or
> > > > > > > > distribute
> > > > > > > > > > this
> > > > > > > > > > > > > e-mail
> > > > > > > > > > > > > > > or its contents to any other person and any
> > such
> > > > actions
> > > > > > are
> > > > > > > > > > > > unlawful.
> > > > > > > > > > > > > > This
> > > > > > > > > > > > > > > e-mail may contain viruses. Infosys has taken
> > every
> > > > > > > > reasonable
> > > > > > > > > > > > > precaution
> > > > > > > > > > > > > > to
> > > > > > > > > > > > > > > minimize this risk, but is not liable for any
> > damage
> > > > you
> > > > > > may
> > > > > > > > > > sustain
> > > > > > > > > > > > as
> > > > > > > > > > > > > a
> > > > > > > > > > > > > > > result of any virus in this e-mail. You should
> > carry
> > > > out
> > > > > > > > your
> > > > > > > > > > own
> > > > > > > > > > > > virus
> > > > > > > > > > > > > > > checks before opening the e-mail or
> > attachment.
> > > > Infosys
> > > > > > > > reserves
> > > > > > > > > > the
> > > > > > > > > > > > > right
> > > > > > > > > > > > > > > to monitor and review the content of all
> > messages
> > > > sent
> > > > > > to or
> > > > > > > > > > from
> > > > > > > > > > > > this
> > > > > > > > > > > > > > > e-mail address. Messages sent to or from this
> > e-mail
> > > > > > address
> > > > > > > > may
> > > > > > > > > > be
> > > > > > > > > > > > > stored
> > > > > > > > > > > > > > > on the Infosys e-mail system.
> > > > > > > > > > > > > > > ***INFOSYS******** End of Disclaimer
> > > > ********INFOSYS***
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > >
> > > >
> > ---------------------------------------------------------------------
> > > > > > > > > > > > > > > To unsubscribe, e-mail:
> > > > > > users-unsubscribe@maven.apache.org
> > > > > > > > > > > > > > > For additional commands, e-mail:
> > > > > > users-help@maven.apache.org
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > >
> > ---------------------------------------------------------------------
> > > > > > > > > > To unsubscribe, e-mail:
> > users-unsubscribe@maven.apache.org
> > > > > > > > > > For additional commands, e-mail:
> > users-help@maven.apache.org
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > > >
> > > >
> > ---------------------------------------------------------------------
> > > > > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > > > > > For additional commands, e-mail: users-help@maven.apache.org
> > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > > >
> > ---------------------------------------------------------------------
> > > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > > > For additional commands, e-mail: users-help@maven.apache.org
> > > > > >
> > > > > >
> > > > >
> > > >
> > > >
> > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > For additional commands, e-mail: users-help@maven.apache.org
> > > >
> > > >
> > >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
>

Re: PDE Plugin

Posted by amit kumar <am...@gmail.com>.
Thanks Dan, but these files are already in eclipse and I just need to copy
them to the final zipped file.(The outcome of pde-maven-plugin).

Thanks for the kind help. Would look into it.

Regards,
Amit

On Feb 20, 2008 2:55 PM, Dan Tran <da...@gmail.com> wrote:

> again pde plugin knows nothing about maven pom's resource, you will
> need some help from antrun  plugin to copy those files to
> a place eclipse can pickup.
>
> About the source, you will need to lookup how eclipse's ant build
> their stuff, there must by  a property
> you can passing into ant build via pde plugin
>
> On Feb 20, 2008 1:16 AM, amit kumar <am...@gmail.com> wrote:
> > Hi Dan,
> > Thanks for valuable pointers , now its able to compile the source using
> > dependencies from both Plugin Dependencies part and pom.xml. Still there
> are
> > few doubts and issues
> >
> > 1)  pde-plugin is also zipping the source in the zip file that it
> packages
> > out of the project. Is there a way to avoid this?
> >
> > 2) Resources folders seems to be not working when pde-maven-plugin is
> being
> > used, I tried packaging plugin.properties and message.properties(two of
> the
> > required files). But I can't see them in the final zipped file.
> >
> > I tried
> >
> > <resources>
> >       <resource>
> >      <directory>${basedir}/resources</directory>
> >       <targetPath>/</targetPath>
> >      </resource>
> >  </resources>
> >
> > and as well as
> >
> > <resources>
> >       <resource>
> >      <directory>${basedir}</directory>
> >            <includes>
> >              <include>plugin.properties</include>
> >              <include>message.properties.properties</include>
> >          </includes>
> >          <excludes>
> >              <exclude>**/*.java</exclude>
> >          </excludes>
> >          <targetPath>/</targetPath>
> >      </resource>
> >  </resources>
> >
> > But both seems to be not working.
> >
> > 3) Is it possible to bundle the pom.xml dependencies along with the
> zipped
> > file as well?
> > It is a requirement that the pom.xml dependency jar files must be
> bundled
> > with the plugin(zip/jar) inside a lib folder or something of that sort.
> >
> >
> > Thanks and Regards,
> > Amit
> >
> >
> >
> >
> > On Feb 19, 2008 4:29 PM, Dan Tran <da...@gmail.com> wrote:
> >
> > > The question here is how do you want pde plugin to consume your pom's
> > > dependencies thru a way that eclipse can understand?
> > >
> > > I maven-dependency-plugin to copy my dependencies to a place that
> > > eclispe's pde can pick up.
> > >
> > > -D
> > >
> > > On Feb 19, 2008 2:42 AM, amit kumar <am...@gmail.com> wrote:
> > > > Oh Ok. But how to inform pde-maven-plugin about the declared
> > > dependencies? I
> > > > mean is there any configuration that I am missing?
> > > >
> > > > Thanks and regards,
> > > > Amit
> > > >
> > > >
> > > > On Feb 19, 2008 3:57 PM, Dan Tran <da...@gmail.com> wrote:
> > > >
> > > > > pde-maven-plugin does not know about your declared dependencies in
> > > > > pom.xml.  Every thing must still going thru the eclipse way.
> > > > >
> > > > > -D
> > > > >
> > > > > On Feb 19, 2008 12:50 AM, amit kumar <am...@gmail.com>
> > > wrote:
> > > > > > Hi!
> > > > > > I am trying to use maven-pde-plugin but without any success.
> > > > > > When I do mvn install to a plug in project, maven-pde-plugin is
> not
> > > able
> > > > > to
> > > > > > resolve the pom.xml's dependencies.
> > > > > > I am unable to locate any relevant document over net.
> > > > > >
> > > > > > Could someone please help me? It has been continuously 2nd day
> when
> > > I am
> > > > > > stuck with it.
> > > > > >
> > > > > > The build.xml that maven-pde-plugin is generating doesn't have
> the
> > > > > pom.xml's
> > > > > > dependenies in the classpath items. It has only the Plugin
> > > dependenies.
> > > > > >
> > > > > > Is there any workaround for the same?
> > > > > >
> > > > > > As linked to by Dan I tried
> > > > > >
> http://mojo.codehaus.org/pde-maven-plugin/examples/m2eclipse.htmlthis
> > > > > as
> > > > > > well. Any plugin with only plugin dependencies is working fine,
> but
> > > as
> > > > > soon
> > > > > > as I describe dependencies in pom.xml compilation errors start
> > > coming
> > > > > owing
> > > > > > to the non availability of the dependencies in the jar file.
> > > > > >
> > > > > >
> > > > > > Many thanks in anticipation.
> > > > > >
> > > > > > Regards,
> > > > > >
> > > > > >
> > > > > >
> > > > > > On Feb 13, 2008 2:48 PM, Dan Tran <da...@gmail.com> wrote:
> > > > > >
> > > > > > > IT = integration test
> > > > > > >
> > > > > > > try this
> > > > > http://mojo.codehaus.org/pde-maven-plugin/examples/m2eclipse.html
> > > > > > >
> > > > > > > On Feb 13, 2008 12:54 AM, amit kumar <
> amit.kumar97400@gmail.com>
> > > > > wrote:
> > > > > > > > Pardon me Dan, but I did not get it? IT tests?
> > > > > > > >
> > > > > > > >
> > > > > > > > On Feb 13, 2008 1:27 PM, Dan Tran <da...@gmail.com> wrote:
> > > > > > > >
> > > > > > > > > are you able to try other IT tests?
> > > > > > > > >
> > > > > > > > > On Feb 12, 2008 11:17 PM, amit kumar <
> > > amit.kumar97400@gmail.com>
> > > > > > > wrote:
> > > > > > > > > > Hi,
> > > > > > > > > > No one has any idea of the problem? I am still awfully
> stuck
> > > > > with
> > > > > > > PDE
> > > > > > > > > plug
> > > > > > > > > > in and not able to build eclipse plugin projects using
> it.
> > > Could
> > > > > > > someone
> > > > > > > > > > please help?
> > > > > > > > > > Any aware of any helpful content regarding the same?
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Please.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Amit
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > On Feb 12, 2008 11:09 AM, amit kumar <
> > > amit.kumar97400@gmail.com>
> > > > > > > wrote:
> > > > > > > > > >
> > > > > > > > > > > While following the tutorial at pde-maven-plugin page.
> > > When I
> > > > > > > tried to
> > > > > > > > > > > run "mvn install" I am getting the following errors:
> > > > > > > > > > >
> > > > > > > > > > > [ERROR] BUILD ERROR
> > > > > > > > > > > [INFO]
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> ------------------------------------------------------------------------
> > > > > > > > > > > [INFO] Compilation failure
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[3,34]
> > > > > > > > > > > package org.eclipse.jface.resource does not exist
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[4,29]
> > > > > > > > > > > package org.eclipse.ui.plugin does not exist
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[5,26]
> > > > > > > > > > > package org.osgi.framework does not exist
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[10,31]
> > > > > > > > > > > cannot find symbol
> > > > > > > > > > > symbol: class AbstractUIPlugin
> > > > > > > > > > > public class Activator extends AbstractUIPlugin {
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[28,26]
> > > > > > > > > > > cannot find symbol
> > > > > > > > > > > symbol  : class BundleContext
> > > > > > > > > > > location: class
> > > test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[37,25]
> > > > > > > > > > > cannot find symbol
> > > > > > > > > > > symbol  : class BundleContext
> > > > > > > > > > > location: class
> > > test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[58,22]
> > > > > > > > > > > cannot find symbol
> > > > > > > > > > > symbol  : class ImageDescriptor
> > > > > > > > > > > location: class
> > > test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[3,32]
> > > > > > > > > > > package org.eclipse.jface.action does not exist
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[4,33]
> > > > > > > > > > > package org.eclipse.jface.viewers does not exist
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[5,22]
> > > > > > > > > > > package org.eclipse.ui does not exist
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[6,22]
> > > > > > > > > > > package org.eclipse.ui does not exist
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[7,33]
> > > > > > > > > > > package org.eclipse.jface.dialogs does not exist
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[17,37]
> > > > > > > > > > > cannot find symbol
> > > > > > > > > > > symbol: class IWorkbenchWindowActionDelegate
> > > > > > > > > > > public class SampleAction implements
> > > > > > > IWorkbenchWindowActionDelegate {
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[18,16]
> > > > > > > > > > > cannot find symbol
> > > > > > > > > > > symbol  : class IWorkbenchWindow
> > > > > > > > > > > location: class
> > > > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[31,24]
> > > > > > > > > > > cannot find symbol
> > > > > > > > > > > symbol  : class IAction
> > > > > > > > > > > location: class
> > > > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,37]
> > > > > > > > > > > cannot find symbol
> > > > > > > > > > > symbol  : class IAction
> > > > > > > > > > > location: class
> > > > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,53]
> > > > > > > > > > > cannot find symbol
> > > > > > > > > > > symbol  : class ISelection
> > > > > > > > > > > location: class
> > > > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[61,25]
> > > > > > > > > > > cannot find symbol
> > > > > > > > > > > symbol  : class IWorkbenchWindow
> > > > > > > > > > > location: class
> > > > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[29,16]
> > > > > > > > > > > cannot find symbol
> > > > > > > > > > > symbol  : variable super
> > > > > > > > > > > location: class
> > > test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[39,16]
> > > > > > > > > > > cannot find symbol
> > > > > > > > > > > symbol  : variable super
> > > > > > > > > > > location: class
> > > test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[59,23]
> > > > > > > > > > > cannot find symbol
> > > > > > > > > > > symbol  : method imageDescriptorFromPlugin(
> > > java.lang.String,
> > > > > > > > > > > java.lang.String)
> > > > > > > > > > > location: class
> > > test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[32,16]
> > > > > > > > > > > cannot find symbol
> > > > > > > > > > > symbol  : variable MessageDialog
> > > > > > > > > > > location: class
> > > > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > As far as I can conclude upon it, this is because
> besides
> > > pom
> > > > > > > > > > > dependencies there is still something like Plug in
> > > > > dependencies,
> > > > > > > which
> > > > > > > > > > > the maven is not able to comprehend.
> > > > > > > > > > > I have tried the plug in long back, but faced same
> error.
> > > Then
> > > > > had
> > > > > > > to
> > > > > > > > > > > drop it for a while.
> > > > > > > > > > > Could someone please help me out, who knows the
> workaround
> > > of
> > > > > the
> > > > > > > > > > > solution for the problem.
> > > > > > > > > > >
> > > > > > > > > > > If I am not wrong, in one line pde plugin is not able
> to
> > > > > handle
> > > > > > > the
> > > > > > > > > > > plug in dependencies for the project.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Thanks in anticipation.
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Amit
> > > > > > > > > > >
> > > > > > > > > > > On 2/12/08, amit kumar <am...@gmail.com>
> wrote:
> > > > > > > > > > > > Hi,
> > > > > > > > > > > > Could anyone please help on a good
> > > > > > > document(blog/tutorial/article)
> > > > > > > > > on
> > > > > > > > > > > > PDE plug in, I followed
> > > > > > > http://mojo.codehaus.org/pde-maven-plugin/but
> > > > > > > > > > > > could not able to mavenize an already existing plug
> in
> > > > > project.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Amit
> > > > > > > > > > > >
> > > > > > > > > > > > On 1/4/08, amit kumar <am...@gmail.com>
> wrote:
> > > > > > > > > > > > > But I doubt for any jar unavailable, because I am
> > > > > downloading
> > > > > > > the
> > > > > > > > > jars
> > > > > > > > > > > > from
> > > > > > > > > > > > > central repository.
> > > > > > > > > > > > > I will email the pom.xml and stack trace.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > On Jan 4, 2008 6:56 PM, Vikramaditya Garg <
> > > > > > > > > > > Vikramaditya_Garg@infosys.com>
> > > > > > > > > > > > > wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Please sent the exceptions and error what you
> are
> > > > > > > > > getting.Probable
> > > > > > > > > > > > reason
> > > > > > > > > > > > > > include that u may not be having some jar in
> your
> > > local
> > > > > repo
> > > > > > > > > which
> > > > > > > > > > > may
> > > > > > > > > > > > be
> > > > > > > > > > > > > > cause of the concern.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Also check ur proxy settings...
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Thanks
> > > > > > > > > > > > > > Vikramaditya Garg
> > > > > > > > > > > > > > Technical Specialist
> > > > > > > > > > > > > > BCM-ADGE
> > > > > > > > > > > > > > Infosys Technologies Ltd.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > -----Original Message-----
> > > > > > > > > > > > > > From: amit kumar [mailto:
> amit.kumar97400@gmail.com]
> > > > > > > > > > > > > > Sent: Friday, January 04, 2008 6:52 PM
> > > > > > > > > > > > > > To: Maven Users List
> > > > > > > > > > > > > > Subject: PDE Plugin
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Has anyone successfully worked out with
> > > maven-pde-plugin
> > > > > for
> > > > > > > > > > > eclipse.
> > > > > > > > > > > > This
> > > > > > > > > > > > > > is this eclipse plug in project that i have been
> > > trying
> > > > > to
> > > > > > > > > build.
> > > > > > > > > > > But
> > > > > > > > > > > > > > maven
> > > > > > > > > > > > > > is not able to resolve the plug in dependencies
> (
> > > the
> > > > > one
> > > > > > > > > defined in
> > > > > > > > > > > > > > eclipse). i am trying to build it from command
> line.
> > > > > > > > > > > > > > I followed the tutorial on codehaus but it did
> not
> > > work.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Link I have been following
> > > > > > > > > > > http://mojo.codehaus.org/pde-maven-plugin/
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Amit
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > **************** CAUTION - Disclaimer
> > > *****************
> > > > > > > > > > > > > > This e-mail contains PRIVILEGED AND CONFIDENTIAL
> > > > > INFORMATION
> > > > > > > > > > > intended
> > > > > > > > > > > > > > solely for the use of the addressee(s). If you
> are
> > > not
> > > > > the
> > > > > > > > > intended
> > > > > > > > > > > > > > recipient, please notify the sender by e-mail
> and
> > > delete
> > > > > the
> > > > > > > > > > > original
> > > > > > > > > > > > > > message. Further, you are not to copy, disclose,
> or
> > > > > > > distribute
> > > > > > > > > this
> > > > > > > > > > > > e-mail
> > > > > > > > > > > > > > or its contents to any other person and any such
> > > actions
> > > > > are
> > > > > > > > > > > unlawful.
> > > > > > > > > > > > > This
> > > > > > > > > > > > > > e-mail may contain viruses. Infosys has taken
> every
> > > > > > > reasonable
> > > > > > > > > > > > precaution
> > > > > > > > > > > > > to
> > > > > > > > > > > > > > minimize this risk, but is not liable for any
> damage
> > > you
> > > > > may
> > > > > > > > > sustain
> > > > > > > > > > > as
> > > > > > > > > > > > a
> > > > > > > > > > > > > > result of any virus in this e-mail. You should
> carry
> > > out
> > > > > > > your
> > > > > > > > > own
> > > > > > > > > > > virus
> > > > > > > > > > > > > > checks before opening the e-mail or attachment.
> > > Infosys
> > > > > > > reserves
> > > > > > > > > the
> > > > > > > > > > > > right
> > > > > > > > > > > > > > to monitor and review the content of all
> messages
> > > sent
> > > > > to or
> > > > > > > > > from
> > > > > > > > > > > this
> > > > > > > > > > > > > > e-mail address. Messages sent to or from this
> e-mail
> > > > > address
> > > > > > > may
> > > > > > > > > be
> > > > > > > > > > > > stored
> > > > > > > > > > > > > > on the Infosys e-mail system.
> > > > > > > > > > > > > > ***INFOSYS******** End of Disclaimer
> > > ********INFOSYS***
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > >
> > > ---------------------------------------------------------------------
> > > > > > > > > > > > > > To unsubscribe, e-mail:
> > > > > users-unsubscribe@maven.apache.org
> > > > > > > > > > > > > > For additional commands, e-mail:
> > > > > users-help@maven.apache.org
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > >
> ---------------------------------------------------------------------
> > > > > > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > > > > > > For additional commands, e-mail:
> users-help@maven.apache.org
> > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > > >
> > > ---------------------------------------------------------------------
> > > > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > > > > For additional commands, e-mail: users-help@maven.apache.org
> > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > > >
> ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > > For additional commands, e-mail: users-help@maven.apache.org
> > > > >
> > > > >
> > > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: users-help@maven.apache.org
> > >
> > >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: PDE Plugin

Posted by Dan Tran <da...@gmail.com>.
again pde plugin knows nothing about maven pom's resource, you will
need some help from antrun  plugin to copy those files to
a place eclipse can pickup.

About the source, you will need to lookup how eclipse's ant build
their stuff, there must by  a property
you can passing into ant build via pde plugin

On Feb 20, 2008 1:16 AM, amit kumar <am...@gmail.com> wrote:
> Hi Dan,
> Thanks for valuable pointers , now its able to compile the source using
> dependencies from both Plugin Dependencies part and pom.xml. Still there are
> few doubts and issues
>
> 1)  pde-plugin is also zipping the source in the zip file that it packages
> out of the project. Is there a way to avoid this?
>
> 2) Resources folders seems to be not working when pde-maven-plugin is being
> used, I tried packaging plugin.properties and message.properties(two of the
> required files). But I can't see them in the final zipped file.
>
> I tried
>
> <resources>
>       <resource>
>      <directory>${basedir}/resources</directory>
>       <targetPath>/</targetPath>
>      </resource>
>  </resources>
>
> and as well as
>
> <resources>
>       <resource>
>      <directory>${basedir}</directory>
>            <includes>
>              <include>plugin.properties</include>
>              <include>message.properties.properties</include>
>          </includes>
>          <excludes>
>              <exclude>**/*.java</exclude>
>          </excludes>
>          <targetPath>/</targetPath>
>      </resource>
>  </resources>
>
> But both seems to be not working.
>
> 3) Is it possible to bundle the pom.xml dependencies along with the zipped
> file as well?
> It is a requirement that the pom.xml dependency jar files must be bundled
> with the plugin(zip/jar) inside a lib folder or something of that sort.
>
>
> Thanks and Regards,
> Amit
>
>
>
>
> On Feb 19, 2008 4:29 PM, Dan Tran <da...@gmail.com> wrote:
>
> > The question here is how do you want pde plugin to consume your pom's
> > dependencies thru a way that eclipse can understand?
> >
> > I maven-dependency-plugin to copy my dependencies to a place that
> > eclispe's pde can pick up.
> >
> > -D
> >
> > On Feb 19, 2008 2:42 AM, amit kumar <am...@gmail.com> wrote:
> > > Oh Ok. But how to inform pde-maven-plugin about the declared
> > dependencies? I
> > > mean is there any configuration that I am missing?
> > >
> > > Thanks and regards,
> > > Amit
> > >
> > >
> > > On Feb 19, 2008 3:57 PM, Dan Tran <da...@gmail.com> wrote:
> > >
> > > > pde-maven-plugin does not know about your declared dependencies in
> > > > pom.xml.  Every thing must still going thru the eclipse way.
> > > >
> > > > -D
> > > >
> > > > On Feb 19, 2008 12:50 AM, amit kumar <am...@gmail.com>
> > wrote:
> > > > > Hi!
> > > > > I am trying to use maven-pde-plugin but without any success.
> > > > > When I do mvn install to a plug in project, maven-pde-plugin is not
> > able
> > > > to
> > > > > resolve the pom.xml's dependencies.
> > > > > I am unable to locate any relevant document over net.
> > > > >
> > > > > Could someone please help me? It has been continuously 2nd day when
> > I am
> > > > > stuck with it.
> > > > >
> > > > > The build.xml that maven-pde-plugin is generating doesn't have the
> > > > pom.xml's
> > > > > dependenies in the classpath items. It has only the Plugin
> > dependenies.
> > > > >
> > > > > Is there any workaround for the same?
> > > > >
> > > > > As linked to by Dan I tried
> > > > > http://mojo.codehaus.org/pde-maven-plugin/examples/m2eclipse.htmlthis
> > > > as
> > > > > well. Any plugin with only plugin dependencies is working fine, but
> > as
> > > > soon
> > > > > as I describe dependencies in pom.xml compilation errors start
> > coming
> > > > owing
> > > > > to the non availability of the dependencies in the jar file.
> > > > >
> > > > >
> > > > > Many thanks in anticipation.
> > > > >
> > > > > Regards,
> > > > >
> > > > >
> > > > >
> > > > > On Feb 13, 2008 2:48 PM, Dan Tran <da...@gmail.com> wrote:
> > > > >
> > > > > > IT = integration test
> > > > > >
> > > > > > try this
> > > > http://mojo.codehaus.org/pde-maven-plugin/examples/m2eclipse.html
> > > > > >
> > > > > > On Feb 13, 2008 12:54 AM, amit kumar <am...@gmail.com>
> > > > wrote:
> > > > > > > Pardon me Dan, but I did not get it? IT tests?
> > > > > > >
> > > > > > >
> > > > > > > On Feb 13, 2008 1:27 PM, Dan Tran <da...@gmail.com> wrote:
> > > > > > >
> > > > > > > > are you able to try other IT tests?
> > > > > > > >
> > > > > > > > On Feb 12, 2008 11:17 PM, amit kumar <
> > amit.kumar97400@gmail.com>
> > > > > > wrote:
> > > > > > > > > Hi,
> > > > > > > > > No one has any idea of the problem? I am still awfully stuck
> > > > with
> > > > > > PDE
> > > > > > > > plug
> > > > > > > > > in and not able to build eclipse plugin projects using it.
> > Could
> > > > > > someone
> > > > > > > > > please help?
> > > > > > > > > Any aware of any helpful content regarding the same?
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Please.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Amit
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > On Feb 12, 2008 11:09 AM, amit kumar <
> > amit.kumar97400@gmail.com>
> > > > > > wrote:
> > > > > > > > >
> > > > > > > > > > While following the tutorial at pde-maven-plugin page.
> > When I
> > > > > > tried to
> > > > > > > > > > run "mvn install" I am getting the following errors:
> > > > > > > > > >
> > > > > > > > > > [ERROR] BUILD ERROR
> > > > > > > > > > [INFO]
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > ------------------------------------------------------------------------
> > > > > > > > > > [INFO] Compilation failure
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[3,34]
> > > > > > > > > > package org.eclipse.jface.resource does not exist
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[4,29]
> > > > > > > > > > package org.eclipse.ui.plugin does not exist
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[5,26]
> > > > > > > > > > package org.osgi.framework does not exist
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[10,31]
> > > > > > > > > > cannot find symbol
> > > > > > > > > > symbol: class AbstractUIPlugin
> > > > > > > > > > public class Activator extends AbstractUIPlugin {
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[28,26]
> > > > > > > > > > cannot find symbol
> > > > > > > > > > symbol  : class BundleContext
> > > > > > > > > > location: class
> > test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[37,25]
> > > > > > > > > > cannot find symbol
> > > > > > > > > > symbol  : class BundleContext
> > > > > > > > > > location: class
> > test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[58,22]
> > > > > > > > > > cannot find symbol
> > > > > > > > > > symbol  : class ImageDescriptor
> > > > > > > > > > location: class
> > test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[3,32]
> > > > > > > > > > package org.eclipse.jface.action does not exist
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[4,33]
> > > > > > > > > > package org.eclipse.jface.viewers does not exist
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[5,22]
> > > > > > > > > > package org.eclipse.ui does not exist
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[6,22]
> > > > > > > > > > package org.eclipse.ui does not exist
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[7,33]
> > > > > > > > > > package org.eclipse.jface.dialogs does not exist
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[17,37]
> > > > > > > > > > cannot find symbol
> > > > > > > > > > symbol: class IWorkbenchWindowActionDelegate
> > > > > > > > > > public class SampleAction implements
> > > > > > IWorkbenchWindowActionDelegate {
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[18,16]
> > > > > > > > > > cannot find symbol
> > > > > > > > > > symbol  : class IWorkbenchWindow
> > > > > > > > > > location: class
> > > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[31,24]
> > > > > > > > > > cannot find symbol
> > > > > > > > > > symbol  : class IAction
> > > > > > > > > > location: class
> > > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,37]
> > > > > > > > > > cannot find symbol
> > > > > > > > > > symbol  : class IAction
> > > > > > > > > > location: class
> > > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,53]
> > > > > > > > > > cannot find symbol
> > > > > > > > > > symbol  : class ISelection
> > > > > > > > > > location: class
> > > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[61,25]
> > > > > > > > > > cannot find symbol
> > > > > > > > > > symbol  : class IWorkbenchWindow
> > > > > > > > > > location: class
> > > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[29,16]
> > > > > > > > > > cannot find symbol
> > > > > > > > > > symbol  : variable super
> > > > > > > > > > location: class
> > test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[39,16]
> > > > > > > > > > cannot find symbol
> > > > > > > > > > symbol  : variable super
> > > > > > > > > > location: class
> > test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[59,23]
> > > > > > > > > > cannot find symbol
> > > > > > > > > > symbol  : method imageDescriptorFromPlugin(
> > java.lang.String,
> > > > > > > > > > java.lang.String)
> > > > > > > > > > location: class
> > test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[32,16]
> > > > > > > > > > cannot find symbol
> > > > > > > > > > symbol  : variable MessageDialog
> > > > > > > > > > location: class
> > > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > As far as I can conclude upon it, this is because besides
> > pom
> > > > > > > > > > dependencies there is still something like Plug in
> > > > dependencies,
> > > > > > which
> > > > > > > > > > the maven is not able to comprehend.
> > > > > > > > > > I have tried the plug in long back, but faced same error.
> > Then
> > > > had
> > > > > > to
> > > > > > > > > > drop it for a while.
> > > > > > > > > > Could someone please help me out, who knows the workaround
> > of
> > > > the
> > > > > > > > > > solution for the problem.
> > > > > > > > > >
> > > > > > > > > > If I am not wrong, in one line pde plugin is not able to
> > > > handle
> > > > > > the
> > > > > > > > > > plug in dependencies for the project.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Thanks in anticipation.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Amit
> > > > > > > > > >
> > > > > > > > > > On 2/12/08, amit kumar <am...@gmail.com> wrote:
> > > > > > > > > > > Hi,
> > > > > > > > > > > Could anyone please help on a good
> > > > > > document(blog/tutorial/article)
> > > > > > > > on
> > > > > > > > > > > PDE plug in, I followed
> > > > > > http://mojo.codehaus.org/pde-maven-plugin/but
> > > > > > > > > > > could not able to mavenize an already existing plug in
> > > > project.
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Amit
> > > > > > > > > > >
> > > > > > > > > > > On 1/4/08, amit kumar <am...@gmail.com> wrote:
> > > > > > > > > > > > But I doubt for any jar unavailable, because I am
> > > > downloading
> > > > > > the
> > > > > > > > jars
> > > > > > > > > > > from
> > > > > > > > > > > > central repository.
> > > > > > > > > > > > I will email the pom.xml and stack trace.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > On Jan 4, 2008 6:56 PM, Vikramaditya Garg <
> > > > > > > > > > Vikramaditya_Garg@infosys.com>
> > > > > > > > > > > > wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Please sent the exceptions and error what you are
> > > > > > > > getting.Probable
> > > > > > > > > > > reason
> > > > > > > > > > > > > include that u may not be having some jar in your
> > local
> > > > repo
> > > > > > > > which
> > > > > > > > > > may
> > > > > > > > > > > be
> > > > > > > > > > > > > cause of the concern.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Also check ur proxy settings...
> > > > > > > > > > > > >
> > > > > > > > > > > > > Thanks
> > > > > > > > > > > > > Vikramaditya Garg
> > > > > > > > > > > > > Technical Specialist
> > > > > > > > > > > > > BCM-ADGE
> > > > > > > > > > > > > Infosys Technologies Ltd.
> > > > > > > > > > > > >
> > > > > > > > > > > > > -----Original Message-----
> > > > > > > > > > > > > From: amit kumar [mailto:amit.kumar97400@gmail.com]
> > > > > > > > > > > > > Sent: Friday, January 04, 2008 6:52 PM
> > > > > > > > > > > > > To: Maven Users List
> > > > > > > > > > > > > Subject: PDE Plugin
> > > > > > > > > > > > >
> > > > > > > > > > > > > Has anyone successfully worked out with
> > maven-pde-plugin
> > > > for
> > > > > > > > > > eclipse.
> > > > > > > > > > > This
> > > > > > > > > > > > > is this eclipse plug in project that i have been
> > trying
> > > > to
> > > > > > > > build.
> > > > > > > > > > But
> > > > > > > > > > > > > maven
> > > > > > > > > > > > > is not able to resolve the plug in dependencies (
> > the
> > > > one
> > > > > > > > defined in
> > > > > > > > > > > > > eclipse). i am trying to build it from command line.
> > > > > > > > > > > > > I followed the tutorial on codehaus but it did not
> > work.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Link I have been following
> > > > > > > > > > http://mojo.codehaus.org/pde-maven-plugin/
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Amit
> > > > > > > > > > > > >
> > > > > > > > > > > > > **************** CAUTION - Disclaimer
> > *****************
> > > > > > > > > > > > > This e-mail contains PRIVILEGED AND CONFIDENTIAL
> > > > INFORMATION
> > > > > > > > > > intended
> > > > > > > > > > > > > solely for the use of the addressee(s). If you are
> > not
> > > > the
> > > > > > > > intended
> > > > > > > > > > > > > recipient, please notify the sender by e-mail and
> > delete
> > > > the
> > > > > > > > > > original
> > > > > > > > > > > > > message. Further, you are not to copy, disclose, or
> > > > > > distribute
> > > > > > > > this
> > > > > > > > > > > e-mail
> > > > > > > > > > > > > or its contents to any other person and any such
> > actions
> > > > are
> > > > > > > > > > unlawful.
> > > > > > > > > > > > This
> > > > > > > > > > > > > e-mail may contain viruses. Infosys has taken every
> > > > > > reasonable
> > > > > > > > > > > precaution
> > > > > > > > > > > > to
> > > > > > > > > > > > > minimize this risk, but is not liable for any damage
> > you
> > > > may
> > > > > > > > sustain
> > > > > > > > > > as
> > > > > > > > > > > a
> > > > > > > > > > > > > result of any virus in this e-mail. You should carry
> > out
> > > > > > your
> > > > > > > > own
> > > > > > > > > > virus
> > > > > > > > > > > > > checks before opening the e-mail or attachment.
> > Infosys
> > > > > > reserves
> > > > > > > > the
> > > > > > > > > > > right
> > > > > > > > > > > > > to monitor and review the content of all messages
> > sent
> > > > to or
> > > > > > > > from
> > > > > > > > > > this
> > > > > > > > > > > > > e-mail address. Messages sent to or from this e-mail
> > > > address
> > > > > > may
> > > > > > > > be
> > > > > > > > > > > stored
> > > > > > > > > > > > > on the Infosys e-mail system.
> > > > > > > > > > > > > ***INFOSYS******** End of Disclaimer
> > ********INFOSYS***
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > >
> > > > > >
> > ---------------------------------------------------------------------
> > > > > > > > > > > > > To unsubscribe, e-mail:
> > > > users-unsubscribe@maven.apache.org
> > > > > > > > > > > > > For additional commands, e-mail:
> > > > users-help@maven.apache.org
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > ---------------------------------------------------------------------
> > > > > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > > > > > For additional commands, e-mail: users-help@maven.apache.org
> > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > > >
> > ---------------------------------------------------------------------
> > > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > > > For additional commands, e-mail: users-help@maven.apache.org
> > > > > >
> > > > > >
> > > > >
> > > >
> > > > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > For additional commands, e-mail: users-help@maven.apache.org
> > > >
> > > >
> > >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: PDE Plugin

Posted by amit kumar <am...@gmail.com>.
Hi Dan,
Thanks for valuable pointers , now its able to compile the source using
dependencies from both Plugin Dependencies part and pom.xml. Still there are
few doubts and issues

1)  pde-plugin is also zipping the source in the zip file that it packages
out of the project. Is there a way to avoid this?

2) Resources folders seems to be not working when pde-maven-plugin is being
used, I tried packaging plugin.properties and message.properties(two of the
required files). But I can't see them in the final zipped file.

I tried

<resources>
       <resource>
      <directory>${basedir}/resources</directory>
       <targetPath>/</targetPath>
      </resource>
  </resources>

and as well as

<resources>
       <resource>
      <directory>${basedir}</directory>
            <includes>
              <include>plugin.properties</include>
              <include>message.properties.properties</include>
          </includes>
          <excludes>
              <exclude>**/*.java</exclude>
          </excludes>
          <targetPath>/</targetPath>
      </resource>
  </resources>

But both seems to be not working.

3) Is it possible to bundle the pom.xml dependencies along with the zipped
file as well?
It is a requirement that the pom.xml dependency jar files must be bundled
with the plugin(zip/jar) inside a lib folder or something of that sort.


Thanks and Regards,
Amit



On Feb 19, 2008 4:29 PM, Dan Tran <da...@gmail.com> wrote:

> The question here is how do you want pde plugin to consume your pom's
> dependencies thru a way that eclipse can understand?
>
> I maven-dependency-plugin to copy my dependencies to a place that
> eclispe's pde can pick up.
>
> -D
>
> On Feb 19, 2008 2:42 AM, amit kumar <am...@gmail.com> wrote:
> > Oh Ok. But how to inform pde-maven-plugin about the declared
> dependencies? I
> > mean is there any configuration that I am missing?
> >
> > Thanks and regards,
> > Amit
> >
> >
> > On Feb 19, 2008 3:57 PM, Dan Tran <da...@gmail.com> wrote:
> >
> > > pde-maven-plugin does not know about your declared dependencies in
> > > pom.xml.  Every thing must still going thru the eclipse way.
> > >
> > > -D
> > >
> > > On Feb 19, 2008 12:50 AM, amit kumar <am...@gmail.com>
> wrote:
> > > > Hi!
> > > > I am trying to use maven-pde-plugin but without any success.
> > > > When I do mvn install to a plug in project, maven-pde-plugin is not
> able
> > > to
> > > > resolve the pom.xml's dependencies.
> > > > I am unable to locate any relevant document over net.
> > > >
> > > > Could someone please help me? It has been continuously 2nd day when
> I am
> > > > stuck with it.
> > > >
> > > > The build.xml that maven-pde-plugin is generating doesn't have the
> > > pom.xml's
> > > > dependenies in the classpath items. It has only the Plugin
> dependenies.
> > > >
> > > > Is there any workaround for the same?
> > > >
> > > > As linked to by Dan I tried
> > > > http://mojo.codehaus.org/pde-maven-plugin/examples/m2eclipse.htmlthis
> > > as
> > > > well. Any plugin with only plugin dependencies is working fine, but
> as
> > > soon
> > > > as I describe dependencies in pom.xml compilation errors start
> coming
> > > owing
> > > > to the non availability of the dependencies in the jar file.
> > > >
> > > >
> > > > Many thanks in anticipation.
> > > >
> > > > Regards,
> > > >
> > > >
> > > >
> > > > On Feb 13, 2008 2:48 PM, Dan Tran <da...@gmail.com> wrote:
> > > >
> > > > > IT = integration test
> > > > >
> > > > > try this
> > > http://mojo.codehaus.org/pde-maven-plugin/examples/m2eclipse.html
> > > > >
> > > > > On Feb 13, 2008 12:54 AM, amit kumar <am...@gmail.com>
> > > wrote:
> > > > > > Pardon me Dan, but I did not get it? IT tests?
> > > > > >
> > > > > >
> > > > > > On Feb 13, 2008 1:27 PM, Dan Tran <da...@gmail.com> wrote:
> > > > > >
> > > > > > > are you able to try other IT tests?
> > > > > > >
> > > > > > > On Feb 12, 2008 11:17 PM, amit kumar <
> amit.kumar97400@gmail.com>
> > > > > wrote:
> > > > > > > > Hi,
> > > > > > > > No one has any idea of the problem? I am still awfully stuck
> > > with
> > > > > PDE
> > > > > > > plug
> > > > > > > > in and not able to build eclipse plugin projects using it.
> Could
> > > > > someone
> > > > > > > > please help?
> > > > > > > > Any aware of any helpful content regarding the same?
> > > > > > > >
> > > > > > > >
> > > > > > > > Please.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Amit
> > > > > > > >
> > > > > > > >
> > > > > > > > On Feb 12, 2008 11:09 AM, amit kumar <
> amit.kumar97400@gmail.com>
> > > > > wrote:
> > > > > > > >
> > > > > > > > > While following the tutorial at pde-maven-plugin page.
> When I
> > > > > tried to
> > > > > > > > > run "mvn install" I am getting the following errors:
> > > > > > > > >
> > > > > > > > > [ERROR] BUILD ERROR
> > > > > > > > > [INFO]
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> ------------------------------------------------------------------------
> > > > > > > > > [INFO] Compilation failure
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[3,34]
> > > > > > > > > package org.eclipse.jface.resource does not exist
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[4,29]
> > > > > > > > > package org.eclipse.ui.plugin does not exist
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[5,26]
> > > > > > > > > package org.osgi.framework does not exist
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[10,31]
> > > > > > > > > cannot find symbol
> > > > > > > > > symbol: class AbstractUIPlugin
> > > > > > > > > public class Activator extends AbstractUIPlugin {
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[28,26]
> > > > > > > > > cannot find symbol
> > > > > > > > > symbol  : class BundleContext
> > > > > > > > > location: class
> test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[37,25]
> > > > > > > > > cannot find symbol
> > > > > > > > > symbol  : class BundleContext
> > > > > > > > > location: class
> test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[58,22]
> > > > > > > > > cannot find symbol
> > > > > > > > > symbol  : class ImageDescriptor
> > > > > > > > > location: class
> test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[3,32]
> > > > > > > > > package org.eclipse.jface.action does not exist
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[4,33]
> > > > > > > > > package org.eclipse.jface.viewers does not exist
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[5,22]
> > > > > > > > > package org.eclipse.ui does not exist
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[6,22]
> > > > > > > > > package org.eclipse.ui does not exist
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[7,33]
> > > > > > > > > package org.eclipse.jface.dialogs does not exist
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[17,37]
> > > > > > > > > cannot find symbol
> > > > > > > > > symbol: class IWorkbenchWindowActionDelegate
> > > > > > > > > public class SampleAction implements
> > > > > IWorkbenchWindowActionDelegate {
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[18,16]
> > > > > > > > > cannot find symbol
> > > > > > > > > symbol  : class IWorkbenchWindow
> > > > > > > > > location: class
> > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[31,24]
> > > > > > > > > cannot find symbol
> > > > > > > > > symbol  : class IAction
> > > > > > > > > location: class
> > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,37]
> > > > > > > > > cannot find symbol
> > > > > > > > > symbol  : class IAction
> > > > > > > > > location: class
> > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,53]
> > > > > > > > > cannot find symbol
> > > > > > > > > symbol  : class ISelection
> > > > > > > > > location: class
> > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[61,25]
> > > > > > > > > cannot find symbol
> > > > > > > > > symbol  : class IWorkbenchWindow
> > > > > > > > > location: class
> > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[29,16]
> > > > > > > > > cannot find symbol
> > > > > > > > > symbol  : variable super
> > > > > > > > > location: class
> test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[39,16]
> > > > > > > > > cannot find symbol
> > > > > > > > > symbol  : variable super
> > > > > > > > > location: class
> test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[59,23]
> > > > > > > > > cannot find symbol
> > > > > > > > > symbol  : method imageDescriptorFromPlugin(
> java.lang.String,
> > > > > > > > > java.lang.String)
> > > > > > > > > location: class
> test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[32,16]
> > > > > > > > > cannot find symbol
> > > > > > > > > symbol  : variable MessageDialog
> > > > > > > > > location: class
> > > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > As far as I can conclude upon it, this is because besides
> pom
> > > > > > > > > dependencies there is still something like Plug in
> > > dependencies,
> > > > > which
> > > > > > > > > the maven is not able to comprehend.
> > > > > > > > > I have tried the plug in long back, but faced same error.
> Then
> > > had
> > > > > to
> > > > > > > > > drop it for a while.
> > > > > > > > > Could someone please help me out, who knows the workaround
> of
> > > the
> > > > > > > > > solution for the problem.
> > > > > > > > >
> > > > > > > > > If I am not wrong, in one line pde plugin is not able to
> > > handle
> > > > > the
> > > > > > > > > plug in dependencies for the project.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Thanks in anticipation.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Amit
> > > > > > > > >
> > > > > > > > > On 2/12/08, amit kumar <am...@gmail.com> wrote:
> > > > > > > > > > Hi,
> > > > > > > > > > Could anyone please help on a good
> > > > > document(blog/tutorial/article)
> > > > > > > on
> > > > > > > > > > PDE plug in, I followed
> > > > > http://mojo.codehaus.org/pde-maven-plugin/but
> > > > > > > > > > could not able to mavenize an already existing plug in
> > > project.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Amit
> > > > > > > > > >
> > > > > > > > > > On 1/4/08, amit kumar <am...@gmail.com> wrote:
> > > > > > > > > > > But I doubt for any jar unavailable, because I am
> > > downloading
> > > > > the
> > > > > > > jars
> > > > > > > > > > from
> > > > > > > > > > > central repository.
> > > > > > > > > > > I will email the pom.xml and stack trace.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > On Jan 4, 2008 6:56 PM, Vikramaditya Garg <
> > > > > > > > > Vikramaditya_Garg@infosys.com>
> > > > > > > > > > > wrote:
> > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Please sent the exceptions and error what you are
> > > > > > > getting.Probable
> > > > > > > > > > reason
> > > > > > > > > > > > include that u may not be having some jar in your
> local
> > > repo
> > > > > > > which
> > > > > > > > > may
> > > > > > > > > > be
> > > > > > > > > > > > cause of the concern.
> > > > > > > > > > > >
> > > > > > > > > > > > Also check ur proxy settings...
> > > > > > > > > > > >
> > > > > > > > > > > > Thanks
> > > > > > > > > > > > Vikramaditya Garg
> > > > > > > > > > > > Technical Specialist
> > > > > > > > > > > > BCM-ADGE
> > > > > > > > > > > > Infosys Technologies Ltd.
> > > > > > > > > > > >
> > > > > > > > > > > > -----Original Message-----
> > > > > > > > > > > > From: amit kumar [mailto:amit.kumar97400@gmail.com]
> > > > > > > > > > > > Sent: Friday, January 04, 2008 6:52 PM
> > > > > > > > > > > > To: Maven Users List
> > > > > > > > > > > > Subject: PDE Plugin
> > > > > > > > > > > >
> > > > > > > > > > > > Has anyone successfully worked out with
> maven-pde-plugin
> > > for
> > > > > > > > > eclipse.
> > > > > > > > > > This
> > > > > > > > > > > > is this eclipse plug in project that i have been
> trying
> > > to
> > > > > > > build.
> > > > > > > > > But
> > > > > > > > > > > > maven
> > > > > > > > > > > > is not able to resolve the plug in dependencies (
> the
> > > one
> > > > > > > defined in
> > > > > > > > > > > > eclipse). i am trying to build it from command line.
> > > > > > > > > > > > I followed the tutorial on codehaus but it did not
> work.
> > > > > > > > > > > >
> > > > > > > > > > > > Link I have been following
> > > > > > > > > http://mojo.codehaus.org/pde-maven-plugin/
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Amit
> > > > > > > > > > > >
> > > > > > > > > > > > **************** CAUTION - Disclaimer
> *****************
> > > > > > > > > > > > This e-mail contains PRIVILEGED AND CONFIDENTIAL
> > > INFORMATION
> > > > > > > > > intended
> > > > > > > > > > > > solely for the use of the addressee(s). If you are
> not
> > > the
> > > > > > > intended
> > > > > > > > > > > > recipient, please notify the sender by e-mail and
> delete
> > > the
> > > > > > > > > original
> > > > > > > > > > > > message. Further, you are not to copy, disclose, or
> > > > > distribute
> > > > > > > this
> > > > > > > > > > e-mail
> > > > > > > > > > > > or its contents to any other person and any such
> actions
> > > are
> > > > > > > > > unlawful.
> > > > > > > > > > > This
> > > > > > > > > > > > e-mail may contain viruses. Infosys has taken every
> > > > > reasonable
> > > > > > > > > > precaution
> > > > > > > > > > > to
> > > > > > > > > > > > minimize this risk, but is not liable for any damage
> you
> > > may
> > > > > > > sustain
> > > > > > > > > as
> > > > > > > > > > a
> > > > > > > > > > > > result of any virus in this e-mail. You should carry
> out
> > > > > your
> > > > > > > own
> > > > > > > > > virus
> > > > > > > > > > > > checks before opening the e-mail or attachment.
> Infosys
> > > > > reserves
> > > > > > > the
> > > > > > > > > > right
> > > > > > > > > > > > to monitor and review the content of all messages
> sent
> > > to or
> > > > > > > from
> > > > > > > > > this
> > > > > > > > > > > > e-mail address. Messages sent to or from this e-mail
> > > address
> > > > > may
> > > > > > > be
> > > > > > > > > > stored
> > > > > > > > > > > > on the Infosys e-mail system.
> > > > > > > > > > > > ***INFOSYS******** End of Disclaimer
> ********INFOSYS***
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > >
> > > > >
> ---------------------------------------------------------------------
> > > > > > > > > > > > To unsubscribe, e-mail:
> > > users-unsubscribe@maven.apache.org
> > > > > > > > > > > > For additional commands, e-mail:
> > > users-help@maven.apache.org
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > > >
> > > ---------------------------------------------------------------------
> > > > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > > > > For additional commands, e-mail: users-help@maven.apache.org
> > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > > >
> ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > > For additional commands, e-mail: users-help@maven.apache.org
> > > > >
> > > > >
> > > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: users-help@maven.apache.org
> > >
> > >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: PDE Plugin

Posted by Dan Tran <da...@gmail.com>.
The question here is how do you want pde plugin to consume your pom's
dependencies thru a way that eclipse can understand?

I maven-dependency-plugin to copy my dependencies to a place that
eclispe's pde can pick up.

-D

On Feb 19, 2008 2:42 AM, amit kumar <am...@gmail.com> wrote:
> Oh Ok. But how to inform pde-maven-plugin about the declared dependencies? I
> mean is there any configuration that I am missing?
>
> Thanks and regards,
> Amit
>
>
> On Feb 19, 2008 3:57 PM, Dan Tran <da...@gmail.com> wrote:
>
> > pde-maven-plugin does not know about your declared dependencies in
> > pom.xml.  Every thing must still going thru the eclipse way.
> >
> > -D
> >
> > On Feb 19, 2008 12:50 AM, amit kumar <am...@gmail.com> wrote:
> > > Hi!
> > > I am trying to use maven-pde-plugin but without any success.
> > > When I do mvn install to a plug in project, maven-pde-plugin is not able
> > to
> > > resolve the pom.xml's dependencies.
> > > I am unable to locate any relevant document over net.
> > >
> > > Could someone please help me? It has been continuously 2nd day when I am
> > > stuck with it.
> > >
> > > The build.xml that maven-pde-plugin is generating doesn't have the
> > pom.xml's
> > > dependenies in the classpath items. It has only the Plugin dependenies.
> > >
> > > Is there any workaround for the same?
> > >
> > > As linked to by Dan I tried
> > > http://mojo.codehaus.org/pde-maven-plugin/examples/m2eclipse.html this
> > as
> > > well. Any plugin with only plugin dependencies is working fine, but as
> > soon
> > > as I describe dependencies in pom.xml compilation errors start coming
> > owing
> > > to the non availability of the dependencies in the jar file.
> > >
> > >
> > > Many thanks in anticipation.
> > >
> > > Regards,
> > >
> > >
> > >
> > > On Feb 13, 2008 2:48 PM, Dan Tran <da...@gmail.com> wrote:
> > >
> > > > IT = integration test
> > > >
> > > > try this
> > http://mojo.codehaus.org/pde-maven-plugin/examples/m2eclipse.html
> > > >
> > > > On Feb 13, 2008 12:54 AM, amit kumar <am...@gmail.com>
> > wrote:
> > > > > Pardon me Dan, but I did not get it? IT tests?
> > > > >
> > > > >
> > > > > On Feb 13, 2008 1:27 PM, Dan Tran <da...@gmail.com> wrote:
> > > > >
> > > > > > are you able to try other IT tests?
> > > > > >
> > > > > > On Feb 12, 2008 11:17 PM, amit kumar <am...@gmail.com>
> > > > wrote:
> > > > > > > Hi,
> > > > > > > No one has any idea of the problem? I am still awfully stuck
> > with
> > > > PDE
> > > > > > plug
> > > > > > > in and not able to build eclipse plugin projects using it. Could
> > > > someone
> > > > > > > please help?
> > > > > > > Any aware of any helpful content regarding the same?
> > > > > > >
> > > > > > >
> > > > > > > Please.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Amit
> > > > > > >
> > > > > > >
> > > > > > > On Feb 12, 2008 11:09 AM, amit kumar <am...@gmail.com>
> > > > wrote:
> > > > > > >
> > > > > > > > While following the tutorial at pde-maven-plugin page. When I
> > > > tried to
> > > > > > > > run "mvn install" I am getting the following errors:
> > > > > > > >
> > > > > > > > [ERROR] BUILD ERROR
> > > > > > > > [INFO]
> > > > > > > >
> > > > > >
> > > >
> > ------------------------------------------------------------------------
> > > > > > > > [INFO] Compilation failure
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[3,34]
> > > > > > > > package org.eclipse.jface.resource does not exist
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[4,29]
> > > > > > > > package org.eclipse.ui.plugin does not exist
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[5,26]
> > > > > > > > package org.osgi.framework does not exist
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[10,31]
> > > > > > > > cannot find symbol
> > > > > > > > symbol: class AbstractUIPlugin
> > > > > > > > public class Activator extends AbstractUIPlugin {
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[28,26]
> > > > > > > > cannot find symbol
> > > > > > > > symbol  : class BundleContext
> > > > > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[37,25]
> > > > > > > > cannot find symbol
> > > > > > > > symbol  : class BundleContext
> > > > > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[58,22]
> > > > > > > > cannot find symbol
> > > > > > > > symbol  : class ImageDescriptor
> > > > > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[3,32]
> > > > > > > > package org.eclipse.jface.action does not exist
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[4,33]
> > > > > > > > package org.eclipse.jface.viewers does not exist
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[5,22]
> > > > > > > > package org.eclipse.ui does not exist
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[6,22]
> > > > > > > > package org.eclipse.ui does not exist
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[7,33]
> > > > > > > > package org.eclipse.jface.dialogs does not exist
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[17,37]
> > > > > > > > cannot find symbol
> > > > > > > > symbol: class IWorkbenchWindowActionDelegate
> > > > > > > > public class SampleAction implements
> > > > IWorkbenchWindowActionDelegate {
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[18,16]
> > > > > > > > cannot find symbol
> > > > > > > > symbol  : class IWorkbenchWindow
> > > > > > > > location: class
> > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[31,24]
> > > > > > > > cannot find symbol
> > > > > > > > symbol  : class IAction
> > > > > > > > location: class
> > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,37]
> > > > > > > > cannot find symbol
> > > > > > > > symbol  : class IAction
> > > > > > > > location: class
> > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,53]
> > > > > > > > cannot find symbol
> > > > > > > > symbol  : class ISelection
> > > > > > > > location: class
> > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[61,25]
> > > > > > > > cannot find symbol
> > > > > > > > symbol  : class IWorkbenchWindow
> > > > > > > > location: class
> > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[29,16]
> > > > > > > > cannot find symbol
> > > > > > > > symbol  : variable super
> > > > > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[39,16]
> > > > > > > > cannot find symbol
> > > > > > > > symbol  : variable super
> > > > > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[59,23]
> > > > > > > > cannot find symbol
> > > > > > > > symbol  : method imageDescriptorFromPlugin(java.lang.String,
> > > > > > > > java.lang.String)
> > > > > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[32,16]
> > > > > > > > cannot find symbol
> > > > > > > > symbol  : variable MessageDialog
> > > > > > > > location: class
> > > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > > >
> > > > > > > >
> > > > > > > > As far as I can conclude upon it, this is because besides pom
> > > > > > > > dependencies there is still something like Plug in
> > dependencies,
> > > > which
> > > > > > > > the maven is not able to comprehend.
> > > > > > > > I have tried the plug in long back, but faced same error. Then
> > had
> > > > to
> > > > > > > > drop it for a while.
> > > > > > > > Could someone please help me out, who knows the workaround of
> > the
> > > > > > > > solution for the problem.
> > > > > > > >
> > > > > > > > If I am not wrong, in one line pde plugin is not able to
> > handle
> > > > the
> > > > > > > > plug in dependencies for the project.
> > > > > > > >
> > > > > > > >
> > > > > > > > Thanks in anticipation.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Amit
> > > > > > > >
> > > > > > > > On 2/12/08, amit kumar <am...@gmail.com> wrote:
> > > > > > > > > Hi,
> > > > > > > > > Could anyone please help on a good
> > > > document(blog/tutorial/article)
> > > > > > on
> > > > > > > > > PDE plug in, I followed
> > > > http://mojo.codehaus.org/pde-maven-plugin/but
> > > > > > > > > could not able to mavenize an already existing plug in
> > project.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Amit
> > > > > > > > >
> > > > > > > > > On 1/4/08, amit kumar <am...@gmail.com> wrote:
> > > > > > > > > > But I doubt for any jar unavailable, because I am
> > downloading
> > > > the
> > > > > > jars
> > > > > > > > > from
> > > > > > > > > > central repository.
> > > > > > > > > > I will email the pom.xml and stack trace.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > On Jan 4, 2008 6:56 PM, Vikramaditya Garg <
> > > > > > > > Vikramaditya_Garg@infosys.com>
> > > > > > > > > > wrote:
> > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Please sent the exceptions and error what you are
> > > > > > getting.Probable
> > > > > > > > > reason
> > > > > > > > > > > include that u may not be having some jar in your local
> > repo
> > > > > > which
> > > > > > > > may
> > > > > > > > > be
> > > > > > > > > > > cause of the concern.
> > > > > > > > > > >
> > > > > > > > > > > Also check ur proxy settings...
> > > > > > > > > > >
> > > > > > > > > > > Thanks
> > > > > > > > > > > Vikramaditya Garg
> > > > > > > > > > > Technical Specialist
> > > > > > > > > > > BCM-ADGE
> > > > > > > > > > > Infosys Technologies Ltd.
> > > > > > > > > > >
> > > > > > > > > > > -----Original Message-----
> > > > > > > > > > > From: amit kumar [mailto:amit.kumar97400@gmail.com]
> > > > > > > > > > > Sent: Friday, January 04, 2008 6:52 PM
> > > > > > > > > > > To: Maven Users List
> > > > > > > > > > > Subject: PDE Plugin
> > > > > > > > > > >
> > > > > > > > > > > Has anyone successfully worked out with maven-pde-plugin
> > for
> > > > > > > > eclipse.
> > > > > > > > > This
> > > > > > > > > > > is this eclipse plug in project that i have been trying
> > to
> > > > > > build.
> > > > > > > > But
> > > > > > > > > > > maven
> > > > > > > > > > > is not able to resolve the plug in dependencies ( the
> > one
> > > > > > defined in
> > > > > > > > > > > eclipse). i am trying to build it from command line.
> > > > > > > > > > > I followed the tutorial on codehaus but it did not work.
> > > > > > > > > > >
> > > > > > > > > > > Link I have been following
> > > > > > > > http://mojo.codehaus.org/pde-maven-plugin/
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Amit
> > > > > > > > > > >
> > > > > > > > > > > **************** CAUTION - Disclaimer *****************
> > > > > > > > > > > This e-mail contains PRIVILEGED AND CONFIDENTIAL
> > INFORMATION
> > > > > > > > intended
> > > > > > > > > > > solely for the use of the addressee(s). If you are not
> > the
> > > > > > intended
> > > > > > > > > > > recipient, please notify the sender by e-mail and delete
> > the
> > > > > > > > original
> > > > > > > > > > > message. Further, you are not to copy, disclose, or
> > > > distribute
> > > > > > this
> > > > > > > > > e-mail
> > > > > > > > > > > or its contents to any other person and any such actions
> > are
> > > > > > > > unlawful.
> > > > > > > > > > This
> > > > > > > > > > > e-mail may contain viruses. Infosys has taken every
> > > > reasonable
> > > > > > > > > precaution
> > > > > > > > > > to
> > > > > > > > > > > minimize this risk, but is not liable for any damage you
> > may
> > > > > > sustain
> > > > > > > > as
> > > > > > > > > a
> > > > > > > > > > > result of any virus in this e-mail. You should carry out
> > > > your
> > > > > > own
> > > > > > > > virus
> > > > > > > > > > > checks before opening the e-mail or attachment. Infosys
> > > > reserves
> > > > > > the
> > > > > > > > > right
> > > > > > > > > > > to monitor and review the content of all messages sent
> > to or
> > > > > > from
> > > > > > > > this
> > > > > > > > > > > e-mail address. Messages sent to or from this e-mail
> > address
> > > > may
> > > > > > be
> > > > > > > > > stored
> > > > > > > > > > > on the Infosys e-mail system.
> > > > > > > > > > > ***INFOSYS******** End of Disclaimer ********INFOSYS***
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > >
> > > > ---------------------------------------------------------------------
> > > > > > > > > > > To unsubscribe, e-mail:
> > users-unsubscribe@maven.apache.org
> > > > > > > > > > > For additional commands, e-mail:
> > users-help@maven.apache.org
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > > >
> > ---------------------------------------------------------------------
> > > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > > > For additional commands, e-mail: users-help@maven.apache.org
> > > > > >
> > > > > >
> > > > >
> > > >
> > > > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > For additional commands, e-mail: users-help@maven.apache.org
> > > >
> > > >
> > >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: PDE Plugin

Posted by amit kumar <am...@gmail.com>.
Oh Ok. But how to inform pde-maven-plugin about the declared dependencies? I
mean is there any configuration that I am missing?

Thanks and regards,
Amit

On Feb 19, 2008 3:57 PM, Dan Tran <da...@gmail.com> wrote:

> pde-maven-plugin does not know about your declared dependencies in
> pom.xml.  Every thing must still going thru the eclipse way.
>
> -D
>
> On Feb 19, 2008 12:50 AM, amit kumar <am...@gmail.com> wrote:
> > Hi!
> > I am trying to use maven-pde-plugin but without any success.
> > When I do mvn install to a plug in project, maven-pde-plugin is not able
> to
> > resolve the pom.xml's dependencies.
> > I am unable to locate any relevant document over net.
> >
> > Could someone please help me? It has been continuously 2nd day when I am
> > stuck with it.
> >
> > The build.xml that maven-pde-plugin is generating doesn't have the
> pom.xml's
> > dependenies in the classpath items. It has only the Plugin dependenies.
> >
> > Is there any workaround for the same?
> >
> > As linked to by Dan I tried
> > http://mojo.codehaus.org/pde-maven-plugin/examples/m2eclipse.html this
> as
> > well. Any plugin with only plugin dependencies is working fine, but as
> soon
> > as I describe dependencies in pom.xml compilation errors start coming
> owing
> > to the non availability of the dependencies in the jar file.
> >
> >
> > Many thanks in anticipation.
> >
> > Regards,
> >
> >
> >
> > On Feb 13, 2008 2:48 PM, Dan Tran <da...@gmail.com> wrote:
> >
> > > IT = integration test
> > >
> > > try this
> http://mojo.codehaus.org/pde-maven-plugin/examples/m2eclipse.html
> > >
> > > On Feb 13, 2008 12:54 AM, amit kumar <am...@gmail.com>
> wrote:
> > > > Pardon me Dan, but I did not get it? IT tests?
> > > >
> > > >
> > > > On Feb 13, 2008 1:27 PM, Dan Tran <da...@gmail.com> wrote:
> > > >
> > > > > are you able to try other IT tests?
> > > > >
> > > > > On Feb 12, 2008 11:17 PM, amit kumar <am...@gmail.com>
> > > wrote:
> > > > > > Hi,
> > > > > > No one has any idea of the problem? I am still awfully stuck
> with
> > > PDE
> > > > > plug
> > > > > > in and not able to build eclipse plugin projects using it. Could
> > > someone
> > > > > > please help?
> > > > > > Any aware of any helpful content regarding the same?
> > > > > >
> > > > > >
> > > > > > Please.
> > > > > >
> > > > > > Regards,
> > > > > > Amit
> > > > > >
> > > > > >
> > > > > > On Feb 12, 2008 11:09 AM, amit kumar <am...@gmail.com>
> > > wrote:
> > > > > >
> > > > > > > While following the tutorial at pde-maven-plugin page. When I
> > > tried to
> > > > > > > run "mvn install" I am getting the following errors:
> > > > > > >
> > > > > > > [ERROR] BUILD ERROR
> > > > > > > [INFO]
> > > > > > >
> > > > >
> > >
> ------------------------------------------------------------------------
> > > > > > > [INFO] Compilation failure
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[3,34]
> > > > > > > package org.eclipse.jface.resource does not exist
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[4,29]
> > > > > > > package org.eclipse.ui.plugin does not exist
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[5,26]
> > > > > > > package org.osgi.framework does not exist
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[10,31]
> > > > > > > cannot find symbol
> > > > > > > symbol: class AbstractUIPlugin
> > > > > > > public class Activator extends AbstractUIPlugin {
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[28,26]
> > > > > > > cannot find symbol
> > > > > > > symbol  : class BundleContext
> > > > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[37,25]
> > > > > > > cannot find symbol
> > > > > > > symbol  : class BundleContext
> > > > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[58,22]
> > > > > > > cannot find symbol
> > > > > > > symbol  : class ImageDescriptor
> > > > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[3,32]
> > > > > > > package org.eclipse.jface.action does not exist
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[4,33]
> > > > > > > package org.eclipse.jface.viewers does not exist
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[5,22]
> > > > > > > package org.eclipse.ui does not exist
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[6,22]
> > > > > > > package org.eclipse.ui does not exist
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[7,33]
> > > > > > > package org.eclipse.jface.dialogs does not exist
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[17,37]
> > > > > > > cannot find symbol
> > > > > > > symbol: class IWorkbenchWindowActionDelegate
> > > > > > > public class SampleAction implements
> > > IWorkbenchWindowActionDelegate {
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[18,16]
> > > > > > > cannot find symbol
> > > > > > > symbol  : class IWorkbenchWindow
> > > > > > > location: class
> > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[31,24]
> > > > > > > cannot find symbol
> > > > > > > symbol  : class IAction
> > > > > > > location: class
> > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,37]
> > > > > > > cannot find symbol
> > > > > > > symbol  : class IAction
> > > > > > > location: class
> > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,53]
> > > > > > > cannot find symbol
> > > > > > > symbol  : class ISelection
> > > > > > > location: class
> > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[61,25]
> > > > > > > cannot find symbol
> > > > > > > symbol  : class IWorkbenchWindow
> > > > > > > location: class
> > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[29,16]
> > > > > > > cannot find symbol
> > > > > > > symbol  : variable super
> > > > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[39,16]
> > > > > > > cannot find symbol
> > > > > > > symbol  : variable super
> > > > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[59,23]
> > > > > > > cannot find symbol
> > > > > > > symbol  : method imageDescriptorFromPlugin(java.lang.String,
> > > > > > > java.lang.String)
> > > > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[32,16]
> > > > > > > cannot find symbol
> > > > > > > symbol  : variable MessageDialog
> > > > > > > location: class
> > > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > > >
> > > > > > >
> > > > > > > As far as I can conclude upon it, this is because besides pom
> > > > > > > dependencies there is still something like Plug in
> dependencies,
> > > which
> > > > > > > the maven is not able to comprehend.
> > > > > > > I have tried the plug in long back, but faced same error. Then
> had
> > > to
> > > > > > > drop it for a while.
> > > > > > > Could someone please help me out, who knows the workaround of
> the
> > > > > > > solution for the problem.
> > > > > > >
> > > > > > > If I am not wrong, in one line pde plugin is not able to
> handle
> > > the
> > > > > > > plug in dependencies for the project.
> > > > > > >
> > > > > > >
> > > > > > > Thanks in anticipation.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Amit
> > > > > > >
> > > > > > > On 2/12/08, amit kumar <am...@gmail.com> wrote:
> > > > > > > > Hi,
> > > > > > > > Could anyone please help on a good
> > > document(blog/tutorial/article)
> > > > > on
> > > > > > > > PDE plug in, I followed
> > > http://mojo.codehaus.org/pde-maven-plugin/but
> > > > > > > > could not able to mavenize an already existing plug in
> project.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Amit
> > > > > > > >
> > > > > > > > On 1/4/08, amit kumar <am...@gmail.com> wrote:
> > > > > > > > > But I doubt for any jar unavailable, because I am
> downloading
> > > the
> > > > > jars
> > > > > > > > from
> > > > > > > > > central repository.
> > > > > > > > > I will email the pom.xml and stack trace.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > On Jan 4, 2008 6:56 PM, Vikramaditya Garg <
> > > > > > > Vikramaditya_Garg@infosys.com>
> > > > > > > > > wrote:
> > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Please sent the exceptions and error what you are
> > > > > getting.Probable
> > > > > > > > reason
> > > > > > > > > > include that u may not be having some jar in your local
> repo
> > > > > which
> > > > > > > may
> > > > > > > > be
> > > > > > > > > > cause of the concern.
> > > > > > > > > >
> > > > > > > > > > Also check ur proxy settings...
> > > > > > > > > >
> > > > > > > > > > Thanks
> > > > > > > > > > Vikramaditya Garg
> > > > > > > > > > Technical Specialist
> > > > > > > > > > BCM-ADGE
> > > > > > > > > > Infosys Technologies Ltd.
> > > > > > > > > >
> > > > > > > > > > -----Original Message-----
> > > > > > > > > > From: amit kumar [mailto:amit.kumar97400@gmail.com]
> > > > > > > > > > Sent: Friday, January 04, 2008 6:52 PM
> > > > > > > > > > To: Maven Users List
> > > > > > > > > > Subject: PDE Plugin
> > > > > > > > > >
> > > > > > > > > > Has anyone successfully worked out with maven-pde-plugin
> for
> > > > > > > eclipse.
> > > > > > > > This
> > > > > > > > > > is this eclipse plug in project that i have been trying
> to
> > > > > build.
> > > > > > > But
> > > > > > > > > > maven
> > > > > > > > > > is not able to resolve the plug in dependencies ( the
> one
> > > > > defined in
> > > > > > > > > > eclipse). i am trying to build it from command line.
> > > > > > > > > > I followed the tutorial on codehaus but it did not work.
> > > > > > > > > >
> > > > > > > > > > Link I have been following
> > > > > > > http://mojo.codehaus.org/pde-maven-plugin/
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Amit
> > > > > > > > > >
> > > > > > > > > > **************** CAUTION - Disclaimer *****************
> > > > > > > > > > This e-mail contains PRIVILEGED AND CONFIDENTIAL
> INFORMATION
> > > > > > > intended
> > > > > > > > > > solely for the use of the addressee(s). If you are not
> the
> > > > > intended
> > > > > > > > > > recipient, please notify the sender by e-mail and delete
> the
> > > > > > > original
> > > > > > > > > > message. Further, you are not to copy, disclose, or
> > > distribute
> > > > > this
> > > > > > > > e-mail
> > > > > > > > > > or its contents to any other person and any such actions
> are
> > > > > > > unlawful.
> > > > > > > > > This
> > > > > > > > > > e-mail may contain viruses. Infosys has taken every
> > > reasonable
> > > > > > > > precaution
> > > > > > > > > to
> > > > > > > > > > minimize this risk, but is not liable for any damage you
> may
> > > > > sustain
> > > > > > > as
> > > > > > > > a
> > > > > > > > > > result of any virus in this e-mail. You should carry out
> > > your
> > > > > own
> > > > > > > virus
> > > > > > > > > > checks before opening the e-mail or attachment. Infosys
> > > reserves
> > > > > the
> > > > > > > > right
> > > > > > > > > > to monitor and review the content of all messages sent
> to or
> > > > > from
> > > > > > > this
> > > > > > > > > > e-mail address. Messages sent to or from this e-mail
> address
> > > may
> > > > > be
> > > > > > > > stored
> > > > > > > > > > on the Infosys e-mail system.
> > > > > > > > > > ***INFOSYS******** End of Disclaimer ********INFOSYS***
> > > > > > > > > >
> > > > > > > > > >
> > > > > > >
> > > ---------------------------------------------------------------------
> > > > > > > > > > To unsubscribe, e-mail:
> users-unsubscribe@maven.apache.org
> > > > > > > > > > For additional commands, e-mail:
> users-help@maven.apache.org
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > > >
> ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > > For additional commands, e-mail: users-help@maven.apache.org
> > > > >
> > > > >
> > > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: users-help@maven.apache.org
> > >
> > >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: PDE Plugin

Posted by Dan Tran <da...@gmail.com>.
pde-maven-plugin does not know about your declared dependencies in
pom.xml.  Every thing must still going thru the eclipse way.

-D

On Feb 19, 2008 12:50 AM, amit kumar <am...@gmail.com> wrote:
> Hi!
> I am trying to use maven-pde-plugin but without any success.
> When I do mvn install to a plug in project, maven-pde-plugin is not able to
> resolve the pom.xml's dependencies.
> I am unable to locate any relevant document over net.
>
> Could someone please help me? It has been continuously 2nd day when I am
> stuck with it.
>
> The build.xml that maven-pde-plugin is generating doesn't have the pom.xml's
> dependenies in the classpath items. It has only the Plugin dependenies.
>
> Is there any workaround for the same?
>
> As linked to by Dan I tried
> http://mojo.codehaus.org/pde-maven-plugin/examples/m2eclipse.html this as
> well. Any plugin with only plugin dependencies is working fine, but as soon
> as I describe dependencies in pom.xml compilation errors start coming owing
> to the non availability of the dependencies in the jar file.
>
>
> Many thanks in anticipation.
>
> Regards,
>
>
>
> On Feb 13, 2008 2:48 PM, Dan Tran <da...@gmail.com> wrote:
>
> > IT = integration test
> >
> > try this http://mojo.codehaus.org/pde-maven-plugin/examples/m2eclipse.html
> >
> > On Feb 13, 2008 12:54 AM, amit kumar <am...@gmail.com> wrote:
> > > Pardon me Dan, but I did not get it? IT tests?
> > >
> > >
> > > On Feb 13, 2008 1:27 PM, Dan Tran <da...@gmail.com> wrote:
> > >
> > > > are you able to try other IT tests?
> > > >
> > > > On Feb 12, 2008 11:17 PM, amit kumar <am...@gmail.com>
> > wrote:
> > > > > Hi,
> > > > > No one has any idea of the problem? I am still awfully stuck with
> > PDE
> > > > plug
> > > > > in and not able to build eclipse plugin projects using it. Could
> > someone
> > > > > please help?
> > > > > Any aware of any helpful content regarding the same?
> > > > >
> > > > >
> > > > > Please.
> > > > >
> > > > > Regards,
> > > > > Amit
> > > > >
> > > > >
> > > > > On Feb 12, 2008 11:09 AM, amit kumar <am...@gmail.com>
> > wrote:
> > > > >
> > > > > > While following the tutorial at pde-maven-plugin page. When I
> > tried to
> > > > > > run "mvn install" I am getting the following errors:
> > > > > >
> > > > > > [ERROR] BUILD ERROR
> > > > > > [INFO]
> > > > > >
> > > >
> > ------------------------------------------------------------------------
> > > > > > [INFO] Compilation failure
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[3,34]
> > > > > > package org.eclipse.jface.resource does not exist
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[4,29]
> > > > > > package org.eclipse.ui.plugin does not exist
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[5,26]
> > > > > > package org.osgi.framework does not exist
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[10,31]
> > > > > > cannot find symbol
> > > > > > symbol: class AbstractUIPlugin
> > > > > > public class Activator extends AbstractUIPlugin {
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[28,26]
> > > > > > cannot find symbol
> > > > > > symbol  : class BundleContext
> > > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[37,25]
> > > > > > cannot find symbol
> > > > > > symbol  : class BundleContext
> > > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[58,22]
> > > > > > cannot find symbol
> > > > > > symbol  : class ImageDescriptor
> > > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[3,32]
> > > > > > package org.eclipse.jface.action does not exist
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[4,33]
> > > > > > package org.eclipse.jface.viewers does not exist
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[5,22]
> > > > > > package org.eclipse.ui does not exist
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[6,22]
> > > > > > package org.eclipse.ui does not exist
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[7,33]
> > > > > > package org.eclipse.jface.dialogs does not exist
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[17,37]
> > > > > > cannot find symbol
> > > > > > symbol: class IWorkbenchWindowActionDelegate
> > > > > > public class SampleAction implements
> > IWorkbenchWindowActionDelegate {
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[18,16]
> > > > > > cannot find symbol
> > > > > > symbol  : class IWorkbenchWindow
> > > > > > location: class
> > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[31,24]
> > > > > > cannot find symbol
> > > > > > symbol  : class IAction
> > > > > > location: class
> > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,37]
> > > > > > cannot find symbol
> > > > > > symbol  : class IAction
> > > > > > location: class
> > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,53]
> > > > > > cannot find symbol
> > > > > > symbol  : class ISelection
> > > > > > location: class
> > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[61,25]
> > > > > > cannot find symbol
> > > > > > symbol  : class IWorkbenchWindow
> > > > > > location: class
> > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[29,16]
> > > > > > cannot find symbol
> > > > > > symbol  : variable super
> > > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[39,16]
> > > > > > cannot find symbol
> > > > > > symbol  : variable super
> > > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[59,23]
> > > > > > cannot find symbol
> > > > > > symbol  : method imageDescriptorFromPlugin(java.lang.String,
> > > > > > java.lang.String)
> > > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > > >
> > > > > >
> > > > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[32,16]
> > > > > > cannot find symbol
> > > > > > symbol  : variable MessageDialog
> > > > > > location: class
> > > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > > >
> > > > > >
> > > > > > As far as I can conclude upon it, this is because besides pom
> > > > > > dependencies there is still something like Plug in dependencies,
> > which
> > > > > > the maven is not able to comprehend.
> > > > > > I have tried the plug in long back, but faced same error. Then had
> > to
> > > > > > drop it for a while.
> > > > > > Could someone please help me out, who knows the workaround of the
> > > > > > solution for the problem.
> > > > > >
> > > > > > If I am not wrong, in one line pde plugin is not able to handle
> > the
> > > > > > plug in dependencies for the project.
> > > > > >
> > > > > >
> > > > > > Thanks in anticipation.
> > > > > >
> > > > > > Regards,
> > > > > > Amit
> > > > > >
> > > > > > On 2/12/08, amit kumar <am...@gmail.com> wrote:
> > > > > > > Hi,
> > > > > > > Could anyone please help on a good
> > document(blog/tutorial/article)
> > > > on
> > > > > > > PDE plug in, I followed
> > http://mojo.codehaus.org/pde-maven-plugin/but
> > > > > > > could not able to mavenize an already existing plug in project.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Amit
> > > > > > >
> > > > > > > On 1/4/08, amit kumar <am...@gmail.com> wrote:
> > > > > > > > But I doubt for any jar unavailable, because I am downloading
> > the
> > > > jars
> > > > > > > from
> > > > > > > > central repository.
> > > > > > > > I will email the pom.xml and stack trace.
> > > > > > > >
> > > > > > > >
> > > > > > > > On Jan 4, 2008 6:56 PM, Vikramaditya Garg <
> > > > > > Vikramaditya_Garg@infosys.com>
> > > > > > > > wrote:
> > > > > > > >
> > > > > > > > >
> > > > > > > > > Please sent the exceptions and error what you are
> > > > getting.Probable
> > > > > > > reason
> > > > > > > > > include that u may not be having some jar in your local repo
> > > > which
> > > > > > may
> > > > > > > be
> > > > > > > > > cause of the concern.
> > > > > > > > >
> > > > > > > > > Also check ur proxy settings...
> > > > > > > > >
> > > > > > > > > Thanks
> > > > > > > > > Vikramaditya Garg
> > > > > > > > > Technical Specialist
> > > > > > > > > BCM-ADGE
> > > > > > > > > Infosys Technologies Ltd.
> > > > > > > > >
> > > > > > > > > -----Original Message-----
> > > > > > > > > From: amit kumar [mailto:amit.kumar97400@gmail.com]
> > > > > > > > > Sent: Friday, January 04, 2008 6:52 PM
> > > > > > > > > To: Maven Users List
> > > > > > > > > Subject: PDE Plugin
> > > > > > > > >
> > > > > > > > > Has anyone successfully worked out with maven-pde-plugin for
> > > > > > eclipse.
> > > > > > > This
> > > > > > > > > is this eclipse plug in project that i have been trying to
> > > > build.
> > > > > > But
> > > > > > > > > maven
> > > > > > > > > is not able to resolve the plug in dependencies ( the one
> > > > defined in
> > > > > > > > > eclipse). i am trying to build it from command line.
> > > > > > > > > I followed the tutorial on codehaus but it did not work.
> > > > > > > > >
> > > > > > > > > Link I have been following
> > > > > > http://mojo.codehaus.org/pde-maven-plugin/
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Amit
> > > > > > > > >
> > > > > > > > > **************** CAUTION - Disclaimer *****************
> > > > > > > > > This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION
> > > > > > intended
> > > > > > > > > solely for the use of the addressee(s). If you are not the
> > > > intended
> > > > > > > > > recipient, please notify the sender by e-mail and delete the
> > > > > > original
> > > > > > > > > message. Further, you are not to copy, disclose, or
> > distribute
> > > > this
> > > > > > > e-mail
> > > > > > > > > or its contents to any other person and any such actions are
> > > > > > unlawful.
> > > > > > > > This
> > > > > > > > > e-mail may contain viruses. Infosys has taken every
> > reasonable
> > > > > > > precaution
> > > > > > > > to
> > > > > > > > > minimize this risk, but is not liable for any damage you may
> > > > sustain
> > > > > > as
> > > > > > > a
> > > > > > > > > result of any virus in this e-mail. You should carry out
> > your
> > > > own
> > > > > > virus
> > > > > > > > > checks before opening the e-mail or attachment. Infosys
> > reserves
> > > > the
> > > > > > > right
> > > > > > > > > to monitor and review the content of all messages sent to or
> > > > from
> > > > > > this
> > > > > > > > > e-mail address. Messages sent to or from this e-mail address
> > may
> > > > be
> > > > > > > stored
> > > > > > > > > on the Infosys e-mail system.
> > > > > > > > > ***INFOSYS******** End of Disclaimer ********INFOSYS***
> > > > > > > > >
> > > > > > > > >
> > > > > >
> > ---------------------------------------------------------------------
> > > > > > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > > > > > > For additional commands, e-mail: users-help@maven.apache.org
> > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > > > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > For additional commands, e-mail: users-help@maven.apache.org
> > > >
> > > >
> > >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: PDE Plugin

Posted by amit kumar <am...@gmail.com>.
Hi!
I am trying to use maven-pde-plugin but without any success.
When I do mvn install to a plug in project, maven-pde-plugin is not able to
resolve the pom.xml's dependencies.
I am unable to locate any relevant document over net.

Could someone please help me? It has been continuously 2nd day when I am
stuck with it.

The build.xml that maven-pde-plugin is generating doesn't have the pom.xml's
dependenies in the classpath items. It has only the Plugin dependenies.

Is there any workaround for the same?

As linked to by Dan I tried
http://mojo.codehaus.org/pde-maven-plugin/examples/m2eclipse.html this as
well. Any plugin with only plugin dependencies is working fine, but as soon
as I describe dependencies in pom.xml compilation errors start coming owing
to the non availability of the dependencies in the jar file.


Many thanks in anticipation.

Regards,


On Feb 13, 2008 2:48 PM, Dan Tran <da...@gmail.com> wrote:

> IT = integration test
>
> try this http://mojo.codehaus.org/pde-maven-plugin/examples/m2eclipse.html
>
> On Feb 13, 2008 12:54 AM, amit kumar <am...@gmail.com> wrote:
> > Pardon me Dan, but I did not get it? IT tests?
> >
> >
> > On Feb 13, 2008 1:27 PM, Dan Tran <da...@gmail.com> wrote:
> >
> > > are you able to try other IT tests?
> > >
> > > On Feb 12, 2008 11:17 PM, amit kumar <am...@gmail.com>
> wrote:
> > > > Hi,
> > > > No one has any idea of the problem? I am still awfully stuck with
> PDE
> > > plug
> > > > in and not able to build eclipse plugin projects using it. Could
> someone
> > > > please help?
> > > > Any aware of any helpful content regarding the same?
> > > >
> > > >
> > > > Please.
> > > >
> > > > Regards,
> > > > Amit
> > > >
> > > >
> > > > On Feb 12, 2008 11:09 AM, amit kumar <am...@gmail.com>
> wrote:
> > > >
> > > > > While following the tutorial at pde-maven-plugin page. When I
> tried to
> > > > > run "mvn install" I am getting the following errors:
> > > > >
> > > > > [ERROR] BUILD ERROR
> > > > > [INFO]
> > > > >
> > >
> ------------------------------------------------------------------------
> > > > > [INFO] Compilation failure
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[3,34]
> > > > > package org.eclipse.jface.resource does not exist
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[4,29]
> > > > > package org.eclipse.ui.plugin does not exist
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[5,26]
> > > > > package org.osgi.framework does not exist
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[10,31]
> > > > > cannot find symbol
> > > > > symbol: class AbstractUIPlugin
> > > > > public class Activator extends AbstractUIPlugin {
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[28,26]
> > > > > cannot find symbol
> > > > > symbol  : class BundleContext
> > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[37,25]
> > > > > cannot find symbol
> > > > > symbol  : class BundleContext
> > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[58,22]
> > > > > cannot find symbol
> > > > > symbol  : class ImageDescriptor
> > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[3,32]
> > > > > package org.eclipse.jface.action does not exist
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[4,33]
> > > > > package org.eclipse.jface.viewers does not exist
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[5,22]
> > > > > package org.eclipse.ui does not exist
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[6,22]
> > > > > package org.eclipse.ui does not exist
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[7,33]
> > > > > package org.eclipse.jface.dialogs does not exist
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[17,37]
> > > > > cannot find symbol
> > > > > symbol: class IWorkbenchWindowActionDelegate
> > > > > public class SampleAction implements
> IWorkbenchWindowActionDelegate {
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[18,16]
> > > > > cannot find symbol
> > > > > symbol  : class IWorkbenchWindow
> > > > > location: class
> > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[31,24]
> > > > > cannot find symbol
> > > > > symbol  : class IAction
> > > > > location: class
> > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,37]
> > > > > cannot find symbol
> > > > > symbol  : class IAction
> > > > > location: class
> > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,53]
> > > > > cannot find symbol
> > > > > symbol  : class ISelection
> > > > > location: class
> > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[61,25]
> > > > > cannot find symbol
> > > > > symbol  : class IWorkbenchWindow
> > > > > location: class
> > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[29,16]
> > > > > cannot find symbol
> > > > > symbol  : variable super
> > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[39,16]
> > > > > cannot find symbol
> > > > > symbol  : variable super
> > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[59,23]
> > > > > cannot find symbol
> > > > > symbol  : method imageDescriptorFromPlugin(java.lang.String,
> > > > > java.lang.String)
> > > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > > >
> > > > >
> > > > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[32,16]
> > > > > cannot find symbol
> > > > > symbol  : variable MessageDialog
> > > > > location: class
> > > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > > >
> > > > >
> > > > > As far as I can conclude upon it, this is because besides pom
> > > > > dependencies there is still something like Plug in dependencies,
> which
> > > > > the maven is not able to comprehend.
> > > > > I have tried the plug in long back, but faced same error. Then had
> to
> > > > > drop it for a while.
> > > > > Could someone please help me out, who knows the workaround of the
> > > > > solution for the problem.
> > > > >
> > > > > If I am not wrong, in one line pde plugin is not able to handle
> the
> > > > > plug in dependencies for the project.
> > > > >
> > > > >
> > > > > Thanks in anticipation.
> > > > >
> > > > > Regards,
> > > > > Amit
> > > > >
> > > > > On 2/12/08, amit kumar <am...@gmail.com> wrote:
> > > > > > Hi,
> > > > > > Could anyone please help on a good
> document(blog/tutorial/article)
> > > on
> > > > > > PDE plug in, I followed
> http://mojo.codehaus.org/pde-maven-plugin/but
> > > > > > could not able to mavenize an already existing plug in project.
> > > > > >
> > > > > > Regards,
> > > > > > Amit
> > > > > >
> > > > > > On 1/4/08, amit kumar <am...@gmail.com> wrote:
> > > > > > > But I doubt for any jar unavailable, because I am downloading
> the
> > > jars
> > > > > > from
> > > > > > > central repository.
> > > > > > > I will email the pom.xml and stack trace.
> > > > > > >
> > > > > > >
> > > > > > > On Jan 4, 2008 6:56 PM, Vikramaditya Garg <
> > > > > Vikramaditya_Garg@infosys.com>
> > > > > > > wrote:
> > > > > > >
> > > > > > > >
> > > > > > > > Please sent the exceptions and error what you are
> > > getting.Probable
> > > > > > reason
> > > > > > > > include that u may not be having some jar in your local repo
> > > which
> > > > > may
> > > > > > be
> > > > > > > > cause of the concern.
> > > > > > > >
> > > > > > > > Also check ur proxy settings...
> > > > > > > >
> > > > > > > > Thanks
> > > > > > > > Vikramaditya Garg
> > > > > > > > Technical Specialist
> > > > > > > > BCM-ADGE
> > > > > > > > Infosys Technologies Ltd.
> > > > > > > >
> > > > > > > > -----Original Message-----
> > > > > > > > From: amit kumar [mailto:amit.kumar97400@gmail.com]
> > > > > > > > Sent: Friday, January 04, 2008 6:52 PM
> > > > > > > > To: Maven Users List
> > > > > > > > Subject: PDE Plugin
> > > > > > > >
> > > > > > > > Has anyone successfully worked out with maven-pde-plugin for
> > > > > eclipse.
> > > > > > This
> > > > > > > > is this eclipse plug in project that i have been trying to
> > > build.
> > > > > But
> > > > > > > > maven
> > > > > > > > is not able to resolve the plug in dependencies ( the one
> > > defined in
> > > > > > > > eclipse). i am trying to build it from command line.
> > > > > > > > I followed the tutorial on codehaus but it did not work.
> > > > > > > >
> > > > > > > > Link I have been following
> > > > > http://mojo.codehaus.org/pde-maven-plugin/
> > > > > > > >
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Amit
> > > > > > > >
> > > > > > > > **************** CAUTION - Disclaimer *****************
> > > > > > > > This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION
> > > > > intended
> > > > > > > > solely for the use of the addressee(s). If you are not the
> > > intended
> > > > > > > > recipient, please notify the sender by e-mail and delete the
> > > > > original
> > > > > > > > message. Further, you are not to copy, disclose, or
> distribute
> > > this
> > > > > > e-mail
> > > > > > > > or its contents to any other person and any such actions are
> > > > > unlawful.
> > > > > > > This
> > > > > > > > e-mail may contain viruses. Infosys has taken every
> reasonable
> > > > > > precaution
> > > > > > > to
> > > > > > > > minimize this risk, but is not liable for any damage you may
> > > sustain
> > > > > as
> > > > > > a
> > > > > > > > result of any virus in this e-mail. You should carry out
> your
> > > own
> > > > > virus
> > > > > > > > checks before opening the e-mail or attachment. Infosys
> reserves
> > > the
> > > > > > right
> > > > > > > > to monitor and review the content of all messages sent to or
> > > from
> > > > > this
> > > > > > > > e-mail address. Messages sent to or from this e-mail address
> may
> > > be
> > > > > > stored
> > > > > > > > on the Infosys e-mail system.
> > > > > > > > ***INFOSYS******** End of Disclaimer ********INFOSYS***
> > > > > > > >
> > > > > > > >
> > > > >
> ---------------------------------------------------------------------
> > > > > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > > > > > For additional commands, e-mail: users-help@maven.apache.org
> > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: users-help@maven.apache.org
> > >
> > >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: PDE Plugin

Posted by Dan Tran <da...@gmail.com>.
IT = integration test

try this http://mojo.codehaus.org/pde-maven-plugin/examples/m2eclipse.html

On Feb 13, 2008 12:54 AM, amit kumar <am...@gmail.com> wrote:
> Pardon me Dan, but I did not get it? IT tests?
>
>
> On Feb 13, 2008 1:27 PM, Dan Tran <da...@gmail.com> wrote:
>
> > are you able to try other IT tests?
> >
> > On Feb 12, 2008 11:17 PM, amit kumar <am...@gmail.com> wrote:
> > > Hi,
> > > No one has any idea of the problem? I am still awfully stuck with PDE
> > plug
> > > in and not able to build eclipse plugin projects using it. Could someone
> > > please help?
> > > Any aware of any helpful content regarding the same?
> > >
> > >
> > > Please.
> > >
> > > Regards,
> > > Amit
> > >
> > >
> > > On Feb 12, 2008 11:09 AM, amit kumar <am...@gmail.com> wrote:
> > >
> > > > While following the tutorial at pde-maven-plugin page. When I tried to
> > > > run "mvn install" I am getting the following errors:
> > > >
> > > > [ERROR] BUILD ERROR
> > > > [INFO]
> > > >
> > ------------------------------------------------------------------------
> > > > [INFO] Compilation failure
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[3,34]
> > > > package org.eclipse.jface.resource does not exist
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[4,29]
> > > > package org.eclipse.ui.plugin does not exist
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[5,26]
> > > > package org.osgi.framework does not exist
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[10,31]
> > > > cannot find symbol
> > > > symbol: class AbstractUIPlugin
> > > > public class Activator extends AbstractUIPlugin {
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[28,26]
> > > > cannot find symbol
> > > > symbol  : class BundleContext
> > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[37,25]
> > > > cannot find symbol
> > > > symbol  : class BundleContext
> > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[58,22]
> > > > cannot find symbol
> > > > symbol  : class ImageDescriptor
> > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[3,32]
> > > > package org.eclipse.jface.action does not exist
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[4,33]
> > > > package org.eclipse.jface.viewers does not exist
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[5,22]
> > > > package org.eclipse.ui does not exist
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[6,22]
> > > > package org.eclipse.ui does not exist
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[7,33]
> > > > package org.eclipse.jface.dialogs does not exist
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[17,37]
> > > > cannot find symbol
> > > > symbol: class IWorkbenchWindowActionDelegate
> > > > public class SampleAction implements IWorkbenchWindowActionDelegate {
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[18,16]
> > > > cannot find symbol
> > > > symbol  : class IWorkbenchWindow
> > > > location: class
> > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[31,24]
> > > > cannot find symbol
> > > > symbol  : class IAction
> > > > location: class
> > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,37]
> > > > cannot find symbol
> > > > symbol  : class IAction
> > > > location: class
> > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,53]
> > > > cannot find symbol
> > > > symbol  : class ISelection
> > > > location: class
> > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[61,25]
> > > > cannot find symbol
> > > > symbol  : class IWorkbenchWindow
> > > > location: class
> > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[29,16]
> > > > cannot find symbol
> > > > symbol  : variable super
> > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[39,16]
> > > > cannot find symbol
> > > > symbol  : variable super
> > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[59,23]
> > > > cannot find symbol
> > > > symbol  : method imageDescriptorFromPlugin(java.lang.String,
> > > > java.lang.String)
> > > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > > >
> > > >
> > > >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[32,16]
> > > > cannot find symbol
> > > > symbol  : variable MessageDialog
> > > > location: class
> > test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > > >
> > > >
> > > > As far as I can conclude upon it, this is because besides pom
> > > > dependencies there is still something like Plug in dependencies, which
> > > > the maven is not able to comprehend.
> > > > I have tried the plug in long back, but faced same error. Then had to
> > > > drop it for a while.
> > > > Could someone please help me out, who knows the workaround of the
> > > > solution for the problem.
> > > >
> > > > If I am not wrong, in one line pde plugin is not able to handle the
> > > > plug in dependencies for the project.
> > > >
> > > >
> > > > Thanks in anticipation.
> > > >
> > > > Regards,
> > > > Amit
> > > >
> > > > On 2/12/08, amit kumar <am...@gmail.com> wrote:
> > > > > Hi,
> > > > > Could anyone please help on a good document(blog/tutorial/article)
> > on
> > > > > PDE plug in, I followed http://mojo.codehaus.org/pde-maven-plugin/but
> > > > > could not able to mavenize an already existing plug in project.
> > > > >
> > > > > Regards,
> > > > > Amit
> > > > >
> > > > > On 1/4/08, amit kumar <am...@gmail.com> wrote:
> > > > > > But I doubt for any jar unavailable, because I am downloading the
> > jars
> > > > > from
> > > > > > central repository.
> > > > > > I will email the pom.xml and stack trace.
> > > > > >
> > > > > >
> > > > > > On Jan 4, 2008 6:56 PM, Vikramaditya Garg <
> > > > Vikramaditya_Garg@infosys.com>
> > > > > > wrote:
> > > > > >
> > > > > > >
> > > > > > > Please sent the exceptions and error what you are
> > getting.Probable
> > > > > reason
> > > > > > > include that u may not be having some jar in your local repo
> > which
> > > > may
> > > > > be
> > > > > > > cause of the concern.
> > > > > > >
> > > > > > > Also check ur proxy settings...
> > > > > > >
> > > > > > > Thanks
> > > > > > > Vikramaditya Garg
> > > > > > > Technical Specialist
> > > > > > > BCM-ADGE
> > > > > > > Infosys Technologies Ltd.
> > > > > > >
> > > > > > > -----Original Message-----
> > > > > > > From: amit kumar [mailto:amit.kumar97400@gmail.com]
> > > > > > > Sent: Friday, January 04, 2008 6:52 PM
> > > > > > > To: Maven Users List
> > > > > > > Subject: PDE Plugin
> > > > > > >
> > > > > > > Has anyone successfully worked out with maven-pde-plugin for
> > > > eclipse.
> > > > > This
> > > > > > > is this eclipse plug in project that i have been trying to
> > build.
> > > > But
> > > > > > > maven
> > > > > > > is not able to resolve the plug in dependencies ( the one
> > defined in
> > > > > > > eclipse). i am trying to build it from command line.
> > > > > > > I followed the tutorial on codehaus but it did not work.
> > > > > > >
> > > > > > > Link I have been following
> > > > http://mojo.codehaus.org/pde-maven-plugin/
> > > > > > >
> > > > > > >
> > > > > > > Regards,
> > > > > > > Amit
> > > > > > >
> > > > > > > **************** CAUTION - Disclaimer *****************
> > > > > > > This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION
> > > > intended
> > > > > > > solely for the use of the addressee(s). If you are not the
> > intended
> > > > > > > recipient, please notify the sender by e-mail and delete the
> > > > original
> > > > > > > message. Further, you are not to copy, disclose, or distribute
> > this
> > > > > e-mail
> > > > > > > or its contents to any other person and any such actions are
> > > > unlawful.
> > > > > > This
> > > > > > > e-mail may contain viruses. Infosys has taken every reasonable
> > > > > precaution
> > > > > > to
> > > > > > > minimize this risk, but is not liable for any damage you may
> > sustain
> > > > as
> > > > > a
> > > > > > > result of any virus in this e-mail. You should carry out your
> > own
> > > > virus
> > > > > > > checks before opening the e-mail or attachment. Infosys reserves
> > the
> > > > > right
> > > > > > > to monitor and review the content of all messages sent to or
> > from
> > > > this
> > > > > > > e-mail address. Messages sent to or from this e-mail address may
> > be
> > > > > stored
> > > > > > > on the Infosys e-mail system.
> > > > > > > ***INFOSYS******** End of Disclaimer ********INFOSYS***
> > > > > > >
> > > > > > >
> > > > ---------------------------------------------------------------------
> > > > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > > > > For additional commands, e-mail: users-help@maven.apache.org
> > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: PDE Plugin

Posted by amit kumar <am...@gmail.com>.
Pardon me Dan, but I did not get it? IT tests?

On Feb 13, 2008 1:27 PM, Dan Tran <da...@gmail.com> wrote:

> are you able to try other IT tests?
>
> On Feb 12, 2008 11:17 PM, amit kumar <am...@gmail.com> wrote:
> > Hi,
> > No one has any idea of the problem? I am still awfully stuck with PDE
> plug
> > in and not able to build eclipse plugin projects using it. Could someone
> > please help?
> > Any aware of any helpful content regarding the same?
> >
> >
> > Please.
> >
> > Regards,
> > Amit
> >
> >
> > On Feb 12, 2008 11:09 AM, amit kumar <am...@gmail.com> wrote:
> >
> > > While following the tutorial at pde-maven-plugin page. When I tried to
> > > run "mvn install" I am getting the following errors:
> > >
> > > [ERROR] BUILD ERROR
> > > [INFO]
> > >
> ------------------------------------------------------------------------
> > > [INFO] Compilation failure
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[3,34]
> > > package org.eclipse.jface.resource does not exist
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[4,29]
> > > package org.eclipse.ui.plugin does not exist
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[5,26]
> > > package org.osgi.framework does not exist
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[10,31]
> > > cannot find symbol
> > > symbol: class AbstractUIPlugin
> > > public class Activator extends AbstractUIPlugin {
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[28,26]
> > > cannot find symbol
> > > symbol  : class BundleContext
> > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[37,25]
> > > cannot find symbol
> > > symbol  : class BundleContext
> > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[58,22]
> > > cannot find symbol
> > > symbol  : class ImageDescriptor
> > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[3,32]
> > > package org.eclipse.jface.action does not exist
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[4,33]
> > > package org.eclipse.jface.viewers does not exist
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[5,22]
> > > package org.eclipse.ui does not exist
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[6,22]
> > > package org.eclipse.ui does not exist
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[7,33]
> > > package org.eclipse.jface.dialogs does not exist
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[17,37]
> > > cannot find symbol
> > > symbol: class IWorkbenchWindowActionDelegate
> > > public class SampleAction implements IWorkbenchWindowActionDelegate {
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[18,16]
> > > cannot find symbol
> > > symbol  : class IWorkbenchWindow
> > > location: class
> test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[31,24]
> > > cannot find symbol
> > > symbol  : class IAction
> > > location: class
> test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,37]
> > > cannot find symbol
> > > symbol  : class IAction
> > > location: class
> test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,53]
> > > cannot find symbol
> > > symbol  : class ISelection
> > > location: class
> test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[61,25]
> > > cannot find symbol
> > > symbol  : class IWorkbenchWindow
> > > location: class
> test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[29,16]
> > > cannot find symbol
> > > symbol  : variable super
> > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[39,16]
> > > cannot find symbol
> > > symbol  : variable super
> > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[59,23]
> > > cannot find symbol
> > > symbol  : method imageDescriptorFromPlugin(java.lang.String,
> > > java.lang.String)
> > > location: class test.pde_maven_plugin.simple_plugin.Activator
> > >
> > >
> > >
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[32,16]
> > > cannot find symbol
> > > symbol  : variable MessageDialog
> > > location: class
> test.pde_maven_plugin.simple_plugin.actions.SampleAction
> > >
> > >
> > > As far as I can conclude upon it, this is because besides pom
> > > dependencies there is still something like Plug in dependencies, which
> > > the maven is not able to comprehend.
> > > I have tried the plug in long back, but faced same error. Then had to
> > > drop it for a while.
> > > Could someone please help me out, who knows the workaround of the
> > > solution for the problem.
> > >
> > > If I am not wrong, in one line pde plugin is not able to handle the
> > > plug in dependencies for the project.
> > >
> > >
> > > Thanks in anticipation.
> > >
> > > Regards,
> > > Amit
> > >
> > > On 2/12/08, amit kumar <am...@gmail.com> wrote:
> > > > Hi,
> > > > Could anyone please help on a good document(blog/tutorial/article)
> on
> > > > PDE plug in, I followed http://mojo.codehaus.org/pde-maven-plugin/but
> > > > could not able to mavenize an already existing plug in project.
> > > >
> > > > Regards,
> > > > Amit
> > > >
> > > > On 1/4/08, amit kumar <am...@gmail.com> wrote:
> > > > > But I doubt for any jar unavailable, because I am downloading the
> jars
> > > > from
> > > > > central repository.
> > > > > I will email the pom.xml and stack trace.
> > > > >
> > > > >
> > > > > On Jan 4, 2008 6:56 PM, Vikramaditya Garg <
> > > Vikramaditya_Garg@infosys.com>
> > > > > wrote:
> > > > >
> > > > > >
> > > > > > Please sent the exceptions and error what you are
> getting.Probable
> > > > reason
> > > > > > include that u may not be having some jar in your local repo
> which
> > > may
> > > > be
> > > > > > cause of the concern.
> > > > > >
> > > > > > Also check ur proxy settings...
> > > > > >
> > > > > > Thanks
> > > > > > Vikramaditya Garg
> > > > > > Technical Specialist
> > > > > > BCM-ADGE
> > > > > > Infosys Technologies Ltd.
> > > > > >
> > > > > > -----Original Message-----
> > > > > > From: amit kumar [mailto:amit.kumar97400@gmail.com]
> > > > > > Sent: Friday, January 04, 2008 6:52 PM
> > > > > > To: Maven Users List
> > > > > > Subject: PDE Plugin
> > > > > >
> > > > > > Has anyone successfully worked out with maven-pde-plugin for
> > > eclipse.
> > > > This
> > > > > > is this eclipse plug in project that i have been trying to
> build.
> > > But
> > > > > > maven
> > > > > > is not able to resolve the plug in dependencies ( the one
> defined in
> > > > > > eclipse). i am trying to build it from command line.
> > > > > > I followed the tutorial on codehaus but it did not work.
> > > > > >
> > > > > > Link I have been following
> > > http://mojo.codehaus.org/pde-maven-plugin/
> > > > > >
> > > > > >
> > > > > > Regards,
> > > > > > Amit
> > > > > >
> > > > > > **************** CAUTION - Disclaimer *****************
> > > > > > This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION
> > > intended
> > > > > > solely for the use of the addressee(s). If you are not the
> intended
> > > > > > recipient, please notify the sender by e-mail and delete the
> > > original
> > > > > > message. Further, you are not to copy, disclose, or distribute
> this
> > > > e-mail
> > > > > > or its contents to any other person and any such actions are
> > > unlawful.
> > > > > This
> > > > > > e-mail may contain viruses. Infosys has taken every reasonable
> > > > precaution
> > > > > to
> > > > > > minimize this risk, but is not liable for any damage you may
> sustain
> > > as
> > > > a
> > > > > > result of any virus in this e-mail. You should carry out your
> own
> > > virus
> > > > > > checks before opening the e-mail or attachment. Infosys reserves
> the
> > > > right
> > > > > > to monitor and review the content of all messages sent to or
> from
> > > this
> > > > > > e-mail address. Messages sent to or from this e-mail address may
> be
> > > > stored
> > > > > > on the Infosys e-mail system.
> > > > > > ***INFOSYS******** End of Disclaimer ********INFOSYS***
> > > > > >
> > > > > >
> > > ---------------------------------------------------------------------
> > > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > > > For additional commands, e-mail: users-help@maven.apache.org
> > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: PDE Plugin

Posted by Dan Tran <da...@gmail.com>.
are you able to try other IT tests?

On Feb 12, 2008 11:17 PM, amit kumar <am...@gmail.com> wrote:
> Hi,
> No one has any idea of the problem? I am still awfully stuck with PDE plug
> in and not able to build eclipse plugin projects using it. Could someone
> please help?
> Any aware of any helpful content regarding the same?
>
>
> Please.
>
> Regards,
> Amit
>
>
> On Feb 12, 2008 11:09 AM, amit kumar <am...@gmail.com> wrote:
>
> > While following the tutorial at pde-maven-plugin page. When I tried to
> > run "mvn install" I am getting the following errors:
> >
> > [ERROR] BUILD ERROR
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] Compilation failure
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[3,34]
> > package org.eclipse.jface.resource does not exist
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[4,29]
> > package org.eclipse.ui.plugin does not exist
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[5,26]
> > package org.osgi.framework does not exist
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[10,31]
> > cannot find symbol
> > symbol: class AbstractUIPlugin
> > public class Activator extends AbstractUIPlugin {
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[28,26]
> > cannot find symbol
> > symbol  : class BundleContext
> > location: class test.pde_maven_plugin.simple_plugin.Activator
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[37,25]
> > cannot find symbol
> > symbol  : class BundleContext
> > location: class test.pde_maven_plugin.simple_plugin.Activator
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[58,22]
> > cannot find symbol
> > symbol  : class ImageDescriptor
> > location: class test.pde_maven_plugin.simple_plugin.Activator
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[3,32]
> > package org.eclipse.jface.action does not exist
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[4,33]
> > package org.eclipse.jface.viewers does not exist
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[5,22]
> > package org.eclipse.ui does not exist
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[6,22]
> > package org.eclipse.ui does not exist
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[7,33]
> > package org.eclipse.jface.dialogs does not exist
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[17,37]
> > cannot find symbol
> > symbol: class IWorkbenchWindowActionDelegate
> > public class SampleAction implements IWorkbenchWindowActionDelegate {
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[18,16]
> > cannot find symbol
> > symbol  : class IWorkbenchWindow
> > location: class test.pde_maven_plugin.simple_plugin.actions.SampleAction
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[31,24]
> > cannot find symbol
> > symbol  : class IAction
> > location: class test.pde_maven_plugin.simple_plugin.actions.SampleAction
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,37]
> > cannot find symbol
> > symbol  : class IAction
> > location: class test.pde_maven_plugin.simple_plugin.actions.SampleAction
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,53]
> > cannot find symbol
> > symbol  : class ISelection
> > location: class test.pde_maven_plugin.simple_plugin.actions.SampleAction
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[61,25]
> > cannot find symbol
> > symbol  : class IWorkbenchWindow
> > location: class test.pde_maven_plugin.simple_plugin.actions.SampleAction
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[29,16]
> > cannot find symbol
> > symbol  : variable super
> > location: class test.pde_maven_plugin.simple_plugin.Activator
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[39,16]
> > cannot find symbol
> > symbol  : variable super
> > location: class test.pde_maven_plugin.simple_plugin.Activator
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[59,23]
> > cannot find symbol
> > symbol  : method imageDescriptorFromPlugin(java.lang.String,
> > java.lang.String)
> > location: class test.pde_maven_plugin.simple_plugin.Activator
> >
> >
> > E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[32,16]
> > cannot find symbol
> > symbol  : variable MessageDialog
> > location: class test.pde_maven_plugin.simple_plugin.actions.SampleAction
> >
> >
> > As far as I can conclude upon it, this is because besides pom
> > dependencies there is still something like Plug in dependencies, which
> > the maven is not able to comprehend.
> > I have tried the plug in long back, but faced same error. Then had to
> > drop it for a while.
> > Could someone please help me out, who knows the workaround of the
> > solution for the problem.
> >
> > If I am not wrong, in one line pde plugin is not able to handle the
> > plug in dependencies for the project.
> >
> >
> > Thanks in anticipation.
> >
> > Regards,
> > Amit
> >
> > On 2/12/08, amit kumar <am...@gmail.com> wrote:
> > > Hi,
> > > Could anyone please help on a good document(blog/tutorial/article) on
> > > PDE plug in, I followed http://mojo.codehaus.org/pde-maven-plugin/ but
> > > could not able to mavenize an already existing plug in project.
> > >
> > > Regards,
> > > Amit
> > >
> > > On 1/4/08, amit kumar <am...@gmail.com> wrote:
> > > > But I doubt for any jar unavailable, because I am downloading the jars
> > > from
> > > > central repository.
> > > > I will email the pom.xml and stack trace.
> > > >
> > > >
> > > > On Jan 4, 2008 6:56 PM, Vikramaditya Garg <
> > Vikramaditya_Garg@infosys.com>
> > > > wrote:
> > > >
> > > > >
> > > > > Please sent the exceptions and error what you are getting.Probable
> > > reason
> > > > > include that u may not be having some jar in your local repo which
> > may
> > > be
> > > > > cause of the concern.
> > > > >
> > > > > Also check ur proxy settings...
> > > > >
> > > > > Thanks
> > > > > Vikramaditya Garg
> > > > > Technical Specialist
> > > > > BCM-ADGE
> > > > > Infosys Technologies Ltd.
> > > > >
> > > > > -----Original Message-----
> > > > > From: amit kumar [mailto:amit.kumar97400@gmail.com]
> > > > > Sent: Friday, January 04, 2008 6:52 PM
> > > > > To: Maven Users List
> > > > > Subject: PDE Plugin
> > > > >
> > > > > Has anyone successfully worked out with maven-pde-plugin for
> > eclipse.
> > > This
> > > > > is this eclipse plug in project that i have been trying to build.
> > But
> > > > > maven
> > > > > is not able to resolve the plug in dependencies ( the one defined in
> > > > > eclipse). i am trying to build it from command line.
> > > > > I followed the tutorial on codehaus but it did not work.
> > > > >
> > > > > Link I have been following
> > http://mojo.codehaus.org/pde-maven-plugin/
> > > > >
> > > > >
> > > > > Regards,
> > > > > Amit
> > > > >
> > > > > **************** CAUTION - Disclaimer *****************
> > > > > This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION
> > intended
> > > > > solely for the use of the addressee(s). If you are not the intended
> > > > > recipient, please notify the sender by e-mail and delete the
> > original
> > > > > message. Further, you are not to copy, disclose, or distribute this
> > > e-mail
> > > > > or its contents to any other person and any such actions are
> > unlawful.
> > > > This
> > > > > e-mail may contain viruses. Infosys has taken every reasonable
> > > precaution
> > > > to
> > > > > minimize this risk, but is not liable for any damage you may sustain
> > as
> > > a
> > > > > result of any virus in this e-mail. You should carry out your own
> > virus
> > > > > checks before opening the e-mail or attachment. Infosys reserves the
> > > right
> > > > > to monitor and review the content of all messages sent to or from
> > this
> > > > > e-mail address. Messages sent to or from this e-mail address may be
> > > stored
> > > > > on the Infosys e-mail system.
> > > > > ***INFOSYS******** End of Disclaimer ********INFOSYS***
> > > > >
> > > > >
> > ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > > For additional commands, e-mail: users-help@maven.apache.org
> > > > >
> > > > >
> > > >
> > >
> >
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: PDE Plugin

Posted by amit kumar <am...@gmail.com>.
Hi,
No one has any idea of the problem? I am still awfully stuck with PDE plug
in and not able to build eclipse plugin projects using it. Could someone
please help?
Any aware of any helpful content regarding the same?


Please.

Regards,
Amit

On Feb 12, 2008 11:09 AM, amit kumar <am...@gmail.com> wrote:

> While following the tutorial at pde-maven-plugin page. When I tried to
> run "mvn install" I am getting the following errors:
>
> [ERROR] BUILD ERROR
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Compilation failure
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[3,34]
> package org.eclipse.jface.resource does not exist
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[4,29]
> package org.eclipse.ui.plugin does not exist
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[5,26]
> package org.osgi.framework does not exist
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[10,31]
> cannot find symbol
> symbol: class AbstractUIPlugin
> public class Activator extends AbstractUIPlugin {
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[28,26]
> cannot find symbol
> symbol  : class BundleContext
> location: class test.pde_maven_plugin.simple_plugin.Activator
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[37,25]
> cannot find symbol
> symbol  : class BundleContext
> location: class test.pde_maven_plugin.simple_plugin.Activator
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[58,22]
> cannot find symbol
> symbol  : class ImageDescriptor
> location: class test.pde_maven_plugin.simple_plugin.Activator
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[3,32]
> package org.eclipse.jface.action does not exist
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[4,33]
> package org.eclipse.jface.viewers does not exist
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[5,22]
> package org.eclipse.ui does not exist
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[6,22]
> package org.eclipse.ui does not exist
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[7,33]
> package org.eclipse.jface.dialogs does not exist
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[17,37]
> cannot find symbol
> symbol: class IWorkbenchWindowActionDelegate
> public class SampleAction implements IWorkbenchWindowActionDelegate {
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[18,16]
> cannot find symbol
> symbol  : class IWorkbenchWindow
> location: class test.pde_maven_plugin.simple_plugin.actions.SampleAction
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[31,24]
> cannot find symbol
> symbol  : class IAction
> location: class test.pde_maven_plugin.simple_plugin.actions.SampleAction
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,37]
> cannot find symbol
> symbol  : class IAction
> location: class test.pde_maven_plugin.simple_plugin.actions.SampleAction
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,53]
> cannot find symbol
> symbol  : class ISelection
> location: class test.pde_maven_plugin.simple_plugin.actions.SampleAction
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[61,25]
> cannot find symbol
> symbol  : class IWorkbenchWindow
> location: class test.pde_maven_plugin.simple_plugin.actions.SampleAction
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[29,16]
> cannot find symbol
> symbol  : variable super
> location: class test.pde_maven_plugin.simple_plugin.Activator
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[39,16]
> cannot find symbol
> symbol  : variable super
> location: class test.pde_maven_plugin.simple_plugin.Activator
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[59,23]
> cannot find symbol
> symbol  : method imageDescriptorFromPlugin(java.lang.String,
> java.lang.String)
> location: class test.pde_maven_plugin.simple_plugin.Activator
>
>
> E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[32,16]
> cannot find symbol
> symbol  : variable MessageDialog
> location: class test.pde_maven_plugin.simple_plugin.actions.SampleAction
>
>
> As far as I can conclude upon it, this is because besides pom
> dependencies there is still something like Plug in dependencies, which
> the maven is not able to comprehend.
> I have tried the plug in long back, but faced same error. Then had to
> drop it for a while.
> Could someone please help me out, who knows the workaround of the
> solution for the problem.
>
> If I am not wrong, in one line pde plugin is not able to handle the
> plug in dependencies for the project.
>
>
> Thanks in anticipation.
>
> Regards,
> Amit
>
> On 2/12/08, amit kumar <am...@gmail.com> wrote:
> > Hi,
> > Could anyone please help on a good document(blog/tutorial/article) on
> > PDE plug in, I followed http://mojo.codehaus.org/pde-maven-plugin/ but
> > could not able to mavenize an already existing plug in project.
> >
> > Regards,
> > Amit
> >
> > On 1/4/08, amit kumar <am...@gmail.com> wrote:
> > > But I doubt for any jar unavailable, because I am downloading the jars
> > from
> > > central repository.
> > > I will email the pom.xml and stack trace.
> > >
> > >
> > > On Jan 4, 2008 6:56 PM, Vikramaditya Garg <
> Vikramaditya_Garg@infosys.com>
> > > wrote:
> > >
> > > >
> > > > Please sent the exceptions and error what you are getting.Probable
> > reason
> > > > include that u may not be having some jar in your local repo which
> may
> > be
> > > > cause of the concern.
> > > >
> > > > Also check ur proxy settings...
> > > >
> > > > Thanks
> > > > Vikramaditya Garg
> > > > Technical Specialist
> > > > BCM-ADGE
> > > > Infosys Technologies Ltd.
> > > >
> > > > -----Original Message-----
> > > > From: amit kumar [mailto:amit.kumar97400@gmail.com]
> > > > Sent: Friday, January 04, 2008 6:52 PM
> > > > To: Maven Users List
> > > > Subject: PDE Plugin
> > > >
> > > > Has anyone successfully worked out with maven-pde-plugin for
> eclipse.
> > This
> > > > is this eclipse plug in project that i have been trying to build.
> But
> > > > maven
> > > > is not able to resolve the plug in dependencies ( the one defined in
> > > > eclipse). i am trying to build it from command line.
> > > > I followed the tutorial on codehaus but it did not work.
> > > >
> > > > Link I have been following
> http://mojo.codehaus.org/pde-maven-plugin/
> > > >
> > > >
> > > > Regards,
> > > > Amit
> > > >
> > > > **************** CAUTION - Disclaimer *****************
> > > > This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION
> intended
> > > > solely for the use of the addressee(s). If you are not the intended
> > > > recipient, please notify the sender by e-mail and delete the
> original
> > > > message. Further, you are not to copy, disclose, or distribute this
> > e-mail
> > > > or its contents to any other person and any such actions are
> unlawful.
> > > This
> > > > e-mail may contain viruses. Infosys has taken every reasonable
> > precaution
> > > to
> > > > minimize this risk, but is not liable for any damage you may sustain
> as
> > a
> > > > result of any virus in this e-mail. You should carry out your own
> virus
> > > > checks before opening the e-mail or attachment. Infosys reserves the
> > right
> > > > to monitor and review the content of all messages sent to or from
> this
> > > > e-mail address. Messages sent to or from this e-mail address may be
> > stored
> > > > on the Infosys e-mail system.
> > > > ***INFOSYS******** End of Disclaimer ********INFOSYS***
> > > >
> > > >
> ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > For additional commands, e-mail: users-help@maven.apache.org
> > > >
> > > >
> > >
> >
>

Re: PDE Plugin

Posted by amit kumar <am...@gmail.com>.
While following the tutorial at pde-maven-plugin page. When I tried to
run "mvn install" I am getting the following errors:

[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Compilation failure

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[3,34]
package org.eclipse.jface.resource does not exist

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[4,29]
package org.eclipse.ui.plugin does not exist

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[5,26]
package org.osgi.framework does not exist

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[10,31]
cannot find symbol
symbol: class AbstractUIPlugin
public class Activator extends AbstractUIPlugin {

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[28,26]
cannot find symbol
symbol  : class BundleContext
location: class test.pde_maven_plugin.simple_plugin.Activator

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[37,25]
cannot find symbol
symbol  : class BundleContext
location: class test.pde_maven_plugin.simple_plugin.Activator

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[58,22]
cannot find symbol
symbol  : class ImageDescriptor
location: class test.pde_maven_plugin.simple_plugin.Activator

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[3,32]
package org.eclipse.jface.action does not exist

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[4,33]
package org.eclipse.jface.viewers does not exist

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[5,22]
package org.eclipse.ui does not exist

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[6,22]
package org.eclipse.ui does not exist

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[7,33]
package org.eclipse.jface.dialogs does not exist

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[17,37]
cannot find symbol
symbol: class IWorkbenchWindowActionDelegate
public class SampleAction implements IWorkbenchWindowActionDelegate {

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[18,16]
cannot find symbol
symbol  : class IWorkbenchWindow
location: class test.pde_maven_plugin.simple_plugin.actions.SampleAction

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[31,24]
cannot find symbol
symbol  : class IAction
location: class test.pde_maven_plugin.simple_plugin.actions.SampleAction

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,37]
cannot find symbol
symbol  : class IAction
location: class test.pde_maven_plugin.simple_plugin.actions.SampleAction

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[45,53]
cannot find symbol
symbol  : class ISelection
location: class test.pde_maven_plugin.simple_plugin.actions.SampleAction

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[61,25]
cannot find symbol
symbol  : class IWorkbenchWindow
location: class test.pde_maven_plugin.simple_plugin.actions.SampleAction

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[29,16]
cannot find symbol
symbol  : variable super
location: class test.pde_maven_plugin.simple_plugin.Activator

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[39,16]
cannot find symbol
symbol  : variable super
location: class test.pde_maven_plugin.simple_plugin.Activator

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\Activator.java:[59,23]
cannot find symbol
symbol  : method imageDescriptorFromPlugin(java.lang.String,java.lang.String)
location: class test.pde_maven_plugin.simple_plugin.Activator

E:\Eclipse\workspace\PDE_Plugin_Tutorial\plugins\src\test\pde_maven_plugin\simple_plugin\actions\SampleAction.java:[32,16]
cannot find symbol
symbol  : variable MessageDialog
location: class test.pde_maven_plugin.simple_plugin.actions.SampleAction


As far as I can conclude upon it, this is because besides pom
dependencies there is still something like Plug in dependencies, which
the maven is not able to comprehend.
I have tried the plug in long back, but faced same error. Then had to
drop it for a while.
Could someone please help me out, who knows the workaround of the
solution for the problem.

If I am not wrong, in one line pde plugin is not able to handle the
plug in dependencies for the project.


Thanks in anticipation.

Regards,
Amit

On 2/12/08, amit kumar <am...@gmail.com> wrote:
> Hi,
> Could anyone please help on a good document(blog/tutorial/article) on
> PDE plug in, I followed http://mojo.codehaus.org/pde-maven-plugin/ but
> could not able to mavenize an already existing plug in project.
>
> Regards,
> Amit
>
> On 1/4/08, amit kumar <am...@gmail.com> wrote:
> > But I doubt for any jar unavailable, because I am downloading the jars
> from
> > central repository.
> > I will email the pom.xml and stack trace.
> >
> >
> > On Jan 4, 2008 6:56 PM, Vikramaditya Garg <Vi...@infosys.com>
> > wrote:
> >
> > >
> > > Please sent the exceptions and error what you are getting.Probable
> reason
> > > include that u may not be having some jar in your local repo which may
> be
> > > cause of the concern.
> > >
> > > Also check ur proxy settings...
> > >
> > > Thanks
> > > Vikramaditya Garg
> > > Technical Specialist
> > > BCM-ADGE
> > > Infosys Technologies Ltd.
> > >
> > > -----Original Message-----
> > > From: amit kumar [mailto:amit.kumar97400@gmail.com]
> > > Sent: Friday, January 04, 2008 6:52 PM
> > > To: Maven Users List
> > > Subject: PDE Plugin
> > >
> > > Has anyone successfully worked out with maven-pde-plugin for eclipse.
> This
> > > is this eclipse plug in project that i have been trying to build. But
> > > maven
> > > is not able to resolve the plug in dependencies ( the one defined in
> > > eclipse). i am trying to build it from command line.
> > > I followed the tutorial on codehaus but it did not work.
> > >
> > > Link I have been following http://mojo.codehaus.org/pde-maven-plugin/
> > >
> > >
> > > Regards,
> > > Amit
> > >
> > > **************** CAUTION - Disclaimer *****************
> > > This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended
> > > solely for the use of the addressee(s). If you are not the intended
> > > recipient, please notify the sender by e-mail and delete the original
> > > message. Further, you are not to copy, disclose, or distribute this
> e-mail
> > > or its contents to any other person and any such actions are unlawful.
> > This
> > > e-mail may contain viruses. Infosys has taken every reasonable
> precaution
> > to
> > > minimize this risk, but is not liable for any damage you may sustain as
> a
> > > result of any virus in this e-mail. You should carry out your own virus
> > > checks before opening the e-mail or attachment. Infosys reserves the
> right
> > > to monitor and review the content of all messages sent to or from this
> > > e-mail address. Messages sent to or from this e-mail address may be
> stored
> > > on the Infosys e-mail system.
> > > ***INFOSYS******** End of Disclaimer ********INFOSYS***
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: users-help@maven.apache.org
> > >
> > >
> >
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: PDE Plugin

Posted by amit kumar <am...@gmail.com>.
Hi,
Could anyone please help on a good document(blog/tutorial/article) on
PDE plug in, I followed http://mojo.codehaus.org/pde-maven-plugin/ but
could not able to mavenize an already existing plug in project.

Regards,
Amit

On 1/4/08, amit kumar <am...@gmail.com> wrote:
> But I doubt for any jar unavailable, because I am downloading the jars from
> central repository.
> I will email the pom.xml and stack trace.
>
>
> On Jan 4, 2008 6:56 PM, Vikramaditya Garg <Vi...@infosys.com>
> wrote:
>
> >
> > Please sent the exceptions and error what you are getting.Probable reason
> > include that u may not be having some jar in your local repo which may be
> > cause of the concern.
> >
> > Also check ur proxy settings...
> >
> > Thanks
> > Vikramaditya Garg
> > Technical Specialist
> > BCM-ADGE
> > Infosys Technologies Ltd.
> >
> > -----Original Message-----
> > From: amit kumar [mailto:amit.kumar97400@gmail.com]
> > Sent: Friday, January 04, 2008 6:52 PM
> > To: Maven Users List
> > Subject: PDE Plugin
> >
> > Has anyone successfully worked out with maven-pde-plugin for eclipse. This
> > is this eclipse plug in project that i have been trying to build. But
> > maven
> > is not able to resolve the plug in dependencies ( the one defined in
> > eclipse). i am trying to build it from command line.
> > I followed the tutorial on codehaus but it did not work.
> >
> > Link I have been following http://mojo.codehaus.org/pde-maven-plugin/
> >
> >
> > Regards,
> > Amit
> >
> > **************** CAUTION - Disclaimer *****************
> > This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended
> > solely for the use of the addressee(s). If you are not the intended
> > recipient, please notify the sender by e-mail and delete the original
> > message. Further, you are not to copy, disclose, or distribute this e-mail
> > or its contents to any other person and any such actions are unlawful.
> This
> > e-mail may contain viruses. Infosys has taken every reasonable precaution
> to
> > minimize this risk, but is not liable for any damage you may sustain as a
> > result of any virus in this e-mail. You should carry out your own virus
> > checks before opening the e-mail or attachment. Infosys reserves the right
> > to monitor and review the content of all messages sent to or from this
> > e-mail address. Messages sent to or from this e-mail address may be stored
> > on the Infosys e-mail system.
> > ***INFOSYS******** End of Disclaimer ********INFOSYS***
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: PDE Plugin

Posted by amit kumar <am...@gmail.com>.
But I doubt for any jar unavailable, because I am downloading the jars from
central repository.
I will email the pom.xml and stack trace.


On Jan 4, 2008 6:56 PM, Vikramaditya Garg <Vi...@infosys.com>
wrote:

>
> Please sent the exceptions and error what you are getting.Probable reason
> include that u may not be having some jar in your local repo which may be
> cause of the concern.
>
> Also check ur proxy settings...
>
> Thanks
> Vikramaditya Garg
> Technical Specialist
> BCM-ADGE
> Infosys Technologies Ltd.
>
> -----Original Message-----
> From: amit kumar [mailto:amit.kumar97400@gmail.com]
> Sent: Friday, January 04, 2008 6:52 PM
> To: Maven Users List
> Subject: PDE Plugin
>
> Has anyone successfully worked out with maven-pde-plugin for eclipse. This
> is this eclipse plug in project that i have been trying to build. But
> maven
> is not able to resolve the plug in dependencies ( the one defined in
> eclipse). i am trying to build it from command line.
> I followed the tutorial on codehaus but it did not work.
>
> Link I have been following http://mojo.codehaus.org/pde-maven-plugin/
>
>
> Regards,
> Amit
>
> **************** CAUTION - Disclaimer *****************
> This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended
> solely for the use of the addressee(s). If you are not the intended
> recipient, please notify the sender by e-mail and delete the original
> message. Further, you are not to copy, disclose, or distribute this e-mail
> or its contents to any other person and any such actions are unlawful. This
> e-mail may contain viruses. Infosys has taken every reasonable precaution to
> minimize this risk, but is not liable for any damage you may sustain as a
> result of any virus in this e-mail. You should carry out your own virus
> checks before opening the e-mail or attachment. Infosys reserves the right
> to monitor and review the content of all messages sent to or from this
> e-mail address. Messages sent to or from this e-mail address may be stored
> on the Infosys e-mail system.
> ***INFOSYS******** End of Disclaimer ********INFOSYS***
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

RE: PDE Plugin

Posted by Vikramaditya Garg <Vi...@infosys.com>.
Please sent the exceptions and error what you are getting.Probable reason include that u may not be having some jar in your local repo which may be cause of the concern.

Also check ur proxy settings...

Thanks
Vikramaditya Garg
Technical Specialist
BCM-ADGE
Infosys Technologies Ltd.

-----Original Message-----
From: amit kumar [mailto:amit.kumar97400@gmail.com]
Sent: Friday, January 04, 2008 6:52 PM
To: Maven Users List
Subject: PDE Plugin

Has anyone successfully worked out with maven-pde-plugin for eclipse. This
is this eclipse plug in project that i have been trying to build. But maven
is not able to resolve the plug in dependencies ( the one defined in
eclipse). i am trying to build it from command line.
I followed the tutorial on codehaus but it did not work.

Link I have been following http://mojo.codehaus.org/pde-maven-plugin/


Regards,
Amit

**************** CAUTION - Disclaimer *****************
This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended solely for the use of the addressee(s). If you are not the intended recipient, please notify the sender by e-mail and delete the original message. Further, you are not to copy, disclose, or distribute this e-mail or its contents to any other person and any such actions are unlawful. This e-mail may contain viruses. Infosys has taken every reasonable precaution to minimize this risk, but is not liable for any damage you may sustain as a result of any virus in this e-mail. You should carry out your own virus checks before opening the e-mail or attachment. Infosys reserves the right to monitor and review the content of all messages sent to or from this e-mail address. Messages sent to or from this e-mail address may be stored on the Infosys e-mail system.
***INFOSYS******** End of Disclaimer ********INFOSYS***

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org