diff --git a/maven-site/src/site/apt/guides/getting-started/index.apt b/maven-site/src/site/apt/guides/getting-started/index.apt index 000fb1b144..0fa1abd99c 100644 --- a/maven-site/src/site/apt/guides/getting-started/index.apt +++ b/maven-site/src/site/apt/guides/getting-started/index.apt @@ -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: + + + + ... + + + ++-----+ + ~~* 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 \ No newline at end of file +~~http://docs.codehaus.org/display/MAVEN/Maven+Plugin+Matrix + ++-----+ + +multiple repositories + + +... + + + central + Maven Repository Switchboard + http://repo1.maven.org/maven2 + + + my-repo + your custom repo + http://jarsm2.dyndns.dk + + +... + + +== + +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 element. So: + + +~ ... +~ +~ value +~ + + +== + +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: + + +~ ${build.debug} +~ ${build.jdk} +~ ${build.jdk} + + + ++-----+ \ No newline at end of file