Hi, > generate their spec file
If this is the spec file you mean: http://www.rpm.org/max-rpm/s1-rpm-build-creating-spec-file.html, then I would prefer "The %build Section" to be: "./build.sh jar" or something similar. If this doesn't work, then I would like to understand what the problem is, so I can fix the build script, or improve the build documentation. I could create an Ant build.xml or Maven pom.xml, but I would prefer not to because that would be a partial solution only. There are multiple problems to use Maven or Ant, the main reason is: it would be more complicated. Currently, Maven is only called in some cases (to download build dependencies, and to upload the jar file into the local repository). I do know both Ant and Maven quite well by the way. Do you need to know the list of runtime dependencies? Well, H2 doesn't have any runtime dependencies except for a JDK. However, there are optional dependencies, for example if you want to use the Lucene Fulltext Search feature you need Lucene. But that's not used by default. There are other such optional dependencies (the Servlet API if you want to use the H2 Console Servlet). Those dependencies are also used when compiling, and are downloaded by the build script (using Maven, if installed, as you found out). Regards, Thomas -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
