Re: JPMS whitebox testing issues

2024-10-11 Thread Ceki Gulcu
I forgot to mention that the original mail from Stephen is quite informative and I thank him for that. On 10/10/2024 22:49, Ceki Gulcu wrote: Hi Stephen, Thank you for broaching the issue of whitebox testing with JMPS. I think that it is an important topic. I should also like to

Re: JPMS whitebox testing issues

2024-10-10 Thread Ceki Gulcu
.jar in the tests of project "Bee". Perhaps if the whitebox testing issue with JMPS is settled on, then depending on tests-jars can be solved as well. Best regards, -- Ceki Gülcü Sponsoring SLF4J/logback/reload4j at https://github.com/sponsors/qos-ch On 23/09/2024 17:47, Stephen Colebo

Re: Unexpected behavior of the javadoc plugin?

2024-01-08 Thread Ceki Gulcu
imported, I would prefer to keep it minimal and have it free of any and elements in order to not pollute importing projects. Is my concern warranted? -- Ceki Gülcü Sponsoring SLF4J/logback/reload4j at https://github.com/sponsors/qos-ch On 12/28/2023 7:17 PM, Tamás Cservenák wrote: > Hej C

Re: Unexpected behavior of the javadoc plugin?

2023-12-28 Thread Ceki Gulcu
Hello all, Given the javadoc generation is an important part of software projects, maybe someone would care to comment whether the behavior described below is expected or not? In the meantime, happy new year to all, -- Ceki Gülcü Sponsoring SLF4J/logback/reload4j at https://github.com

Unexpected behavior of the javadoc plugin?

2023-12-23 Thread Ceki Gulcu
avior of javadoc:aggregate described above is expected or actually a problem? Best regards, [1] https://www.garretwilson.com/blog/2023/06/14/improve-maven-bom-pattern [2] https://github.com/qos-ch/slf4j/tree/branch_2.1.x -- Ceki Gülcü Sponsoring SLF4J/logback/r

Re: Working around "Can't compile test sources when main sources are missing a module descriptor"

2023-07-12 Thread Ceki Gülcü
said assertion. Best regards, ps. I did not have time to read https://github.com/junit-team/junit5/discussions/3370 -- Ceki Gülcü Sponsoring SLF4J/logback/reload4j at https://github.com/sponsors/qos-ch On 6/29/2023 7:02 PM, Mark Raynsford wrote: > (Re-sent using correct address!) > >

Re: BOM files referencing optional dependencies

2023-06-17 Thread Ceki Gülcü
On 6/17/2023 9:32 PM, Ceki Gülcü wrote: > > Hello, > > Is it considered good practice to reference optional dependencies in BOM > files? My question is probably silly as BOM files are reserved for declaring artifacts a project builds itself and not for dependencies, option

BOM files referencing optional dependencies

2023-06-17 Thread Ceki Gülcü
Hello, Is it considered good practice to reference optional dependencies in BOM files? -- Ceki Gülcü Sponsoring SLF4J/logback/reload4j at https://github.com/sponsors/qos-ch - To unsubscribe, e-mail: users-unsubscr

Re: Modular path vs. class path determination

2022-10-17 Thread Ceki Gülcü
/JPMS modular. This approach is a lot less painful than in-single-module testing. -- Ceki Gülcü Sponsoring SLF4J/logback/reload4j at https://github.com/sponsors/qos-ch On 10/17/2022 1:27 PM, Martin Desruisseaux wrote: > Le 17/10/2022 à 12:33, Olivier Lamy a écrit : > >> I wanted

Modular path vs. class path determination

2022-09-30 Thread Ceki Gülcü
back/releases/tag/possible_mvn_issue Let me know if this merits the creation of a Jira issue. Your feedback would be most appreciated. -- Ceki Gülcü Sponsoring SLF4J/logback/reload4j at https://github.com/sponsors/qos-ch--module-path "C:\\home\\buzz\\logback\\logback-classic\\target\\c

Re: Race condition in slf4j-simple

2021-07-08 Thread Ceki
Hi Tibor, Your analysis makes sense. As SimpleLogger acts as an appender as found in log4j/logback backends, SimpleLogger should cater for concurrent access with some sort of synchronization. It currently does not. Please create a jira issue for this problem. Best regards, -- Ceki Gülcü On

Re: Loading groovy as a Jigsaw auto-module

2017-12-03 Thread Ceki Gulcu
F/services/org.codehaus.groovy.source.Extensions Removing this file solves the problem at least as far as Jigsaw module resolution is concerned. Running m-dependency-p, I see: o.c.groovy:groovy:jar:2.4.13:compile (optional) -- module groovy (auto) Again, thank you very much for your help, -- Ceki On 03.12.2017 14:

Loading groovy as a Jigsaw auto-module

2017-12-03 Thread Ceki Gulcu
xml files. Thus, if I understand correctly m-compiler-p parses module-info.java files before invoking javac. Really? Best regards, -- Ceki Gülcü - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: bug? strange resolution of commons-logging dependency

2009-07-01 Thread Ceki Gulcu
ns-logging version 99). In summary, there is strong evidence that common-logging 99 is not the culprit here. Can it be that the various dependencies, some in test scope and some in runtime scope, are confusing Maven's dependency resolution mechanism? Ceki Gulcu wrote: Lucas Bergman

Re: bug? strange resolution of commons-logging dependency

2009-07-01 Thread Ceki Gulcu
I forgot to mention that my tests were conducted using Maven 2.0.9. I will redo the tests with Maven 2.2.0. Ceki Gulcu wrote: Lucas Bergman wrote: Dennis Lundberg wrote: That is your problem. What this does is mess the dependency-tree. It removes commons-logging from the dependency

Re: bug? strange resolution of commons-logging dependency

2009-07-01 Thread Ceki Gulcu
t;htmlunitbug" still fails, it would be premature to incriminate version 99. Something else is afoot here. [1] http://tinyurl.com/nfw332 -- Lucas -- Ceki Gülcü Logback: The reliable, generic, fast and flexible logging framework for Java. http://logback.qos.ch

Re: bug? strange resolution of commons-logging dependency

2009-06-30 Thread Ceki Gulcu
now :-/ Note that we wanted to release version 0.0-EMPTY, not version 99. One could argue that releasing 0.0-EMPTY could have prevented this issue from occurring. - Jörg -- Ceki Gülcü Logback: The reliable, generic, fast and flexible logging framework for Java. http:/

Re: Best practices for avoiding duplicate configuration files

2009-04-29 Thread Ceki Gulcu
Olivier, Since projects A and B seem to be just artifacts, I am still wondering why projects A and B need a configuration file for logging. If it is for testing purposes, why not use logback-text.xml and place it under /src/test/resources/ directory? -- Ceki Gülcü Logback: The reliable

Re: Best practices for avoiding duplicate configuration files

2009-04-29 Thread Ceki Gulcu
ies are located at path1, path2, ..., pathN. I am picking the first one." (It's just a warning...) Lobgack-classic is noticing an ambiguity and informing the user. HTH, -- Ceki Gülcü Logback: The reliable, generic, fast and flexible logging

Re: release maven-ear-plugin

2006-12-20 Thread ceki
Thanks Tom. I've just seen the vote in progress [1] on the maven dev list. [1] http://marc.theaimsgroup.com/?t=11662974761&r=1&w=2 "Tom Huybrechts" <[EMAIL PROTECTED]> wrote on 19.12.2006 16:28:15: > the vote for releasing the ear plugin is ongoing > just a little more patience... > > O

release maven-ear-plugin

2006-12-19 Thread ceki
Hello all, I am unaware (as in oblivious) of possible considerations preventing the release of the ear plug-in. However, looking through my peephole, I can say that our team is eagerly waiting for its release. In particular because the availability of the ear plug-in as a snapshot does not do u

Re: Re: Re: Dependency scopes

2006-08-30 Thread ceki
Thanks! "Martijn Dashorst" <[EMAIL PROTECTED]> 30.08.2006 16:17 Please respond to "Maven Users List" To "Maven Users List" cc Subject Re: Re: Re: Dependency scopes Reviewed by Category Yes, but "runtime classpath" != "runtime scope" runtime classpath ==

Re: Re: Dependency scopes

2006-08-30 Thread ceki
So, this means that war and ear plug-ins reference the runtime classpath instead of say compile or test. Correct? "Martijn Dashorst" <[EMAIL PROTECTED]> wrote on 30.08.2006 15:37:56: > No, but maven is also used to create war, ear and other distribution > packages. These packages need those act

Re: Dependency scopes

2006-08-30 Thread ceki
> On 8/15/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > The difference between the runtime and test scopes is also not very > > clear to me. "Nick Veys" <[EMAIL PROTECTED]> wrote on 17.08.2006 06:16:40: > This was already answered, but the test dependencies aren't needed for > "normal"

Re: Dependency scopes

2006-08-17 Thread ceki
Nick, I very much appreciate your response. I wish the article of reference on subject, namely, "Introduction to the Dependency Mechanism" was somewhat more precise. Perhaps the maintainers of the document could have another look at it. Is filing a bug report appropriate? "Nick Veys" <[EMAIL PRO

Re: Dependency scopes

2006-08-16 Thread ceki
Mike, thank you for taking the time to respond. My question had several parts and your response relates to the difference between runtime scope and the test scope. I wonder if someone would care to respond to the remaining parts. Mike Perham <[EMAIL PROTECTED]> wrote on 15.08.2006 18:04:17: > >

Dependency scopes

2006-08-15 Thread ceki
Hello, I would like to ask a question regarding dependency scopes in Maven2. After reading the article "Introduction to the Dependency Mechanism" [1], I've got several questions that may have been answered previously. I apologize in advance if that is the case. The said article mentions the notio

Re: Utility to create upload bundles

2006-07-28 Thread Ceki Gülcü
TECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Ceki Gülcü http://ceki.blogspot.com/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

How to be compatible with both M1 and M2 repos

2006-07-16 Thread Ceki Gülcü
way to upload dependencies on ibiblio so that they are compatible with both maven1 and maven2? Thank you for your input, -- Ceki Gülcü http://ceki.blogspot.com/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: [m2] jetty6 plugin & log4j

2006-02-18 Thread Ceki Gülcü
ave the "-DDEBUG" and "-DDEBUG_PATTERNS=net.sf.hibernate" > a shot, but these too seemed to be ignored. > > I get the feeling that I am clashing somehow with Jetty's own > logging. Can anyone help me unravel this? > > Thanks > --David -- Ceki Gülcü - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Quickly changing the Maven template

2003-09-23 Thread Ceki Gülcü
Thank you very much, Dion. At 08:34 PM 9/21/2003 +1000, [EMAIL PROTECTED] wrote: It's in the documentation. See http://maven.apache.org/reference/plugins/xdoc/faq.html#navigation-images -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Ceki Gülcü &l

Re: Quickly changing the Maven template

2003-09-20 Thread Ceki Gülcü
At 10:40 PM 9/19/2003 -0400, Jason van Zyl wrote: On Fri, 2003-09-19 at 15:37, Ceki Gülcü wrote: > Hello all, > > How difficult is it to change the Maven template so that the generated > project pages contain an extra image? > > For an example of what is meant please refe

Quickly changing the Maven template

2003-09-19 Thread Ceki Gülcü
similar procedure for doing the same with Maven? Your answers will be collated and forwarded to the various ASF projects using Maven. TIA, -- Ceki Gülcü For log4j documentation consider "The complete log4j manual" ISBN: 2970036908 http://www.qos.ch/shop/products/clm_t.jsp