Re: build error on strutsel

2015-07-27 Thread Curtis Rueden
Hi Hector,

> how do I find out what version of those libraries are set of code
> compatible with ?  For instance, in my old ant lib folder,  I have a
> struts and struts-el.jar.

For JARs managed in this old Ant way, the versioning is at the whim of each
particular library.

You could check the JAR manifest to see if they put the relevant version
string in there.

You could just try all available versions of the library by changing the
version of your pom.xml until it compiles successfully. You can do a
"binary version search" to find the version in O(log n) steps instead of
O(n).

You could compare file sizes of the JARs again those of known versions
(e.g., from a fresh download). But you have to be careful with the latter
because the file size may not exactly match depending on exactly how the
JAR was built. Maybe safer would be to diff the output of "jar tf" and
"javap" on all the classes?

Perhaps someone here knows a better way.

> should I load those into my own local repository ?

Almost certainly not. Depend on the correct version from Maven Central
whenever possible.

Regards,
Curtis

On Mon, Jul 27, 2015 at 10:16 AM, Magnanao, Hector 
wrote:

> Curtis,  can you elaborate on this ?  if the libraries I uploaded in my
> pom file are newer, how do I find out what version of those libraries are
> set of code compatible with ?  For instance, in my old ant lib folder,  I
> have a struts and struts-el.jar.  should I load those into my own local
> repository ?
>
> Hector
>
> -Original Message-
> From: ctrueden.w...@gmail.com [mailto:ctrueden.w...@gmail.com] On Behalf
> Of Curtis Rueden
> Sent: Friday, July 24, 2015 4:13 PM
> To: Maven Users List
> Subject: Re: build error on strutsel
>
> Hi Hector,
>
> Maybe you are depending on the wrong version of those libraries? API change
> and evolve; you have to depend on a version compatible with what was
> originally coded against.
>
> -Curtis
>
> On Fri, Jul 24, 2015 at 3:04 PM, Magnanao, Hector  >
> wrote:
>
> > Hi Curtis,
> >
> > I have these remaining errors on my compilation.  I can't figure out if
> > this is code or package errors.  Can you help me out ?
> >
> > [ERROR] COMPILATION ERROR :
> > [INFO] -
> > [ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[351,53]
> > cannot find symbol
> >   symbol:   method getName()
> >   location: class foundation.web.taglib.struts.html.FormTagEl
> > [ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[352,18]
> > cannot find symbol
> >   symbol: method setName(java.lang.String)
> > [ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[360,54]
> > cannot find symbol
> >   symbol:   method getScope()
> >   location: class foundation.web.taglib.struts.html.FormTagEl
> > [ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[361,18]
> > cannot find symbol
> >   symbol: method setScope(java.lang.String)
> > [ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[375,53]
> > cannot find symbol
> >   symbol:   method getType()
> >   location: class foundation.web.taglib.struts.html.FormTagEl
> > [ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[376,18]
> > cannot find symbol
> >   symbol: method setType(java.lang.String)
> > [ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[35,23]
> > cannot find symbol
> >   symbol:   class License
> >   location: package aspose.pdf
> > [ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[35,59]
> > cannot find symbol
> >   symbol:   class License
> >   location: package aspose.pdf
> > [INFO] 8 errors
> >
> > -Original Message-
> > From: ctrueden.w...@gmail.com [mailto:ctrueden.w...@gmail.com] On Behalf
> > Of Curtis Rueden
> > Sent: Friday, July 24, 2015 1:13 PM
> > To: Maven Users List
> > Subject: Re: build error on strutsel
> >
> > Hi Hector,
> >
> > > package com.aspose.cells does not exist
> >
> > Looks like Aspose.Cells is in its own Maven repo from that company:
> >
> >
> >
> http://www.aspose.com/blogs/aspose-products/aspose-total-product-family/archive/2

Re: build error on strutsel

2015-07-27 Thread Ron Wheeler
If you are using a Maven repo and and good IDE, it should help you find 
out what versions of the transitive dependencies are being loaded.
You may need to look at the docs for the third party libraries and your 
own libraries to see what versions are required.


Likely 
/C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:
requires a later version of the class 
foundation.web.taglib.struts.html.FormTagEl that includes the methods that your 
code is trying to use.
Maven is finding the class OK but the methods you are calling are not in that 
class.

You need to read up on foundation.web.taglib.struts.html.FormTagEl to find out 
what versions include
getName()
getScope()
setScope(java.lang.String)

The version that you have specified in your POM does not.

If you don't want to do that, you can just try the latest Struts and see 
what happens,


The person who wrote 
/com/mycompany/app/web/taglib/struts/html/FormTagEl.java should be able 
to tell you what version he/she was reading about when they decided to 
use these methods.


Ron

Not sure why you are loading
On 27/07/2015 11:16 AM, Magnanao, Hector wrote:

Curtis,  can you elaborate on this ?  if the libraries I uploaded in my pom 
file are newer, how do I find out what version of those libraries are set of 
code compatible with ?  For instance, in my old ant lib folder,  I have a 
struts and struts-el.jar.  should I load those into my own local repository ?

Hector

-Original Message-
From: ctrueden.w...@gmail.com [mailto:ctrueden.w...@gmail.com] On Behalf Of 
Curtis Rueden
Sent: Friday, July 24, 2015 4:13 PM
To: Maven Users List
Subject: Re: build error on strutsel

Hi Hector,

Maybe you are depending on the wrong version of those libraries? API change
and evolve; you have to depend on a version compatible with what was
originally coded against.

-Curtis

On Fri, Jul 24, 2015 at 3:04 PM, Magnanao, Hector 
wrote:


Hi Curtis,

I have these remaining errors on my compilation.  I can't figure out if
this is code or package errors.  Can you help me out ?

[ERROR] COMPILATION ERROR :
[INFO] -
[ERROR]
/C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[351,53]
cannot find symbol
   symbol:   method getName()
   location: class foundation.web.taglib.struts.html.FormTagEl
[ERROR]
/C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[352,18]
cannot find symbol
   symbol: method setName(java.lang.String)
[ERROR]
/C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[360,54]
cannot find symbol
   symbol:   method getScope()
   location: class foundation.web.taglib.struts.html.FormTagEl
[ERROR]
/C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[361,18]
cannot find symbol
   symbol: method setScope(java.lang.String)
[ERROR]
/C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[375,53]
cannot find symbol
   symbol:   method getType()
   location: class foundation.web.taglib.struts.html.FormTagEl
[ERROR]
/C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[376,18]
cannot find symbol
   symbol: method setType(java.lang.String)
[ERROR]
/C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[35,23]
cannot find symbol
   symbol:   class License
   location: package aspose.pdf
[ERROR]
/C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[35,59]
cannot find symbol
   symbol:   class License
   location: package aspose.pdf
[INFO] 8 errors

-Original Message-
From: ctrueden.w...@gmail.com [mailto:ctrueden.w...@gmail.com] On Behalf
Of Curtis Rueden
Sent: Friday, July 24, 2015 1:13 PM
To: Maven Users List
Subject: Re: build error on strutsel

Hi Hector,


package com.aspose.cells does not exist

Looks like Aspose.Cells is in its own Maven repo from that company:


http://www.aspose.com/blogs/aspose-products/aspose-total-product-family/archive/2014/08/12/aspose-for-maven-aspose-cloud-maven-repository.html

Found by searching Google for "com.aspose.cells maven"

Repeat these tricks for all packages you need to find.

-Curtis

On Fri, Jul 24, 2015 at 12:39 PM, Magnanao, Hector <
hector.magna...@sap.com>
wrote:


Hi Curtis,  that’s ok, I got past that error.  Now I get this one.

[ERROR] Failed to execute goal
org.apache.maven.plugins:maven-compiler-plugin:3.1:compile
(default-compile) on project foundation: Compilation failure: Compilation
failure:
[ERROR]


/C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[3,24]

package com.aspose.cells does not exist

From: ctrueden.w...@gmail.com [mailto:ctrueden.w...@gmail.com] On Behalf
Of Curtis Rueden
Sent: Friday, July 24, 2015 12:35 PM
To

RE: build error on strutsel

2015-07-27 Thread Magnanao, Hector
Curtis,  can you elaborate on this ?  if the libraries I uploaded in my pom 
file are newer, how do I find out what version of those libraries are set of 
code compatible with ?  For instance, in my old ant lib folder,  I have a 
struts and struts-el.jar.  should I load those into my own local repository ?

Hector

-Original Message-
From: ctrueden.w...@gmail.com [mailto:ctrueden.w...@gmail.com] On Behalf Of 
Curtis Rueden
Sent: Friday, July 24, 2015 4:13 PM
To: Maven Users List
Subject: Re: build error on strutsel

Hi Hector,

Maybe you are depending on the wrong version of those libraries? API change
and evolve; you have to depend on a version compatible with what was
originally coded against.

-Curtis

On Fri, Jul 24, 2015 at 3:04 PM, Magnanao, Hector 
wrote:

> Hi Curtis,
>
> I have these remaining errors on my compilation.  I can't figure out if
> this is code or package errors.  Can you help me out ?
>
> [ERROR] COMPILATION ERROR :
> [INFO] -
> [ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[351,53]
> cannot find symbol
>   symbol:   method getName()
>   location: class foundation.web.taglib.struts.html.FormTagEl
> [ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[352,18]
> cannot find symbol
>   symbol: method setName(java.lang.String)
> [ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[360,54]
> cannot find symbol
>   symbol:   method getScope()
>   location: class foundation.web.taglib.struts.html.FormTagEl
> [ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[361,18]
> cannot find symbol
>   symbol: method setScope(java.lang.String)
> [ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[375,53]
> cannot find symbol
>   symbol:   method getType()
>   location: class foundation.web.taglib.struts.html.FormTagEl
> [ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[376,18]
> cannot find symbol
>   symbol: method setType(java.lang.String)
> [ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[35,23]
> cannot find symbol
>   symbol:   class License
>   location: package aspose.pdf
> [ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[35,59]
> cannot find symbol
>   symbol:   class License
>   location: package aspose.pdf
> [INFO] 8 errors
>
> -Original Message-
> From: ctrueden.w...@gmail.com [mailto:ctrueden.w...@gmail.com] On Behalf
> Of Curtis Rueden
> Sent: Friday, July 24, 2015 1:13 PM
> To: Maven Users List
> Subject: Re: build error on strutsel
>
> Hi Hector,
>
> > package com.aspose.cells does not exist
>
> Looks like Aspose.Cells is in its own Maven repo from that company:
>
>
> http://www.aspose.com/blogs/aspose-products/aspose-total-product-family/archive/2014/08/12/aspose-for-maven-aspose-cloud-maven-repository.html
>
> Found by searching Google for "com.aspose.cells maven"
>
> Repeat these tricks for all packages you need to find.
>
> -Curtis
>
> On Fri, Jul 24, 2015 at 12:39 PM, Magnanao, Hector <
> hector.magna...@sap.com>
> wrote:
>
> > Hi Curtis,  that’s ok, I got past that error.  Now I get this one.
> >
> > [ERROR] Failed to execute goal
> > org.apache.maven.plugins:maven-compiler-plugin:3.1:compile
> > (default-compile) on project foundation: Compilation failure: Compilation
> > failure:
> > [ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[3,24]
> > package com.aspose.cells does not exist
> >
> > From: ctrueden.w...@gmail.com [mailto:ctrueden.w...@gmail.com] On Behalf
> > Of Curtis Rueden
> > Sent: Friday, July 24, 2015 12:35 PM
> > To: Maven Users List
> > Subject: Re: build error on strutsel
> >
> > Hi Hector,
> >
> > > I clicked on the link and it returns nothing.
> > > How do I search for it in the repository ?
> >
> > That's baffling. I see this:
> >
> > [Inline image 1]
> >
> > I have no clue why it would be different for you...
> >
> > Regards,
> > Curtis
> >
> > On Fri, Jul 24, 2015 at 12:31 PM, Magnanao, Hector <
> > hector.magna...@sap.com<mailto:hector.magna...@sap.com>> wrote:
> > Hi Curtis,
> >
> > I clicked on the link and it returns nothing.  How do I sea

Re: build error on strutsel

2015-07-24 Thread Paul Benedict
Agreed. There's no point in using Struts-EL anymore. There was a time, as
David said, when EL was a tag-only solution. But since JSP 2.0, the servlet
container understands EL natively so every tag can use EL.


Cheers,
Paul

On Fri, Jul 24, 2015 at 4:20 PM, David Karr 
wrote:

> One thing I should mention about your use of the "Struts-EL" library (which
> I wrote, like, 15 years ago). It was a stopgap solution to somewhat
> integrate Struts with JSP expressions, but only in JSP 1.2 containers.  If
> you use it in a JSP 2.0 or newer container, you'll likely get confusing
> results.  It should only be used in a JSP1.2 container.
>
> On Fri, Jul 24, 2015 at 2:14 PM Curtis Rueden  wrote:
>
> > Hi Hector,
> >
> > Maybe you are depending on the wrong version of those libraries? API
> change
> > and evolve; you have to depend on a version compatible with what was
> > originally coded against.
> >
> > -Curtis
> >
> > On Fri, Jul 24, 2015 at 3:04 PM, Magnanao, Hector <
> hector.magna...@sap.com
> > >
> > wrote:
> >
> > > Hi Curtis,
> > >
> > > I have these remaining errors on my compilation.  I can't figure out if
> > > this is code or package errors.  Can you help me out ?
> > >
> > > [ERROR] COMPILATION ERROR :
> > > [INFO] -
> > > [ERROR]
> > >
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[351,53]
> > > cannot find symbol
> > >   symbol:   method getName()
> > >   location: class foundation.web.taglib.struts.html.FormTagEl
> > > [ERROR]
> > >
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[352,18]
> > > cannot find symbol
> > >   symbol: method setName(java.lang.String)
> > > [ERROR]
> > >
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[360,54]
> > > cannot find symbol
> > >   symbol:   method getScope()
> > >   location: class foundation.web.taglib.struts.html.FormTagEl
> > > [ERROR]
> > >
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[361,18]
> > > cannot find symbol
> > >   symbol: method setScope(java.lang.String)
> > > [ERROR]
> > >
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[375,53]
> > > cannot find symbol
> > >   symbol:   method getType()
> > >   location: class foundation.web.taglib.struts.html.FormTagEl
> > > [ERROR]
> > >
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[376,18]
> > > cannot find symbol
> > >   symbol: method setType(java.lang.String)
> > > [ERROR]
> > >
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[35,23]
> > > cannot find symbol
> > >   symbol:   class License
> > >   location: package aspose.pdf
> > > [ERROR]
> > >
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[35,59]
> > > cannot find symbol
> > >   symbol:   class License
> > >   location: package aspose.pdf
> > > [INFO] 8 errors
> > >
> > > -Original Message-
> > > From: ctrueden.w...@gmail.com [mailto:ctrueden.w...@gmail.com] On
> Behalf
> > > Of Curtis Rueden
> > > Sent: Friday, July 24, 2015 1:13 PM
> > > To: Maven Users List
> > > Subject: Re: build error on strutsel
> > >
> > > Hi Hector,
> > >
> > > > package com.aspose.cells does not exist
> > >
> > > Looks like Aspose.Cells is in its own Maven repo from that company:
> > >
> > >
> > >
> >
> http://www.aspose.com/blogs/aspose-products/aspose-total-product-family/archive/2014/08/12/aspose-for-maven-aspose-cloud-maven-repository.html
> > >
> > > Found by searching Google for "com.aspose.cells maven"
> > >
> > > Repeat these tricks for all packages you need to find.
> > >
> > > -Curtis
> > >
> > > On Fri, Jul 24, 2015 at 12:39 PM, Magnanao, Hector <
> > > hector.magna...@sap.com>
> > > wrote:
> > >
> > > > Hi Curtis,  that’s ok, I got past that error.  Now I get this one.
> > > >

Re: build error on strutsel

2015-07-24 Thread David Karr
One thing I should mention about your use of the "Struts-EL" library (which
I wrote, like, 15 years ago). It was a stopgap solution to somewhat
integrate Struts with JSP expressions, but only in JSP 1.2 containers.  If
you use it in a JSP 2.0 or newer container, you'll likely get confusing
results.  It should only be used in a JSP1.2 container.

On Fri, Jul 24, 2015 at 2:14 PM Curtis Rueden  wrote:

> Hi Hector,
>
> Maybe you are depending on the wrong version of those libraries? API change
> and evolve; you have to depend on a version compatible with what was
> originally coded against.
>
> -Curtis
>
> On Fri, Jul 24, 2015 at 3:04 PM, Magnanao, Hector  >
> wrote:
>
> > Hi Curtis,
> >
> > I have these remaining errors on my compilation.  I can't figure out if
> > this is code or package errors.  Can you help me out ?
> >
> > [ERROR] COMPILATION ERROR :
> > [INFO] -
> > [ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[351,53]
> > cannot find symbol
> >   symbol:   method getName()
> >   location: class foundation.web.taglib.struts.html.FormTagEl
> > [ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[352,18]
> > cannot find symbol
> >   symbol: method setName(java.lang.String)
> > [ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[360,54]
> > cannot find symbol
> >   symbol:   method getScope()
> >   location: class foundation.web.taglib.struts.html.FormTagEl
> > [ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[361,18]
> > cannot find symbol
> >   symbol: method setScope(java.lang.String)
> > [ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[375,53]
> > cannot find symbol
> >   symbol:   method getType()
> >   location: class foundation.web.taglib.struts.html.FormTagEl
> > [ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[376,18]
> > cannot find symbol
> >   symbol: method setType(java.lang.String)
> > [ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[35,23]
> > cannot find symbol
> >   symbol:   class License
> >   location: package aspose.pdf
> > [ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[35,59]
> > cannot find symbol
> >   symbol:   class License
> >   location: package aspose.pdf
> > [INFO] 8 errors
> >
> > -Original Message-
> > From: ctrueden.w...@gmail.com [mailto:ctrueden.w...@gmail.com] On Behalf
> > Of Curtis Rueden
> > Sent: Friday, July 24, 2015 1:13 PM
> > To: Maven Users List
> > Subject: Re: build error on strutsel
> >
> > Hi Hector,
> >
> > > package com.aspose.cells does not exist
> >
> > Looks like Aspose.Cells is in its own Maven repo from that company:
> >
> >
> >
> http://www.aspose.com/blogs/aspose-products/aspose-total-product-family/archive/2014/08/12/aspose-for-maven-aspose-cloud-maven-repository.html
> >
> > Found by searching Google for "com.aspose.cells maven"
> >
> > Repeat these tricks for all packages you need to find.
> >
> > -Curtis
> >
> > On Fri, Jul 24, 2015 at 12:39 PM, Magnanao, Hector <
> > hector.magna...@sap.com>
> > wrote:
> >
> > > Hi Curtis,  that’s ok, I got past that error.  Now I get this one.
> > >
> > > [ERROR] Failed to execute goal
> > > org.apache.maven.plugins:maven-compiler-plugin:3.1:compile
> > > (default-compile) on project foundation: Compilation failure:
> Compilation
> > > failure:
> > > [ERROR]
> > >
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[3,24]
> > > package com.aspose.cells does not exist
> > >
> > > From: ctrueden.w...@gmail.com [mailto:ctrueden.w...@gmail.com] On
> Behalf
> > > Of Curtis Rueden
> > > Sent: Friday, July 24, 2015 12:35 PM
> > > To: Maven Users List
> > > Subject: Re: build error on strutsel
> > >
> > > Hi Hector,
> > >
> > > > I clicked on the link and it returns nothing.
> > > > How do I search for it in the repository ?
> &g

Re: build error on strutsel

2015-07-24 Thread Curtis Rueden
Hi Hector,

Maybe you are depending on the wrong version of those libraries? API change
and evolve; you have to depend on a version compatible with what was
originally coded against.

-Curtis

On Fri, Jul 24, 2015 at 3:04 PM, Magnanao, Hector 
wrote:

> Hi Curtis,
>
> I have these remaining errors on my compilation.  I can't figure out if
> this is code or package errors.  Can you help me out ?
>
> [ERROR] COMPILATION ERROR :
> [INFO] -
> [ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[351,53]
> cannot find symbol
>   symbol:   method getName()
>   location: class foundation.web.taglib.struts.html.FormTagEl
> [ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[352,18]
> cannot find symbol
>   symbol: method setName(java.lang.String)
> [ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[360,54]
> cannot find symbol
>   symbol:   method getScope()
>   location: class foundation.web.taglib.struts.html.FormTagEl
> [ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[361,18]
> cannot find symbol
>   symbol: method setScope(java.lang.String)
> [ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[375,53]
> cannot find symbol
>   symbol:   method getType()
>   location: class foundation.web.taglib.struts.html.FormTagEl
> [ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[376,18]
> cannot find symbol
>   symbol: method setType(java.lang.String)
> [ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[35,23]
> cannot find symbol
>   symbol:   class License
>   location: package aspose.pdf
> [ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[35,59]
> cannot find symbol
>   symbol:   class License
>   location: package aspose.pdf
> [INFO] 8 errors
>
> -Original Message-
> From: ctrueden.w...@gmail.com [mailto:ctrueden.w...@gmail.com] On Behalf
> Of Curtis Rueden
> Sent: Friday, July 24, 2015 1:13 PM
> To: Maven Users List
> Subject: Re: build error on strutsel
>
> Hi Hector,
>
> > package com.aspose.cells does not exist
>
> Looks like Aspose.Cells is in its own Maven repo from that company:
>
>
> http://www.aspose.com/blogs/aspose-products/aspose-total-product-family/archive/2014/08/12/aspose-for-maven-aspose-cloud-maven-repository.html
>
> Found by searching Google for "com.aspose.cells maven"
>
> Repeat these tricks for all packages you need to find.
>
> -Curtis
>
> On Fri, Jul 24, 2015 at 12:39 PM, Magnanao, Hector <
> hector.magna...@sap.com>
> wrote:
>
> > Hi Curtis,  that’s ok, I got past that error.  Now I get this one.
> >
> > [ERROR] Failed to execute goal
> > org.apache.maven.plugins:maven-compiler-plugin:3.1:compile
> > (default-compile) on project foundation: Compilation failure: Compilation
> > failure:
> > [ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[3,24]
> > package com.aspose.cells does not exist
> >
> > From: ctrueden.w...@gmail.com [mailto:ctrueden.w...@gmail.com] On Behalf
> > Of Curtis Rueden
> > Sent: Friday, July 24, 2015 12:35 PM
> > To: Maven Users List
> > Subject: Re: build error on strutsel
> >
> > Hi Hector,
> >
> > > I clicked on the link and it returns nothing.
> > > How do I search for it in the repository ?
> >
> > That's baffling. I see this:
> >
> > [Inline image 1]
> >
> > I have no clue why it would be different for you...
> >
> > Regards,
> > Curtis
> >
> > On Fri, Jul 24, 2015 at 12:31 PM, Magnanao, Hector <
> > hector.magna...@sap.com<mailto:hector.magna...@sap.com>> wrote:
> > Hi Curtis,
> >
> > I clicked on the link and it returns nothing.  How do I search for it in
> > the repository ?
> >
> > -Original Message-
> > From: ctrueden.w...@gmail.com<mailto:ctrueden.w...@gmail.com> [mailto:
> > ctrueden.w...@gmail.com<mailto:ctrueden.w...@gmail.com>] On Behalf Of
> > Curtis Rueden
> > Sent: Friday, July 24, 2015 12:17 PM
> > To: Maven Users List
> > Subject: Re: build error on strutsel
> >
> > Hi Hector,
> >
> > > I can't find it in the maven repository.
> >
> >
> &

RE: build error on strutsel

2015-07-24 Thread Magnanao, Hector
Hi Curtis,

I have these remaining errors on my compilation.  I can't figure out if this is 
code or package errors.  Can you help me out ?

[ERROR] COMPILATION ERROR :
[INFO] -
[ERROR] 
/C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[351,53]
 cannot find symbol
  symbol:   method getName()
  location: class foundation.web.taglib.struts.html.FormTagEl
[ERROR] 
/C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[352,18]
 cannot find symbol
  symbol: method setName(java.lang.String)
[ERROR] 
/C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[360,54]
 cannot find symbol
  symbol:   method getScope()
  location: class foundation.web.taglib.struts.html.FormTagEl
[ERROR] 
/C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[361,18]
 cannot find symbol
  symbol: method setScope(java.lang.String)
[ERROR] 
/C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[375,53]
 cannot find symbol
  symbol:   method getType()
  location: class foundation.web.taglib.struts.html.FormTagEl
[ERROR] 
/C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[376,18]
 cannot find symbol
  symbol: method setType(java.lang.String)
[ERROR] 
/C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[35,23]
 cannot find symbol
  symbol:   class License
  location: package aspose.pdf
[ERROR] 
/C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[35,59]
 cannot find symbol
  symbol:   class License
  location: package aspose.pdf
[INFO] 8 errors

-Original Message-
From: ctrueden.w...@gmail.com [mailto:ctrueden.w...@gmail.com] On Behalf Of 
Curtis Rueden
Sent: Friday, July 24, 2015 1:13 PM
To: Maven Users List
Subject: Re: build error on strutsel

Hi Hector,

> package com.aspose.cells does not exist

Looks like Aspose.Cells is in its own Maven repo from that company:

http://www.aspose.com/blogs/aspose-products/aspose-total-product-family/archive/2014/08/12/aspose-for-maven-aspose-cloud-maven-repository.html

Found by searching Google for "com.aspose.cells maven"

Repeat these tricks for all packages you need to find.

-Curtis

On Fri, Jul 24, 2015 at 12:39 PM, Magnanao, Hector 
wrote:

> Hi Curtis,  that’s ok, I got past that error.  Now I get this one.
>
> [ERROR] Failed to execute goal
> org.apache.maven.plugins:maven-compiler-plugin:3.1:compile
> (default-compile) on project foundation: Compilation failure: Compilation
> failure:
> [ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[3,24]
> package com.aspose.cells does not exist
>
> From: ctrueden.w...@gmail.com [mailto:ctrueden.w...@gmail.com] On Behalf
> Of Curtis Rueden
> Sent: Friday, July 24, 2015 12:35 PM
> To: Maven Users List
> Subject: Re: build error on strutsel
>
> Hi Hector,
>
> > I clicked on the link and it returns nothing.
> > How do I search for it in the repository ?
>
> That's baffling. I see this:
>
> [Inline image 1]
>
> I have no clue why it would be different for you...
>
> Regards,
> Curtis
>
> On Fri, Jul 24, 2015 at 12:31 PM, Magnanao, Hector <
> hector.magna...@sap.com<mailto:hector.magna...@sap.com>> wrote:
> Hi Curtis,
>
> I clicked on the link and it returns nothing.  How do I search for it in
> the repository ?
>
> -Original Message-
> From: ctrueden.w...@gmail.com<mailto:ctrueden.w...@gmail.com> [mailto:
> ctrueden.w...@gmail.com<mailto:ctrueden.w...@gmail.com>] On Behalf Of
> Curtis Rueden
> Sent: Friday, July 24, 2015 12:17 PM
> To: Maven Users List
> Subject: Re: build error on strutsel
>
> Hi Hector,
>
> > I can't find it in the maven repository.
>
>
> http://search.maven.org/#search%7Cga%7C1%7Cfc%3A%22org.apache.strutsel.taglib.utils%22
>
> -Curtis
>
> On Fri, Jul 24, 2015 at 12:11 PM, Magnanao, Hector <
> hector.magna...@sap.com<mailto:hector.magna...@sap.com>>
> wrote:
>
> > How do I resolve this package error ?  I can't find it in the maven
> > repository.
> >
> > ERROR] Failed to execute goal
> > org.apache.maven.plugins:maven-compiler-plugin:3.1:compile
> > (default-compile) on project foundation: Compilation failure: Compilation
> > failure:
> > ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[64,40]
> > package org.apache.strutsel.taglib.utils does not exist
> > ERROR]
> >
> /C:/Foundation/foundation/src/main/ja

Re: build error on strutsel

2015-07-24 Thread Curtis Rueden
Hi Hector,

> package com.aspose.cells does not exist

Looks like Aspose.Cells is in its own Maven repo from that company:

http://www.aspose.com/blogs/aspose-products/aspose-total-product-family/archive/2014/08/12/aspose-for-maven-aspose-cloud-maven-repository.html

Found by searching Google for "com.aspose.cells maven"

Repeat these tricks for all packages you need to find.

-Curtis

On Fri, Jul 24, 2015 at 12:39 PM, Magnanao, Hector 
wrote:

> Hi Curtis,  that’s ok, I got past that error.  Now I get this one.
>
> [ERROR] Failed to execute goal
> org.apache.maven.plugins:maven-compiler-plugin:3.1:compile
> (default-compile) on project foundation: Compilation failure: Compilation
> failure:
> [ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[3,24]
> package com.aspose.cells does not exist
>
> From: ctrueden.w...@gmail.com [mailto:ctrueden.w...@gmail.com] On Behalf
> Of Curtis Rueden
> Sent: Friday, July 24, 2015 12:35 PM
> To: Maven Users List
> Subject: Re: build error on strutsel
>
> Hi Hector,
>
> > I clicked on the link and it returns nothing.
> > How do I search for it in the repository ?
>
> That's baffling. I see this:
>
> [Inline image 1]
>
> I have no clue why it would be different for you...
>
> Regards,
> Curtis
>
> On Fri, Jul 24, 2015 at 12:31 PM, Magnanao, Hector <
> hector.magna...@sap.com<mailto:hector.magna...@sap.com>> wrote:
> Hi Curtis,
>
> I clicked on the link and it returns nothing.  How do I search for it in
> the repository ?
>
> -Original Message-
> From: ctrueden.w...@gmail.com<mailto:ctrueden.w...@gmail.com> [mailto:
> ctrueden.w...@gmail.com<mailto:ctrueden.w...@gmail.com>] On Behalf Of
> Curtis Rueden
> Sent: Friday, July 24, 2015 12:17 PM
> To: Maven Users List
> Subject: Re: build error on strutsel
>
> Hi Hector,
>
> > I can't find it in the maven repository.
>
>
> http://search.maven.org/#search%7Cga%7C1%7Cfc%3A%22org.apache.strutsel.taglib.utils%22
>
> -Curtis
>
> On Fri, Jul 24, 2015 at 12:11 PM, Magnanao, Hector <
> hector.magna...@sap.com<mailto:hector.magna...@sap.com>>
> wrote:
>
> > How do I resolve this package error ?  I can't find it in the maven
> > repository.
> >
> > ERROR] Failed to execute goal
> > org.apache.maven.plugins:maven-compiler-plugin:3.1:compile
> > (default-compile) on project foundation: Compilation failure: Compilation
> > failure:
> > ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[64,40]
> > package org.apache.strutsel.taglib.utils does not exist
> > ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/bean/MessageTagEl.java:[72,40]
> > package org.apache.strutsel.taglib.utils does not exist
> >
> > Hector Magnanao Jr.
> > SCM Analyst
> >
> > Fieldglass, Inc.
> > O: (331) 702-6142
> > M: (773) 474-3051
> > hector.magna...@sap.com<mailto:hector.magna...@sap.com>
> > www.fieldglass.com<http://www.fieldglass.com>
> >
> > Fieldglass is now part of SAP
> >
> > This email contains confidential information.  If you are not the
> intended
> > recipient, do not read, distribute or reproduce this transmission
> > (including any attachments). If you have received this email in error,
> > please notify the sender by email reply.
> >
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org users-unsubscr...@maven.apache.org>
> For additional commands, e-mail: users-h...@maven.apache.org users-h...@maven.apache.org>
>
>


RE: build error on strutsel

2015-07-24 Thread Magnanao, Hector
Hi Curtis,  that’s ok, I got past that error.  Now I get this one.

[ERROR] Failed to execute goal 
org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on 
project foundation: Compilation failure: Compilation failure:
[ERROR] 
/C:/Foundation/foundation/src/main/java/com/mycompany/app/cache/LicenseService.java:[3,24]
 package com.aspose.cells does not exist

From: ctrueden.w...@gmail.com [mailto:ctrueden.w...@gmail.com] On Behalf Of 
Curtis Rueden
Sent: Friday, July 24, 2015 12:35 PM
To: Maven Users List
Subject: Re: build error on strutsel

Hi Hector,

> I clicked on the link and it returns nothing.
> How do I search for it in the repository ?

That's baffling. I see this:

[Inline image 1]

I have no clue why it would be different for you...

Regards,
Curtis

On Fri, Jul 24, 2015 at 12:31 PM, Magnanao, Hector 
mailto:hector.magna...@sap.com>> wrote:
Hi Curtis,

I clicked on the link and it returns nothing.  How do I search for it in the 
repository ?

-Original Message-
From: ctrueden.w...@gmail.com<mailto:ctrueden.w...@gmail.com> 
[mailto:ctrueden.w...@gmail.com<mailto:ctrueden.w...@gmail.com>] On Behalf Of 
Curtis Rueden
Sent: Friday, July 24, 2015 12:17 PM
To: Maven Users List
Subject: Re: build error on strutsel

Hi Hector,

> I can't find it in the maven repository.

http://search.maven.org/#search%7Cga%7C1%7Cfc%3A%22org.apache.strutsel.taglib.utils%22

-Curtis

On Fri, Jul 24, 2015 at 12:11 PM, Magnanao, Hector 
mailto:hector.magna...@sap.com>>
wrote:

> How do I resolve this package error ?  I can't find it in the maven
> repository.
>
> ERROR] Failed to execute goal
> org.apache.maven.plugins:maven-compiler-plugin:3.1:compile
> (default-compile) on project foundation: Compilation failure: Compilation
> failure:
> ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[64,40]
> package org.apache.strutsel.taglib.utils does not exist
> ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/bean/MessageTagEl.java:[72,40]
> package org.apache.strutsel.taglib.utils does not exist
>
> Hector Magnanao Jr.
> SCM Analyst
>
> Fieldglass, Inc.
> O: (331) 702-6142
> M: (773) 474-3051
> hector.magna...@sap.com<mailto:hector.magna...@sap.com>
> www.fieldglass.com<http://www.fieldglass.com>
>
> Fieldglass is now part of SAP
>
> This email contains confidential information.  If you are not the intended
> recipient, do not read, distribute or reproduce this transmission
> (including any attachments). If you have received this email in error,
> please notify the sender by email reply.
>
>

-
To unsubscribe, e-mail: 
users-unsubscr...@maven.apache.org<mailto:users-unsubscr...@maven.apache.org>
For additional commands, e-mail: 
users-h...@maven.apache.org<mailto:users-h...@maven.apache.org>



Re: build error on strutsel

2015-07-24 Thread Curtis Rueden
Hi Hector,

> I clicked on the link and it returns nothing.
> How do I search for it in the repository ?

That's baffling. I see this:

[image: Inline image 1]

I have no clue why it would be different for you...

Regards,
Curtis

On Fri, Jul 24, 2015 at 12:31 PM, Magnanao, Hector 
wrote:

> Hi Curtis,
>
> I clicked on the link and it returns nothing.  How do I search for it in
> the repository ?
>
> -Original Message-
> From: ctrueden.w...@gmail.com [mailto:ctrueden.w...@gmail.com] On Behalf
> Of Curtis Rueden
> Sent: Friday, July 24, 2015 12:17 PM
> To: Maven Users List
> Subject: Re: build error on strutsel
>
> Hi Hector,
>
> > I can't find it in the maven repository.
>
>
> http://search.maven.org/#search%7Cga%7C1%7Cfc%3A%22org.apache.strutsel.taglib.utils%22
>
> -Curtis
>
> On Fri, Jul 24, 2015 at 12:11 PM, Magnanao, Hector <
> hector.magna...@sap.com>
> wrote:
>
> > How do I resolve this package error ?  I can't find it in the maven
> > repository.
> >
> > ERROR] Failed to execute goal
> > org.apache.maven.plugins:maven-compiler-plugin:3.1:compile
> > (default-compile) on project foundation: Compilation failure: Compilation
> > failure:
> > ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[64,40]
> > package org.apache.strutsel.taglib.utils does not exist
> > ERROR]
> >
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/bean/MessageTagEl.java:[72,40]
> > package org.apache.strutsel.taglib.utils does not exist
> >
> > Hector Magnanao Jr.
> > SCM Analyst
> >
> > Fieldglass, Inc.
> > O: (331) 702-6142
> > M: (773) 474-3051
> > hector.magna...@sap.com
> > www.fieldglass.com
> >
> > Fieldglass is now part of SAP
> >
> > This email contains confidential information.  If you are not the
> intended
> > recipient, do not read, distribute or reproduce this transmission
> > (including any attachments). If you have received this email in error,
> > please notify the sender by email reply.
> >
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> For additional commands, e-mail: users-h...@maven.apache.org
>


RE: build error on strutsel

2015-07-24 Thread Magnanao, Hector
Hi Curtis,

I clicked on the link and it returns nothing.  How do I search for it in the 
repository ?

-Original Message-
From: ctrueden.w...@gmail.com [mailto:ctrueden.w...@gmail.com] On Behalf Of 
Curtis Rueden
Sent: Friday, July 24, 2015 12:17 PM
To: Maven Users List
Subject: Re: build error on strutsel

Hi Hector,

> I can't find it in the maven repository.

http://search.maven.org/#search%7Cga%7C1%7Cfc%3A%22org.apache.strutsel.taglib.utils%22

-Curtis

On Fri, Jul 24, 2015 at 12:11 PM, Magnanao, Hector 
wrote:

> How do I resolve this package error ?  I can't find it in the maven
> repository.
>
> ERROR] Failed to execute goal
> org.apache.maven.plugins:maven-compiler-plugin:3.1:compile
> (default-compile) on project foundation: Compilation failure: Compilation
> failure:
> ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[64,40]
> package org.apache.strutsel.taglib.utils does not exist
> ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/bean/MessageTagEl.java:[72,40]
> package org.apache.strutsel.taglib.utils does not exist
>
> Hector Magnanao Jr.
> SCM Analyst
>
> Fieldglass, Inc.
> O: (331) 702-6142
> M: (773) 474-3051
> hector.magna...@sap.com
> www.fieldglass.com
>
> Fieldglass is now part of SAP
>
> This email contains confidential information.  If you are not the intended
> recipient, do not read, distribute or reproduce this transmission
> (including any attachments). If you have received this email in error,
> please notify the sender by email reply.
>
>

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


Re: build error on strutsel

2015-07-24 Thread Curtis Rueden
Hi Hector,

> I can't find it in the maven repository.

http://search.maven.org/#search%7Cga%7C1%7Cfc%3A%22org.apache.strutsel.taglib.utils%22

-Curtis

On Fri, Jul 24, 2015 at 12:11 PM, Magnanao, Hector 
wrote:

> How do I resolve this package error ?  I can't find it in the maven
> repository.
>
> ERROR] Failed to execute goal
> org.apache.maven.plugins:maven-compiler-plugin:3.1:compile
> (default-compile) on project foundation: Compilation failure: Compilation
> failure:
> ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/html/FormTagEl.java:[64,40]
> package org.apache.strutsel.taglib.utils does not exist
> ERROR]
> /C:/Foundation/foundation/src/main/java/com/mycompany/app/web/taglib/struts/bean/MessageTagEl.java:[72,40]
> package org.apache.strutsel.taglib.utils does not exist
>
> Hector Magnanao Jr.
> SCM Analyst
>
> Fieldglass, Inc.
> O: (331) 702-6142
> M: (773) 474-3051
> hector.magna...@sap.com
> www.fieldglass.com
>
> Fieldglass is now part of SAP
>
> This email contains confidential information.  If you are not the intended
> recipient, do not read, distribute or reproduce this transmission
> (including any attachments). If you have received this email in error,
> please notify the sender by email reply.
>
>