o adding a couple notes from the mailing lists

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@291249 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2005-09-24 04:42:04 +00:00
parent c24680e912
commit 15913ddde0
1 changed files with 77 additions and 1 deletions

View File

@ -216,6 +216,19 @@ Compiling 1 source file to /tmp/my-app/target/classes
~~* How do I filter resources against my POM?
+-----+
FYI - In beta-2, while the other technique is still supported, the
recommended way is finally settled:
<build>
<filters>
<filtersFile>...</filtersFile>
</filters>
</build>
+-----+
~~* How do use resources with my tests?
~~ o EIDSL
@ -244,4 +257,67 @@ Compiling 1 source file to /tmp/my-app/target/classes
~~* How do I internationalize my site?
~~http://docs.codehaus.org/display/MAVEN/Maven+Plugin+Matrix
~~http://docs.codehaus.org/display/MAVEN/Maven+Plugin+Matrix
+-----+
multiple repositories
<project>
...
<repositories>
<repository>
<id>central</id>
<name>Maven Repository Switchboard</name>
<url>http://repo1.maven.org/maven2</url>
</repository>
<repository>
<id>my-repo</id>
<name>your custom repo</name>
<url>http://jarsm2.dyndns.dk</url>
</repository>
</repositories>
...
</project>
==
Project properties
Actually, no. It's *like* the properties defined in profiles in syntax,
but this is a properties section that is specified as a direct child of
the <project> element. So:
<project>
~ ...
~ <properties>
~ <name>value</name>
~ </properties>
</project>
==
Profile inheritance the same as standard inheritence and resources sets are currently not
inherited.
DefaultModelInheritenceAssembler.
Merged:
- dependencies
- developers and contributors
- plugin lists (including reports)
- plugin executions with matching ids
- plugin configuration
==
System vars are accessed implicitly in m2...try:
<configuration>
~ <debug>${build.debug}</debug>
~ <source>${build.jdk}</source>
~ <target>${build.jdk}</target>
</configuration>
+-----+