how to find the *.hbm.xml if the file doesnt located in the resources directory?

2008-06-30 Thread oliver.maven
hi,all due to i put the *.hbm.xml file together with the persistent class,when i build the project,will cause file not found error. so how to solve this so that can find the file?!put them in resources?but i still like these close to it's java class. thank you! oliver.lee 2008-06-30

RE: I get an Cannot create virtual machine error when trying to Install maven

2008-06-30 Thread Bernhard David
Hello, what's your MAVEN_OPTS env variable set to? Maven passes that as arguments to the java VM when executing. Yours, David Bernhard -Original Message- From: James Davis [mailto:[EMAIL PROTECTED] Sent: 29 June 2008 00:20 To: users@maven.apache.org Subject: I get an Cannot

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Wayne Fay
As far as I know, the answer is 4. Generally I expect your problem(s) can be solved by setting up multiple environments, each with its own repo manager and liberal use of rm -rf ~/.m2/repository (or dependency:purge-local-repository). Then you would specify which repo to connect to with a profile

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Ishaaq Chandy
Well, not knowing who else uses maven out there I have no reasonable way to verify or deny your claim that this is not useful for 95%. I can only say that I find it hard to believe that only 5% of maven users would conform to both of the following criteria - but then again, I don't really know:

RE: fatal dependency management flaw in maven?

2008-06-30 Thread Jörg Schaible
Hi Ishaaq, Ishaaq Chandy wrote: Well, not knowing who else uses maven out there I have no reasonable way to verify or deny your claim that this is not useful for 95%. I can only say that I find it hard to believe that only 5% of maven users would conform to both of the following criteria

Adding custom link to the report of mvn site.

2008-06-30 Thread Niranjan Deshpande
I generate some documentation as a part of maven's build life cycle. and i want the generated doc to be avaialble as a link on the report that maven generates after i run mvn site command. how to do this? -- Regards, Niranjan Deshpande Shut yourself from the world and create the reality you

Maven2+Jboss support(what's the future of jboss with maven2)

2008-06-30 Thread Renu Gupta
Hi, Can any one tell me that Does maven2 supports jboss plugin? Because none of my jboss goals are working in maven2. When I execute mvn jboss:start it gives successful status but server is not actually started Same is the case with other goals of jboss plugin I m giving the link when it says

How to checkout latest code from CVS?

2008-06-30 Thread Anand Kulkarni
Hi, I want to check out latest code from CVS using Maven. I browsed the SCM project and found the following URL: http://maven.apache.org/scm/plugins/checkout-mojo.html The link founds good but how to introduce it into my pom.xml file is not discussed. Can you please throw some light on this?

Re: Maven2+Jboss support(what's the future of jboss with maven2)

2008-06-30 Thread Stefan Seidel
Could it be you're looking for Cargo? http://cargo.codehaus.org/Maven2+plugin Stefan Renu Gupta wrote: Hi, Can any one tell me that Does maven2 supports jboss plugin? Because none of my jboss goals are working in maven2. When I execute mvn jboss:start it gives successful status but server

MavenProperties

2008-06-30 Thread buters
Hi, my problem: ... 94 Properties configFile = new Properties(); 95 configFile.load(A.class.getResourceAsStream(/resources/A.ini)); ... The file 'A.ini' is located in src/main/resources. I get NullPointerException at line 95. Where and which changes must I make? Thanks beforehand,

MavenProperties2

2008-06-30 Thread buters
Hi, my problem: analog to MavenProperties the application can not find log4j.properties. It is located in src/main/resorces and a copy in lib. But I get an error: 'log4j:ERROR Could not connect to remote log4j server at [localhost]. We will try again later. java.net.ConnectException: Connection

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Ishaaq Chandy
Hi Jörg, Thanks for your reply. Unapproved transitive deps can creep in because we do not lock down plugin dep versions - for e.g. even maven's compiler plugin could conceivably have transitive deps - we do not explicitly lock down the version numbers of each and every plugin we use - yes, this

RE: MavenProperties

2008-06-30 Thread buters
Thank you very much Ringo. Yes this works. Best regards, buters De Smet Ringo wrote: If you do not want the second resources folder, you have to adapt your code to read: configFile.load(A.class.getResourceAsStream(A.ini)); My mistake! This should read:

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Stuart McCulloch
2008/6/30 Ishaaq Chandy [EMAIL PROTECTED]: Hi Jörg, Thanks for your reply. Unapproved transitive deps can creep in because we do not lock down plugin dep versions - for e.g. even maven's compiler plugin could conceivably have transitive deps - we do not explicitly lock down the version

Re: MavenProperties2

2008-06-30 Thread buters
More detailed: I've (in 'MavenProperties') explicit in A.java path to my file 94 Properties configFile = new Properties(); 95 configFile.load(A.class.getResourceAsStream(/A.ini)); For log4j things I have only: ... public static Logger logger = Logger.getLogger(A); ... There is no

There are no tests to run

2008-06-30 Thread buters
Hi, I've created tests. They run ok with junit-test. But mvn test display this: --- T E S T S --- There are no tests to run. Results : Tests run: 0, Failures: 0, Errors: 0, Skipped: 0 What

RE: There are no tests to run

2008-06-30 Thread De Smet Ringo
I've created tests. They run ok with junit-test. But mvn test display this: --- T E S T S --- There are no tests to run. Results : Tests run: 0, Failures: 0, Errors: 0, Skipped: 0

RE: MavenProperties2

2008-06-30 Thread De Smet Ringo
For log4j things I have only: ... public static Logger logger = Logger.getLogger(A); ... There is no explicit reference to, where is the log4j.properties file. Did you create a log4j.properties file? If so, where did you put it in the source tree? I suspect you have a log4j.properties

RE: There are no tests to run

2008-06-30 Thread buters
I use m2eclipse and I create Maven projects direct in eclipse. Also folder structure must be ok. (src/test/java) De Smet Ringo wrote: I've created tests. They run ok with junit-test. But mvn test display this: --- T E S T S

RE: There are no tests to run

2008-06-30 Thread De Smet Ringo
-Original Message- From: buters [mailto:[EMAIL PROTECTED] Sent: maandag 30 juni 2008 15:04 To: users@maven.apache.org Subject: RE: There are no tests to run I use m2eclipse and I create Maven projects direct in eclipse. Also folder structure must be ok. (src/test/java) Seems

RE: MavenProperties2

2008-06-30 Thread buters
log4j.properties file is arranged in src/main/resources and in lib. Earlier it was an Ant-Project and all work cute. Now it must be a Maven-Project. It won't only work on this place. De Smet Ringo wrote: For log4j things I have only: ... public static Logger logger =

RE: MavenProperties2

2008-06-30 Thread De Smet Ringo
-Original Message- From: buters [mailto:[EMAIL PROTECTED] Sent: maandag 30 juni 2008 15:15 To: users@maven.apache.org Subject: RE: MavenProperties2 log4j.properties file is arranged in src/main/resources and in lib. Earlier it was an Ant-Project and all work cute. Now it

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Ishaaq Chandy
Hmm, so in short you're telling me that I should completely lock down my build process simply because maven can't differentiate between plugin deps, test deps and compile/runtime deps. Look, I know I'm starting to sound like a whining complainer and I wouldn't blame you if you got annoyed, but

RE: Maven2+Jboss support(what's the future of jboss with maven2)

2008-06-30 Thread Renu Gupta
Hey thanx a lot Stefan.. Its working. But there is one more problem with the plugin.. It only deploys my application in the container. But doesn't explicitly starts and stops the container. Why so Here is my pom configuration: plugin

RE: fatal dependency management flaw in maven?

2008-06-30 Thread Jörg Schaible
Ishaaq Chandy wrote: Hmm, so in short you're telling me that I should completely lock down my build process simply because maven can't differentiate between plugin deps, test deps and compile/runtime deps. Look, I know I'm starting to sound like a whining complainer and I wouldn't blame

Re: Manipulation of ibm-webservices-bnd.xmi

2008-06-30 Thread david
On Mon, 30 Jun 2008, [EMAIL PROTECTED] wrote: Hi All. I don't mind not having this file generated, but I do need to manipulate it. The issue arises with the name attribute of the routerModules element. It needs the name of the war file that hosts the router modules. Maybe you

RE: There are no tests to run

2008-06-30 Thread buters
Thank you very much Ringo. My tests was named ATests.java. I've renamed it in ATest.java, and now it works. Best regards, buters De Smet Ringo wrote: -Original Message- From: buters [mailto:[EMAIL PROTECTED] Sent: maandag 30 juni 2008 15:04 To: users@maven.apache.org

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Stuart McCulloch
2008/6/30 Ishaaq Chandy [EMAIL PROTECTED]: Hmm, so in short you're telling me that I should completely lock down my build process simply because maven can't differentiate between plugin deps, test deps and compile/runtime deps. my perspective (as a maven user) is that if I was concerned

maven fails to find snapshot artifact

2008-06-30 Thread Stefan Oestreicher
Hi, I just installed Archiva and added the people.apache.org snapshot repository through a proxy connector to my internal snapshot repository. This is working perfectly, if I try to download an artifact that's hosted on people.apache.org it's successfully cached by archiva. Maven however

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Ishaaq Chandy
Aha! I think I see now why you think I have a special case, I think its a simple case of misunderstanding - for which I'll assume all fault is mine :) Locked down versioning is not really the point. Even if we had a locked versions of the test (in fact we do lock the test dependency versions) and

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Ishaaq Chandy
2008/7/1 Stuart McCulloch [EMAIL PROTECTED]: my perspective (as a maven user) is that if I was concerned about dragging in artifacts with certain licenses then I'd want to be 100% sure I had everything locked down build-wise. that seems easier to defend (legally-speaking) than relying on

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Stuart McCulloch
2008/6/30 Ishaaq Chandy [EMAIL PROTECTED]: Well, assuming that a hypothetical implementation of maven only downloads compile/runtime deps from the repo that we actively control and restrict access to, wouldn't that be safe enough? I can't think of a scenario where this would lead to accidents

Strange Springframework spring-ldap problem

2008-06-30 Thread Ian Coleman
I'm having a problem dowloading the dependency from the main repo: dependency groupIdorg.springframework/groupId artifactIdspring-ldap/artifactId version1.1.2/version /dependency When Maven tries to retrieve the dependencies, I get checksum errors (posted below). On

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Geoffrey Wiseman
On Mon, Jun 30, 2008 at 4:14 AM, Ishaaq Chandy [EMAIL PROTECTED] wrote: Well, not knowing who else uses maven out there I have no reasonable way to verify or deny your claim that this is not useful for 95%. I can only say that I find it hard to believe that only 5% of maven users would conform

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Ishaaq Chandy
Yup, you're assuming that maven works as it currently does - i.e. it is unable to remember the context of how the dependency was originally pulled down. However, even if you did assume that, it would be easy to work around if you enforced a full build from scratch to delete the local repo. As a

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Nigel Magnay
There would be other ways to accomplish this -- for instance, if Maven were aware of the license (if it were published in the POM), you could put It is published in the pom. You'd probably still have to cope with libraries that are (say) GPL, but don't declare themselves in the pom as such.

ant + maven: double configuration...how?

2008-06-30 Thread Nicola Benaglia
Hi, i have a three module maven project: 1) ejb 2) war 3) ear In ear's pom.xml I put the following plugins plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-antrun-plugin/artifactId executions execution

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Ishaaq Chandy
I agree to a certain extend - i.e. maven is not really the tool to use for license verification, but since dependency management and license management are related issues I'd like to leverage its dependency management ability to solve my license verification needs, but it looks like it stops me

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Nigel Magnay
However, even if you did assume that, it would be easy to work around if you enforced a full build from scratch to delete the local repo. As a developer you may decide to avoid doing a full build but our continuous integration environment would certainly enforce it and would catch the problem

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Wayne Fay
There would be other ways to accomplish this -- for instance, if Maven were aware of the license (if it were published in the POM), you could put You'd probably still have to cope with libraries that are (say) GPL, but don't declare themselves in the pom as such. Which is why people who

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Nigel Magnay
... and lo - I can't even read - http://maven.apache.org/plugins/maven-enforcer-plugin/rules/bannedDependencies.html On Mon, Jun 30, 2008 at 4:48 PM, Nigel Magnay [EMAIL PROTECTED] wrote: However, even if you did assume that, it would be easy to work around if you enforced a full build from

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Ishaaq Chandy
Or libraries that illegally (whether maliciously or not) have not-redistributable transitive dependencies of their own that are not compatible with their own licenses. So, yes, I agree, you can't really legally rely on that - you'd have to manually check each dep down the whole dependency tree -

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Kalle Korhonen
The dependency report in the soon-to-be-released next version, 2.1, of MPIR plugin lists the license used (assuming the license section is filled in in the particular pom). That should help verifying the licenses used and needed. Kalle On Mon, Jun 30, 2008 at 8:53 AM, Ishaaq Chandy [EMAIL

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Ishaaq Chandy
2008/7/1 Nigel Magnay [EMAIL PROTECTED]: However, even if you did assume that, it would be easy to work around if you enforced a full build from scratch to delete the local repo. As a developer you may decide to avoid doing a full build but our continuous integration environment would

Assembly: how to include sources of dependencies

2008-06-30 Thread Michael Gruebsch
Hi, I want to build an baseline distribution for the sake of taking a snapshot of the current project and its dependencies. This distribution shall include the *-source.jar files of all dependencies as available in the repository. For that purpose I tried various configurations of the

Assembly: Dependencies which are not part of the classpath

2008-06-30 Thread Michael Gruebsch
Hi, I would like to define a dependency which is necessary for the project at runtime and: * gets imported from the repository -- scope != system * should be assembled for runtime distributions -- scope != provided * should not be added to the compile and runtime classpath -- scope != runtime

mvn site / reports / scm plugin

2008-06-30 Thread Peter Horlock
Hi folks, I am using Maven 2.09 with site plugin 2.0-beta-6, maven-project-info-reports-plugin 2.0.1 and the maven-changelog-plugin 2.1. In my parent pom I got: […] scm connectionscm:svn:https://myURL:443/myMainProject/TRUNK /connection

Re: Surefire Test Sequence..

2008-06-30 Thread Martin Höller
On Saturday 28 June 2008 Niranjan Deshpande wrote: Can i get a jar of the junit4.x maven plugin? Never heard of this plugin and according to its SVN repository it's quite dead. Are you maybe looking the maven-surefire-plugin[0]? hth, - martin [0]

RE: I get an Cannot create virtual machine error when trying to Install maven

2008-06-30 Thread Guba, Nicolai
Hmmm, maybe a bit more info about your environment is necessary. What's your OS? Java Version? Where is the JDK installed? Are you running this under cygwin? What output does java --version produce? -Original Message- From: James Davis [mailto:[EMAIL PROTECTED] Sent:

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Nigel Magnay
On Mon, Jun 30, 2008 at 5:10 PM, Ishaaq Chandy [EMAIL PROTECTED] wrote: 2008/7/1 Nigel Magnay [EMAIL PROTECTED]: However, even if you did assume that, it would be easy to work around if you enforced a full build from scratch to delete the local repo. As a developer you may decide to

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Jörg Schaible
Hi Ishaaq, Ishaaq Chandy wrote: Aha! I think I see now why you think I have a special case, I think its a simple case of misunderstanding - for which I'll assume all fault is mine :) Locked down versioning is not really the point. Even if we had a locked versions of the test (in fact we

Copy files to WAR without copy them to the source folder

2008-06-30 Thread Fabricio Lemos
I want to copy some files to my WEB-INF when I package my Web Application. So I included the configuration webResources resource directorydist/Jboss/teste/directory targetPathWEB-INF/targetPath /resource /webResources on the maven-war-plugin The files are copied correctly to the war, the

How do I deploy my jar in my remote repository?

2008-06-30 Thread buters
Hi, here it is explained: http://maven.apache.org/guides/getting-started/index.html#How_do_I_deploy_my_jar_in_my_remote_repository I don't only understand here one thing. How can I assign my remote repository an id? Thanks beforehand, regards, buters -- View this message in context:

RE: fatal dependency management flaw in maven?

2008-06-30 Thread Brian E. Fox
1. A locked down repo in which only approved versions of some deps exist. 2. An open repo which proxied on to maven central. This is commonly done where the CI system uses only the approved versions and the devs are free to use the proxied one. It simply means that they must be sure that the

RE: fatal dependency management flaw in maven?

2008-06-30 Thread Brian E. Fox
Hmm, so in short you're telling me that I should completely lock down my build process simply because maven can't differentiate between plugin deps, test deps and compile/runtime deps. No, only because it will save you hassle later. Another thing to consider is that regardless of what decisions

RE: fatal dependency management flaw in maven?

2008-06-30 Thread Brian E. Fox
(slightly) surprised there isn't a dependency black/whitelisting enforcer rule - but just because I haven't seen one doesn't mean there isn't one out there. There is. It currently doesn't consider effective scope, but it could.

Issue with ProGuard Maven plugin.

2008-06-30 Thread Mikel Cármenes Cavia
Hey guys, I am trying to obfuscate my code by using Maven's ProGuard plugin. This is the section I added to my POM file to activate the plugin: ... plugin groupIdcom.pyx4me/groupId artifactIdproguard-maven-plugin/artifactId executions

Re: How do I deploy my jar in my remote repository?

2008-06-30 Thread Giancarlo Degani
The id value is not important, you have to match the id tag defined into your pom with an id tag defined in the server section of your settings.xml. This is an example: pom.xml repository idarchiva.acme.internal/id nameInternal Release Repository/name

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Lee Meador
It seems to me to be a management problem rather than a technical problem although the technical tools could help the manager identify the problem. If you inform your developers that they can only use certain libraries and have to check with your (or someone) if they want to use other libraries,

Re: Maven WebSphere 6.1

2008-06-30 Thread Lee Meador
Just a note to remind that the dependencies are different for WAS 6.0 and 6.1. One particular difference is the eclipse-like paths to important jars in 6.1 that weren't there in 6.0. These paths look like paths to jars inside eclipse plugins and have a plugins folder as one path component.

maintaining versions across multi-module project

2008-06-30 Thread Kallin Nagelberg
Can anyone tell me what is the best/simplest way to maintain a version number across all the poms in a multi-module project? They are all to be deployed with the same version every time. Ideally, the version could be declared in one place (the superpom), and all children would know to use it.

Re: How do I deploy my jar in my remote repository?

2008-06-30 Thread buters
Thank you very much Giancarlo. Another question: which user-password paar? server-user-password or archiva-user-password? Thanks beforehand, regards, buters Giancarlo Degani wrote: The id value is not important, you have to match the id tag defined into your pom with an id tag defined in

Re: How do I deploy my jar in my remote repository?

2008-06-30 Thread buters
No, I want another question. Why this doesn't work with remote request? For example with https://mysite/artifactory/internal. Giancarlo Degani wrote: The id value is not important, you have to match the id tag defined into your pom with an id tag defined in the server section of your

Re: How do I deploy my jar in my remote repository?

2008-06-30 Thread buters
For archiva and artifactory I can really create username with password. But if I have a remote repository alone, which username and password? Giancarlo Degani wrote: The id value is not important, you have to match the id tag defined into your pom with an id tag defined in the server

Re: Issue with ProGuard Maven plugin.

2008-06-30 Thread Mikel Cármenes Cavia
I actually managed to get past this error, I shamelessly forgot to take care of my ProGuard parameters. My POM now looks includes all of the pertinent options, however, I continue to get errors, and I really have no clue what they mean: Here they are: [proguard] Warning:

Odd warning in assembly plugin

2008-06-30 Thread Kathryn Huxtable
I'm making an assembly for a project and one of its runtime dependencies is something called grouper. I'm getting the following warning: [WARNING] Attempting to build MavenProject instance for Artifact (edu.internet2.middleware.grouper:grouper:1.3.0) of type: jar; constructing POM

Re: Odd warning in assembly plugin

2008-06-30 Thread John Casey
Nothing to be too concerned about. It's a warning more intended for plugin developers, meaning they passed in a jar artifact instead of a pom artifact, and the project-builder is constructing a pom artifact to build the project instance from instead. I just need to modify the assembly plugin to

Re: Odd warning in assembly plugin

2008-06-30 Thread Kathryn Huxtable
Great, but I don't get that warning for the other dependencies. Why not, I wonder? -K On Jun 30, 2008, at 4:21 PM, John Casey wrote: Nothing to be too concerned about. It's a warning more intended for plugin developers, meaning they passed in a jar artifact instead of a pom artifact, and

Re: How to copy unpacked nar file contents into target directory?

2008-06-30 Thread RalphWH
Thanks guys! I think I finally got something together that works: The in pom.xml of the project you want to assemble with the nar .so libraries: ... build plugins plugin groupIdorg.freehep/groupId artifactIdfreehep-nar-plugin/artifactId

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Wendy Smoak
On Mon, Jun 30, 2008 at 9:10 AM, Ishaaq Chandy [EMAIL PROTECTED] wrote: On the contrary, I actually do want to codify this with my pom - i.e. I want to be able to instruct maven via my pom on how to decide which of the configured repos to use when downloading certain types of dependencies.

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Ishaaq Chandy
I agree it is a management problem - the bulk of th work would have been done in the management of the internal closed repo - I just sort of expected to find some way to get maven to stop polluting the artifacts and their transitive deps retrieved from this repo from the other more open repos used

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Ishaaq Chandy
2008/7/1 Brian E. Fox [EMAIL PROTECTED]: There are some proposals on the table to further break down the local repo and until those are implemented, this use case can't really be fully handled...regardless of the implementation of scope based repos. --Brian A pity, but at least someone is

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Ishaaq Chandy
Well, that could possibly work except that there is no way I can get that internal locked down build to actually run - remember that maven does everything via plugins - even the compilation is done using a plugin - so all the plugins would have to be added to the closed repo - thus polluting it

Re: Odd warning in assembly plugin

2008-06-30 Thread John Casey
You're saying that you only get that warning for one dependency out of a group of them you're working with, within the assembly process? -j On Mon, Jun 30, 2008 at 5:52 PM, Kathryn Huxtable [EMAIL PROTECTED] wrote: Great, but I don't get that warning for the other dependencies. Why not, I

Re: Odd warning in assembly plugin

2008-06-30 Thread Kathryn Huxtable
Correct. I have several Internet2 projects which are not currently in any repository except my local one. They, in turn, have dependencies. Of these, only the Grouper project gives me the warning. -K, who will go over the Grouper and Signet poms with a fine-toothed comb to see what, if any,

Re: maintaining versions across multi-module project

2008-06-30 Thread Chris_Graham
I remove the version from all of the module poms entirely and just have the multi module build pom have it. It works for me. -Chris Kallin Nagelberg [EMAIL PROTECTED] wrote on 01/07/2008 04:55:00: Can anyone tell me what is the best/simplest way to maintain a version number across all the

Re: Manipulation of ibm-webservices-bnd.xmi

2008-06-30 Thread Chris_Graham
Hello David! Hmmm, upon reading, it may work. If I get some time I may investigate, but for the moment it works for me. -Chris [EMAIL PROTECTED] wrote on 30/06/2008 23:52:34: On Mon, 30 Jun 2008, [EMAIL PROTECTED] wrote: Hi All. I don't mind not having this file generated, but