Sealyu

          --- 博客已遷移至: http://www.sealyu.com/blog

            BlogJava :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理 ::
            618 隨筆 :: 87 文章 :: 225 評論 :: 0 Trackbacks

          Intro

          Because I couldn't find a clear overview of which properties are availabe in maven2 I started this page. It is a collection of things found in the offcial maven documentation and postings to the maven user mailing list.

          Note: In Maven 3.0, all pom.* properties are deprecated. Use project.* instead!

          Build in properties

          • ${basedir} represents the directory containing pom.xml
          • ${version} equivalent to ${project.version} or ${pom.version}

          Pom/Project properties

          All elements in the pom.xml, can be referenced with the project. prefix or using pom. as prefix. This list is just an example of some commonly used elements.

          • ${project.build.directory} results in the path to your "target" dir, this is the same as ${pom.project.build.directory}
          • ${project.build.outputDirectory} results in the path to your "target/classes" dir
          • ${project.name} or ${pom.name} refers to the name of the project.
          • ${project.version} or ${pom.version} refers to the version of the project.
          • ${project.build.finalName} refers to the final name of the file created when the built project is packaged

          Local user settings

          Similarly, values in the user's settings.xml can be referenced using property names with settings. prefix.

          • ${settings.localRepository} refers to the path of the user's local repository.
          • ${maven.repo.local} also works for backward compatibility with maven1 ??

          Environment variables

          Environment variables can be referenced using the env prefix

          • ${env.M2_HOME} returns the Maven2 installation path.
          • ${java.home} specifies the path to the current JRE_HOME environment use with relative paths to get for example:
            <jvm>${java.home}../bin/java.exe</jvm>

          Java system properties

          All Java System Properties defined by the JVM.

          Custom properties in the POM

          User defined properties in the pom.xml.

          <project>
          ...
          <properties>
          <my.filter.value>hello</my.filter.value>
          </properties>
          ...
          </project>
          • ${my.filter.value} will result in hello if you inserted the above XML fragment in your pom.xml

          Parent Project variables

          How can parent project variables be accessed?

          You can use the prefix: ${project.parent}.

          A good way to determine possible variables is to have a look directly at the API. I'm currently using Maven 2.2.1, and to access the Parent you can use ${project.parent}. This will return an org.apache.maven.project.MavenProject instance.

          To access the parent version: ${parent.version}.

          Reflection Properties

          The pattern ${someX.someY.someZ} can simply sometimes mean getSomeX().getSomeY().getSomeZ(). Thus, properties such as ${project.build.directory} is translated to getProject().getBuild().getDirectory().

          posted on 2010-02-08 10:12 seal 閱讀(593) 評論(0)  編輯  收藏 所屬分類: Maven
          主站蜘蛛池模板: 西城区| 江孜县| 施秉县| 瓦房店市| 射阳县| 凤庆县| 台州市| 红安县| 彰武县| 嘉善县| 樟树市| 太湖县| 威海市| 灵川县| 古丈县| 慈利县| 分宜县| 军事| 阿坝县| 南宁市| 调兵山市| 合水县| 乐山市| 伊春市| 平利县| 周口市| 邢台市| 长沙市| 平罗县| 寻乌县| 河源市| 阿克陶县| 黎川县| 新兴县| 尼玛县| 道真| 行唐县| 张家川| 博客| 康乐县| 比如县|