Re: How do exec:java on a mainclass that calls System.exit() without terminating the maven build?

2025-05-08 Thread Thorsten Heit
-- (...) [INFO] --- install:3.1.2:install (default-install) @ convert-xsd-to-rnc --- [INFO] Installing /Users/thorsten/git/convert-xsd-to-rnc/pom.xml to /Users/thorsten/.m2/repository/no/priv/bang/xml/schema/convert-xsd-to-rnc/0.0.1-SNAPSHOT/convert-xsd-to-rnc-0.0.1-SNAPSHOT.pom [INFO] Installing

Re: [VOTE] Require Java 21 for Maven 4 (Rephrased Vote)

2025-04-30 Thread Thorsten Heit
+1 Am 30.04.25 um 15:12 schrieb Matthias Bünger: Hi everyone, over the last years we had several discussions about lifting the required Java version to run Maven from 8 to something higher. You can find them in the mail archive. In February 2024 we decided to lift it to 17 (see result: [1*]).

Re: Is it possible to use JDK24 with Maven 3?

2025-03-26 Thread Thorsten Heit
reatly appreciated. IMHO there's something weird in your pom.xml. Do you have a reference somewhere to the tools.jar from older JDK 8? Regards Thorsten - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For addi

Re: Maven 4: maven-git-versioning-extension not working

2024-12-18 Thread Thorsten Heit
umentation about how to write extensions for Maven 4? Especially about what changed between Maven 3 and 4? The website itself only covers Maven 3(.9.x), at least as far as I have seen. Regards Thorsten - To unsubscribe, e-

Maven 4: maven-git-versioning-extension not working

2024-12-16 Thread Thorsten Heit
haps a bug? A quick search in JIRA didn't help... PS: The version number isn't coded in the pom.xml itself; instead I'm using ${revision}. Regards Thorsten - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: Strange warning with m-enforcer-p

2024-08-09 Thread Thorsten Heit
s at each module... Regards Thorsten Am 08.08.24 um 09:57 schrieb Thorsten Heit: Hi, in a multi-module build I have added the enforcer plugin in the top- level pom.xml using the following configuration:     org.apache.maven.plugins     maven-enforcer-plugin     3.5.0        

Strange warning with m-enforcer-p

2024-08-08 Thread Thorsten Heit
optium.net) - Windows 11 [1] https://maven.apache.org/enforcer/maven-enforcer-plugin/usage.html Regards Thorsten - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: a question about the Maven Resolver Ant Tasks uber JAR

2024-02-28 Thread Thorsten Heit
/ org/apache/commons/logging/impl/NoOpLog.class org/apache/commons/logging/impl/SLF4JLocationAwareLog.class org/apache/commons/logging/impl/SLF4JLog.class org/apache/commons/logging/impl/SLF4JLogFactory.class org/apache/commons/logging/impl/SimpleLog.class Regards Thorsten

Re: [VOTE] Require Java 17 for Maven 4

2024-02-28 Thread Thorsten Heit
ort in javac for Java 6, and since Java 20 javac only compiles for Java >=8. Regards Thorsten - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: [VOTE] Require Java 17 for Maven 4

2024-02-28 Thread Thorsten Heit
+1 (although I'd prefer to directly require Java 21 :-)) Regards Thorsten Am 28.02.24 um 08:30 schrieb Benjamin Marwell: Hi Maven Devs/Users/Committers and PMC members! After several discussions on the mailing lists, I would like to start a vote in favour of setting the minimal

Re: Browsing Maven central buggy?

2024-01-25 Thread Thorsten Heit
ependency's POM and see what's (new?) inside... ;-) Thorsten Am 24.01.24 um 18:13 schrieb Manfred Moser: I suggest to use the maintained search and browse frontend from Sonatype instead. https://search.maven.org/ .. same as https://central.sonatype.com/ And browse at https://centra

Browsing Maven central buggy?

2024-01-24 Thread Thorsten Heit
? Thorsten - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: How to force Maven to put a dependency on the module-path?

2023-08-02 Thread Thorsten Heit
hould not keep developers prisoners of black magic. We need control on that. IMHO a library is buggy if it's *behavior* depends on whether it is being used on the module path or on the classpath. Just my thoughts... Kind regards Thorsten --

Re: how to increment verion number and then deploy

2023-02-16 Thread Thorsten Heit
fixed version numbers in your pom.xml, you could also use ${revision} and then simply execute "mvn deploy -Drevision=xx.yy.zz"; see [1]. [1] https://maven.apache.org/maven-ci-friendly.html HTH Thorsten OpenPGP_signature Description: OpenPGP digital signature

Re: m-release-m on Jenkins: 'cmd' is not recognized as an internal or external command

2022-11-22 Thread Thorsten Heit
Hi, I have created MRELEASE-1110 because the same steps work when I use m-release-p 3.0.0-M5, but not 3.0.0-M6 or M7... Regards Thorsten Am 18.11.22 um 10:56 schrieb Thorsten Heit: Hello, I'm struggling with a phenomen trying to simulate a release build of a Maven project on a Je

m-release-m on Jenkins: 'cmd' is not recognized as an internal or external command

2022-11-18 Thread Thorsten Heit
s "Maven execution failed, exit code: 1" as received by the executed command-line (as far as I understand the source code of m-release-p), but why? I have tried executing the same job with AdoptOpenJDK 8 (8u252) and Eclipse Adoptium 17.0.4, but the result stays the same. Executi

m-antrun-p and Maven properties

2021-10-29 Thread Thorsten Heit
oject.basedir}/.. as an alternative, I know :), but what is the reason that the property can be used with m-antrun-p 1.3? Coincidence? PS: I'm using Maven 3.8.3. Regards Thorsten OpenPGP_signature Description: OpenPGP digital signature

Re: Re: testExcludes/Includes to compile test with different java version

2020-08-23 Thread Thorsten Heit
default-jar true HTH Thorsten

Re: Re: How to make plugin part of default build in Maven.

2020-06-17 Thread Thorsten Heit
Hi Linus, > Thanks, Thorsten. > That worked perfectly. You're welcome. > What's the difference between the two? > Why doesn't pluginmanagement recognise the added plugins? In the plugin management section you can specify and (pre-)configure plugins that can b

Re: How to make plugin part of default build in Maven.

2020-06-17 Thread Thorsten Heit
e plugin management section directly into build/plugins. HTH Thorsten

Re: PKIX path building error with Azul ZULU Open JDK 14

2020-06-16 Thread Thorsten Heit
Therefore you have to manually add your company PKI certs to the Java installation to get rid of the PKIX path building error... Again, this has nothing to do with Maven and changes as the Mave side you mentioned (whatever this is). HTH Thorsten signature.asc Description: OpenPGP digital signature

Re: Maven jdk Error

2020-05-15 Thread Thorsten Heit
class file version 58.65535). Try running with > '--enable-preview' This is the root cause of the error you're getting. See for example this for a way to fix this: https://blog.codefx.org/java/enable-preview-language-features/ HTH Thorsten signature.asc Description: OpenPGP digital signature

Re: Re: NullPointerException in maven-jlink-plugin

2020-03-18 Thread Thorsten Heit
Hi, > Hi, > > On 16.03.20 15:50, Thorsten Heit wrote: > > Hello, > > > > I tried to use maven-jlink-plugin to create a modular Java runtime image > > for an internal application. I've followed the description in the docs, > > but finally got a

NullPointerException in maven-jlink-plugin

2020-03-16 Thread Thorsten Heit
a-1 was release september 2017, and since then there were a couple of changes in the project. Is a new release planned / in the making? Or is there a possible workaround / fix for the NPE? Regards Thorsten

Re: build maven project without setting compiler source and target

2020-02-17 Thread Thorsten Heit
you don’t have configured source and target in m-compiler-p, i.e. you use the default parameters which - according to your mail - are an older version of Maven‘s compiler plugin and/or no source/target version set. Can you show us a mi

Re: Re: build maven project without setting compiler source and target

2020-02-17 Thread Thorsten Heit
upgrade Maven, the JVM, use another OS and so on. [1] https://maven.apache.org/plugins/maven-compiler-plugin/ Regards Thorsten

Re: Re: failing jar:deploy

2020-01-22 Thread Thorsten Heit
his? Regards Thorsten

Re: java 1.8 and java 11 using toolchains plus compiler and surefire

2019-09-01 Thread Thorsten Heit
for example missing dependencies such as jakarta.xml.bind:jakarta.xml.bind-api in your pom.xml when you're using JAXB in your code HTH Thorsten

Re: Maven question - how to pull code from bitbucket repository as dependency

2019-06-11 Thread Thorsten Heit
.org/JGit/User_Guide#Ant_Tasks [2] https://maven.apache.org/scm/maven-scm-plugin/checkout-mojo.html HTH Thorsten

Re: How to work java 9 modules with Maven Surefire Plugin?

2018-09-24 Thread Thorsten Heit
It seems similar to the issue reported here: https://issues.apache.org/jira/browse/SUREFIRE-1528 Can you try switching to m-surefire-p 2.21.0? On my system this additionally resolved a ClassNotFoundException I suddenly saw with 2.22.0 in one of our projects; see https://issues.apache.org/jira/browse/SUREFIRE-1537 Regards Thorsten

Re: Re: Dependency is missed while using maven-assembly-plugin

2018-04-03 Thread Thorsten Heit
Batik 1.7: batik-bridge -> batik-script -> batik-bridge... Can you use a newer version of batik-transcoder such as 1.8, 1.9 or 1.9.1 (all available on Maven Central)? Regards Thorsten

Re: Re: Dependency is missed while using maven-assembly-plugin

2018-04-03 Thread Thorsten Heit
with m-assembly-p 3.1.0 and see whether this behaves different? Could you switch to a newer version of Maven, i.e. 3.5.3 (the newest? Regards Thorsten

Antwort: Re: Maven JAVA_HOME

2018-03-20 Thread thorsten . heit
d to system-wide predefine some environment variables when you log in, depending on the shell you're using... HTH Thorsten

Re: Re: [ANN] Apache Maven EAR Version 3.0.0 Released

2018-03-15 Thread Thorsten Heit
Hi, > On 15/03/18 12:51, Thorsten Heit wrote: > > Hi, > > > >> The Apache Maven team is pleased to announce the release of the > >> Apache Maven EAR Plugin Version 3.0.0 > > > > First of all thanks for releasing a new version of this plugin! >

Re: [ANN] Apache Maven EAR Version 3.0.0 Released

2018-03-15 Thread Thorsten Heit
he JBoss/Wildfly integration in Eclipse? m2e? ...? And what can I do to make it work again (apart from sticking with m-ear-p 2.10.1)? Interesting side effect: Building the EAR via command line works and generates a correct EAR, i.e. contains the WAR module with the groupId in its name. Best regards Thorsten

Re: Source build of CloudStack versions 4.8.11 and 4.9.0.1 fails

2016-12-02 Thread Thorsten Heit
date interval of central has > elapsed or updates are forced -> [Help 1] > [ERROR] > -- > > Not clear how to fix this. Thanks in advance for all the help, Have a look at the message: You're activating a profile on the command line ("-P deps") that obviously doesn't exist. What are you trying to do? Regards Thorsten

Re: [ANN] Apache Maven JAR Plugin Version 3.0.1 Released

2016-06-13 Thread Thorsten Heit
ould probably move this to the m2e list instead. It might require > > another change to the mavenarchiver connector. Ok, will do that. Thanks :) Thorsten -- View this message in context: http://maven.40175.n5.nabble.com/ANN-Apache-Maven-JAR-Plugin-Version-3-0-1-Released-tp5871579p5872086.

Re: [ANN] Apache Maven JAR Plugin Version 3.0.1 Released

2016-06-13 Thread Thorsten Heit
lding from the command line works; the error only occurs in Eclipse... Regards Thorsten khmarbaise wrote > The Apache Maven team is pleased to announce the release of the > Apache Maven JAR Plugin Version 3.0.1. > > https://maven.apache.org/plugins/maven-jar-plugin/ &g

Re: Best practices: m-release-p and svn:externals

2016-04-26 Thread Thorsten Heit
n SCM plugin that allows to use the "--pin-externals" option with a Subversion 1.9.x client: https://issues.apache.org/jira/browse/MRELEASE-549 Regards Thorsten -- View this message in context: http://maven.40175.n5.nabble.com/Best-practices-m-release-p-and-svn-externals-tp5855187p58

Best practices: m-release-p and svn:externals

2015-12-17 Thread Thorsten Heit
e release notes of Subversion 1.9, there's a new option "--pin-externals" available for "svn copy". Is it possible to use that? If yes, how can I do this? I've also found this plugin here: https://github.com/MartinMReed/maven-svn-plugin What do you think? Regards Thorsten

Re: Re: [VOTE] Change project logo and adopt owl as mascot

2014-11-25 Thread thorsten . heit
+1 Thorsten Arnaud Héritier schrieb am 25.11.2014 12:01:00: > Von: Arnaud Héritier > An: Maven Developers List > Kopie: Maven Users List > Datum: 25.11.2014 12:02 > Betreff: Re: [VOTE] Change project logo and adopt owl as mascot > > +1 > > thx > >

Re: Re: Status of MRELEASE-835?

2014-03-05 Thread Thorsten Heit
2.0.0 has incompatible changes compared to 1.2.3. With "versions:use-latest-release", you'll eventually get an unreleasable artifact because it doesn't compile. The feature request in MRELEASE-835 and the provided patch avoids that. Greetings Thorsten

Status of MRELEASE-835?

2014-03-05 Thread Thorsten Heit
;I'll look into that" would be nice :-) Regards Thorsten

Re: release-plugin non-interactive release and system properties

2014-01-09 Thread thorsten . heit
work when you have a snapshot version in your pom, i.e. 1.0-SNAPSHOT. Regards Thorsten

Re: maven deploy plugin fails with artifact-not-found

2013-12-13 Thread Thorsten Heit
built first, a step that is skipped in your case. Try "mvn deploy" instead. HTH Thorsten

Re: Jacoco:check - pom example?

2013-10-07 Thread thorsten . heit
> > > *snip* > I'm guessing that I've added the instruction the the pom incorrectly but > the documentation lacks an in-context example. Can anyone shed light on > this? Just a guess: You didn't specify a phase for the executions with id "prepare" and "verify"...? Regards Thorsten

Re: Re: Nexus deployment of a ZIP file...

2013-03-21 Thread thorsten . heit
groupId, artifactId etc. when you specify a pom.xml as a parameter (-DpomFile=)? See https://maven.apache.org/plugins/maven-deploy-plugin/deploy-file-mojo.html HTH Thorsten

Re: use properties within settings.xml

2013-02-26 Thread Thorsten Heit
ow you can only use these properties in your pom.xml, but not in the settings.xml file itself. Thorsten

Re: String index out of range: -12 in ReleaseUtils.loadResolvedDependencies() when using Parent-Module-Layout

2013-01-18 Thread thorsten . heit
uch as an invalid property that is referenced somewhere, an empty or missing plugin configuration section etc.pp. HTH Thorsten

Re: Maven dependencies - best practice

2013-01-16 Thread thorsten . heit
ant to validate my POM "a" I get this error: > > error: 'dependencies.dependency.version' for log4j:logj:jar is missing > > Can somebody help me? Quite easy: In the referenced parent sk:a:0.0.1-SNAPSHOT you only manage a dependency for sk:x-deps:0.0.1-SNAPSHOT (which isn't used in b, btw), but not for the real dependencies you're using in your project b... To use them, move the dependency management section from x-deps to your project a. That should do the trick. HTH Thorsten

Re: Re: Escape '*' in property command line

2013-01-15 Thread Thorsten Heit
23 * * *" I get: > 0 0 23 * * *, as one would expect. > > Seems like a bug in the maven script that is creating the QUOTED_ARGS > variable at the beginning of the script. Have you tried to escape the "*" with a backslash, i.e. '\*'? HTH Thorsten

Re: Re: Some questions about Webby

2013-01-15 Thread Thorsten Heit
that I didn't try it... Regards Thorsten

Re: Re: Why does mvn compiile using java 1.3?

2012-11-30 Thread Thorsten Heit
t; a.k.a bugs :-o Unfortunately they weren't given the time to fix them (you know, the usual problems with sales that had other priorities...) so they had to stick with Java 1.4 until ~2.5 years ago (!), until the application finally died about one year ago. That's life... Regards Thorsten

Re: Maven Shade Plugin - XmlAppendingTransformer cannot be loaded

2012-11-29 Thread thorsten . heit
ror message: Obviously you have a spelling error in your transformer declaration; see above... HTH Thorsten

Re: Commit additional files with release plugin

2012-11-05 Thread Thorsten Höger
Hi, I'm using git and tested it under Windows and Linux (Fedora). Regards, Thorsten Am 05.11.2012 09:54, schrieb Stephen Connolly: > What SCM are you using. with SVN and IIRC with Git it currently works, but > that is likely a side-effect of the way those SCMs work. > > On 5 No

Re: Commit additional files with release plugin

2012-11-04 Thread Thorsten Höger
Done! http://jira.codehaus.org/browse/MRELEASE-798 Regards, Thorsten Am 04.11.2012 20:37, schrieb Benson Margulies: > Seems like a reasonable idea, file a JIRA? > > > On Sun, Nov 4, 2012 at 11:34 AM, Thorsten Höger wrote: > >> Hi, >> >> is there any possibility

Commit additional files with release plugin

2012-11-04 Thread Thorsten Höger
get this in the future. Maybe there could be a parameter additionalCommitFiles with a list of files to commit along with pom.xml. Regards, Thorsten Höger - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For

Re: Re: Re: How to zip the source code separately using Maven

2012-09-12 Thread Thorsten Heit
eral examples how to use these plugins. Apart from that: If you don't give any information about what you have done, how your project is structured, how your pom.xml looks like, how you trigger Maven, what you did to see the above mentioned error etc., nobody is able and possibly even willing to help you resolve your problems... HTH Thorsten

Re: Re: How to zip the source code separately using Maven

2012-09-12 Thread Thorsten Heit
Hi, > can somebody give me the sample code... Please read the links you were given. What have you tried so far? And what problems do you still have? Regards Thorsten

Antwort: How to zip the source code separately using Maven

2012-09-11 Thread Thorsten Heit
pache.org/plugins/maven-source-plugin/ ? HTH Thorsten

Re: JDK - Maven - Orekit - Re-configure / Output Charts { Look/Feel}

2012-08-30 Thread Thorsten Heit
estion(s) do you have? I don't get it to be honest... Perhaps you should describe what you already did, what you expected to happen, what really happened etc. Cheers Thorsten PS: I assume that you know the following pages: - http://maven.apache.org/users/index.html - http://maven.apach

Re: jdk for os 10.5.8

2012-08-30 Thread Thorsten Heit
but I guess I have seen some Java 6 versions also for 10.5, but only for 64-bit machines. HTH Thorsten PS: http://support.apple.com/downloads/?val=java+for+mac+os+x+10.5#java for mac os x 10.5

Re: pom

2012-08-13 Thread Thorsten Heit
lve it . Thank you ! http://lmgtfy.com/?q=Plugin+execution+not+covered+by+lifecycle+configuration => http://wiki.eclipse.org/M2E_plugin_execution_not_covered HTH Thorsten

Antwort: Maven + Spring 3.1.2.RELEASE Error

2012-08-10 Thread Thorsten Heit
is downloaded, but the 3.0.0.GA > spring-core module is downloaded... Can anyone tell me why this could be > happening? I'm not nesting or inheriting pom.xml files. I've pasted part of > my pom.xml below: I don't use Spring, but have you tried "mvn help:effective-pom"? HTH Thorsten

Re: Error in deploying war file

2012-08-01 Thread Thorsten Heit
nt your Maven installation to that instance... HTH Thorsten PGP.sig Description: Signierter Teil der Nachricht

Re: How can I recursively build -SNAPSHOT dependencies present in the filesystem but outside the reactor?

2012-06-15 Thread Thorsten Heit
bs, quite similar to what you want to achieve. I'd recommend to install the Upstream Downstream Column Plugin that adds two quite useful columns to Jenkins' job list: one that lists all "parent" jobs, and another with all subjobs as far as Jenkins has detected them. HTH Thorsten

Re: Create Error reading settings.xml: Unrecognised association: 'servers' error

2012-06-05 Thread Thorsten Heit
-->\n ... @110:12) Line: 110 Column: 12". It seems to me that your XML file contains invalid XML. Perhaps a tag is not correctly closed, misspelled, ... Regards Thorsten

Re: Re: apache httpd plugin

2012-05-22 Thread Thorsten Heit
d then start testing? If you still need starting/stopping the Apache instance from within a Maven build, I'd suggest you have a look at the exec plugin ([1]) and start and stop your Apache instance directly via "apachectl -k {start,stop}". [1] http://mojo.codehaus.org/exec-maven-plugin/ HTH Thorsten

Re: How to do a release build in Maven?

2012-05-22 Thread Thorsten Heit
Hi, > How can I do something similar in Maven, or how does Maven do a release > build? http://www.lmgtfy.com/?q=maven+release+build First link... Regards Thorsten

Some questions about Webby

2012-05-08 Thread Thorsten Heit
ng SSL connections. This works well as long as I'm debugging my application via Eclipse, WTP and m2eclipse-wtp, but obviously not when using Webby. Creating a run or debug configuration lets me only choose a normal HTTP port, but there's nothing about HTTPS... Regards Thorsten

Re: javac: invalid target release: 1.7

2012-04-30 Thread Thorsten Heit
pgrade to java 1.7 (if this is the cause of the error). Yup. A compiler target 1.7 means Java 7 is needed for successful compilation. > Are there > other means to fix this? Install Oracle's recently released Java 7 port for MacOS X on your machine :-) HTH Thorsten

Re: Errors in maven build

2012-04-27 Thread Thorsten Heit
Hi, > I have been getting the following errors while executing “man > package” for Jenkins plug-in. > The error log is attached here. IIRC I have seen that error when using Java 7 for packaging a Hudson/Jenkins plugin. Try to use Java 6 instead, that should do the trick. HTH Thorsten

Re: using jelly:util failure

2012-04-17 Thread thorsten . heit
ress from here. > please help!!! You'd better ask your questions on the Jenkins mailing lists: http://jenkins-ci.org/content/mailing-lists Regards Thorsten

Re: Re: Re: maven compile error message format

2012-04-11 Thread Thorsten Heit
ntifierStart%28int%29 http://docs.oracle.com/javase/7/docs/api/java/lang/Character.html#isJavaIdentifierPart%28int%29 HTH Thorsten

Re: Re: maven compile error message format

2012-04-11 Thread Thorsten Heit
ice-1.0; (...) Quite easy: These package names are invalid. See for example here: http://java.about.com/od/i/g/identifier.htm HTH Thorsten

Re: eclipse plugin for maven using jdk 1.3

2012-04-02 Thread Thorsten Heit
Hi, > I checked if the JRE in the Run AS configuration was 1.3 but it was not. Why > is the maven plugin using 1.3 is beyond my understanding. http://maven.apache.org/general.html#Compiling-J2SE-5 HTH Thorsten

Re: Re: Re: Re: useing profiles to control properties to drive version numbers in poms

2012-03-19 Thread Thorsten Heit
ut of the binary, you should > have multiple projects each one generate one of the flavors. +1 Regards Thorsten

Re: Re: Re: useing profiles to control properties to drive version numbers in poms

2012-03-19 Thread Thorsten Heit
gured with special jobs doing these deployment tasks would result in having to implement the same tasks again and again. IMHO this is more error-prone than having a default job in a parent pom doing that... Regards Thorsten

Re: Re: useing profiles to control properties to drive version numbers in poms

2012-03-18 Thread Thorsten Heit
t; Profiles are simply very rarely a good solution. I'm using profiles at work for the sole purpose of deciding what to do with the build artifact, i.e. activating different deployment targets (application servers) for an EAR. Regards Thorsten

Antwort: Maven error: Embedded error: Not a root project: org.sonar.api.batch.bootstrap.ProjectDefinition@1bc5130a

2012-03-12 Thread thorsten . heit
ject is an aggregator project: > pom and you want to run Sonar on a project that doesn't contain any sources...? Regards Thorsten

Re: The "perfect" reporting tool?

2012-03-07 Thread Thorsten Heit
27;m using a corporate parent pom containing a couple of profiles that, when activated, add Findbugs, Checkstyle and/or PMD reports to the generated website. Works pretty fine. Regards Thorsten

Re: Re: Added source directory still allows for compile errors

2012-03-06 Thread Thorsten Heit
itten an extension for m2eclipse so you can use this plugin from within Eclipse... Regards Thorsten

Re: Re: Antwort: eclipse plugin has a POM of its own

2012-03-05 Thread Thorsten Heit
ocumentation ([3]); perhaps their configuration has to be adapted to fit your project layout. [1] http://maven.apache.org/guides/index.html [2] http://maven.apache.org/guides/mini/guide-using-one-source-directory.html [3] http://maven.apache.org/plugins/index.html Regards Thorsten

Antwort: eclipse plugin has a POM of its own

2012-03-05 Thread Thorsten Heit
should also work as directory separator under Java in Windows environments), or a double backslash '\\'. HTH Thorsten

Re: AppAssembler and very long classpath

2012-02-29 Thread Thorsten Heit
*bump* Anyone? "Thorsten Heit" schrieb am 13.02.2012 17:30:44: > Von: "Thorsten Heit" > An: Maven Users List > Datum: 13.02.2012 17:31 > Betreff: AppAssembler and very long classpath > > Hi, > > I'm using the appassembler plugin to ge

Antwort: RE: offline not truly offline?

2012-02-29 Thread Thorsten Heit
7;t have a proxy, but I do have everything redirecting via a mirror > to our Nexus repository and I still have to do the above to get it to > find my archetypes. http://jira.codehaus.org/browse/ARCHETYPE-283 http://jira.codehaus.org/browse/ARCHETYPE-358 HTH Thorsten

AppAssembler and very long classpath

2012-02-13 Thread Thorsten Heit
1]" The only other hint about "booter-unix" / "booter-windows" is under "Usage -> Daemon" in the mojo documentation, but I cannot figure out how to create such a daemon mechanism... Can someone point me in the right direction and/or has a working solution for that problem? Regards Thorsten

Re: Re: Deploy javadoc/sources for snapshots

2012-02-10 Thread Thorsten Heit
ofiles. This is basically what I'm doing in several EAR projects I'm working on with a couple of deployment targets specified in profiles in the parent pom. Regards Thorsten

Antwort: Deploy javadoc/sources for snapshots

2012-02-10 Thread Thorsten Heit
my parent pom. See: http://maven.apache.org/plugins/maven-javadoc-plugin/faq.html#How_to_deploy_Javadoc_jar_file http://maven.apache.org/plugins/maven-source-plugin/usage.html HTH Thorsten

Re: maven and wsdl2java

2012-02-06 Thread Thorsten Heit
server:port/some/more/stuff"/> (...) I replaced the line marked with "**" with http://webservices.test.srv.de"/> and the ServiceLocator was generated, i.e. the problem was solved... HTH Thorsten

Re: Plugin execution not covered by lifecycle configuration

2012-01-24 Thread Thorsten Heit
> [WARNING] 'dependencies.dependency.scope' for > com.adobe.flex.framework:halo:swc:theme must be one of [provided, compile, > runtime, test, system] but is 'theme'. @ line 88, column 11 What don't you understand when you read that warning message? Regards Thorsten

Re: Installation glitch!

2012-01-09 Thread Thorsten Heit
ne...? Have you tried to logout and then login again before trying out "mvn --version"? Changing environment variables doesn't have any influence to already running programs... Regards Thorsten

Re: Creating an OS X Application

2011-11-10 Thread Thorsten Heit
Hi, > Is there a plug-in somewhere that can help package a Java application as > an OS X application? Have a look at http://mojo.codehaus.org/osxappbundle-maven-plugin/ I have to admit that I haven't tried it; I can't tell how good it works... Cheers Thorsten

Re: Maven deploy question ...

2011-10-17 Thread Thorsten Heit
a look at http://wiki.hudson-ci.org/display/HUDSON/Join+Plugin or https://wiki.jenkins-ci.org/display/JENKINS/Join+Plugin if you're using Jenkins. I haven't used that plugin by myself, but according to the docs it seems that it can be a solution for your problem. HTH Thorsten

Re: Re: UTF-8 Test Mystery

2011-10-11 Thread Thorsten Heit
command line with *snip* Can't you just use plain ASCII characters in your source code? This will prevent you from such mysterious behaviour. And, as I wrote in an earlier mail, replace non-ASCII-characters in strings by their Unicode value. In that case, if I have seen right, replace the lambda char by \u03BB (Unicode value of the Greek small letter lambda). Saves you a lot of time Regards Thorsten

Antwort: UTF-8 Test Mystery

2011-10-11 Thread Thorsten Heit
d isn't directly readable, but prevents you from such troubles as you have. As I wrote, this also works for properties. HTH Thorsten

Re: Re: Incorrect assembly created with Maven 3.0.3

2011-09-20 Thread Thorsten Heit
and/or xalan (don't remember it exactly because I changed the project in the meantime...) Regards Thorsten

Antwort: Re: Incorrect assembly created with Maven 3.0.3

2011-09-20 Thread Thorsten Heit
Hi, > Thorsten Heit wrote: > > > > ...snip ... > > > > But what puzzles me is that the archives created by Maven 2.2.1 and Maven > > 3.0.3 are different, and I don't see a reason why... > > > > ...snip... > > > > Hi there,

Re: Re: Setting site distribution URL in parent POM for entire company

2011-08-19 Thread Thorsten Heit
the deployment URL. > This would let me to provide a default site.xml as well. I forgot to mention that I only set the properties and distribution management in the parent pom; there's no need to overwrite them in a depending project. BTW, I'm using Maven 3. Thorsten

Re: Setting site distribution URL in parent POM for entire company

2011-08-19 Thread Thorsten Heit
e.org/xsd/decoration-1.0.0.xsd";> http://maven.apache.org/"; img=" http://maven.apache.org/images/logos/maven-feather.png"; /> HTH Thorsten

  1   2   3   4   >