package com.aspose.cells does not exist

2015-08-25 Thread Magnanao, Hector
Can anyone point me to where to get the dependency for aspose-cells-7.3.1.jar ? I can't find a good repo in google. 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

Maven repeating itself (3.2.5)

2015-08-25 Thread Benson Margulies
One of our builds has developed a stutter. These log messages (and the details and work that go with them) are repeating several times. I can't find any evidence of a forked lifecycle, but maybe I've forgotten how to look. [DEBUG]

Re: how can i upload version 1.1.0.1 of tomcat-jdbc

2015-08-25 Thread Hervé BOUTEMY
yes, that's exactly why Olivier gave you the link: you're trying to use a non- existent version Olivier gave you a link that shows you what versions exist in central repository Regards, Hervé Le mardi 25 août 2015 14:40:48 Magnanao, Hector a écrit : I don't see version 1.1.0.1 in that link

RE: how can i upload version 1.1.0.1 of tomcat-jdbc

2015-08-25 Thread Magnanao, Hector
I don't see version 1.1.0.1 in that link that you sent me. -Original Message- From: Olivier Lamy [mailto:ol...@apache.org] Sent: Monday, August 24, 2015 11:18 PM To: Maven Users List Subject: Re: how can i upload version 1.1.0.1 of tomcat-jdbc Try this one:

Re: how can i upload version 1.1.0.1 of tomcat-jdbc

2015-08-25 Thread Ron Wheeler
It appears that it was never released. You may want to try the current version of tomcat.s pool or build the jar from sources and put it in your local repo as a third-party jar. You might ask this question in the tomcat forum and get their recommendation for this. It appears that this is

Re: error when using log4j dependency

2015-08-25 Thread Stephen Coy
Avoid using log4j 1.2.15. It has a broken pom which sucks in some dependencies that don’t exist in public repositories. Either use 1.2.14 or 1.2.16/17. Steve C On 25 Aug 2015, at 2:25 am, Magnanao, Hector hector.magna...@sap.com wrote: Why does Maven complain with this error when I try to

compile error with aspose.pdf

2015-08-25 Thread Magnanao, Hector
Can anyone tell me how to resolve this compile error ? I've uploaded the jar locally and I still get the error. [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]

Maven release plugin, branch goal behavior

2015-08-25 Thread Bob Hpv
Hi, I'm trying to use the release plugin (2.5.2 with maven 2.2.1) to perform a delivery. I did some tests using the release:perform goal. In the current branch, it - updates the pom with the release version, - commit the modification, - add a tag, - updates the pom to next snapshot, -

Re: Problems compiling source java with different encodings

2015-08-25 Thread Russell Gold
Do you have the following in your pom.xml? properties project.build.sourceEncodingUTF-8/project.build.sourceEncoding /properties If not, do you know what encoding is being used in your source file? On Aug 25, 2015, at 4:01 PM, Néstor Boscán nesto...@gmail.com wrote: Hi I

Re: compile error with aspose.pdf

2015-08-25 Thread Russell Gold
What happens when you run: mvn -X compile? do you really mean to have a package named aspose.pdf? On Aug 25, 2015, at 2:59 PM, Magnanao, Hector hector.magna...@sap.com wrote: Can anyone tell me how to resolve this compile error ? I've uploaded the jar locally and I still get the error.

Problems compiling source java with different encodings

2015-08-25 Thread Néstor Boscán
Hi I have a legacy code that compiles correctly using IDEA or JDeveloper. But if I try to use maven compile it generates error because there are unknoen characters in the comments. It looks like the legacy code has different types of character encoding in the file. Is there a way to compile using

Re: compile error with aspose.pdf

2015-08-25 Thread Doug Douglass
A quick google search led me to http://www.aspose.com/docs/display/pdfjava/Applying+a+License Is that what you're trying to accomplish? Seems you might have the wrong package for the License class, should it be com.aspose.pdf.License. FYI: This doesn't seem like a maven problem, perhaps contact

RE: compile error with aspose.pdf

2015-08-25 Thread Magnanao, Hector
I get this error when I run mvn -X compile: [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]

Re: Maven repeating itself (3.2.5)

2015-08-25 Thread Benson Margulies
This is a bug in the maven-bundle-plugin, as it turns out. On Tue, Aug 25, 2015 at 1:46 PM, Benson Margulies bimargul...@gmail.com wrote: One of our builds has developed a stutter. These log messages (and the details and work that go with them) are repeating several times. I can't find any

Re: Problems compiling source java with different encodings

2015-08-25 Thread Néstor Boscán
Yes, The problem is that the legacy code has comments in Cp1252 and Strings in UTF-8. The weird thing is that IDEA and JDeveloper can compile them using their internal compilers. Regards, Néstor On Tue, Aug 25, 2015 at 3:36 PM, Russell Gold russell.g...@oracle.com wrote: Do you have the