从 Maven 查找主机名

发布于 2024-12-05 01:51:05 字数 201 浏览 1 评论 0原文

我正在寻找一种方法来查找主机名并将其设置为 Maven 中的属性。

这并不适用于所有环境:

...
<properties>
   <hostname>${env.HOSTNAME}</hostname>
</properties>
...

有什么建议吗?

I'm looking for a way to look up hostname and set it as a property in Maven.

This does not work in all environments:

...
<properties>
   <hostname>${env.HOSTNAME}</hostname>
</properties>
...

Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

桃酥萝莉 2024-12-12 01:51:05

使用groovy脚本设置项目属性

    <plugin>
        <groupId>org.codehaus.groovy.maven</groupId>
        <artifactId>gmaven-plugin</artifactId>
        <executions>
            <execution>
                <phase>generate-resources</phase>
                <goals>
                    <goal>execute</goal>
              </goals>
               <configuration>
                  <source>
                  project.properties["hostname"] = InetAddress.getLocalHost().getHostName()
                 </source>
             </configuration>
         </execution>
      </executions>
 </plugin>

Use a groovy script to set the project property

    <plugin>
        <groupId>org.codehaus.groovy.maven</groupId>
        <artifactId>gmaven-plugin</artifactId>
        <executions>
            <execution>
                <phase>generate-resources</phase>
                <goals>
                    <goal>execute</goal>
              </goals>
               <configuration>
                  <source>
                  project.properties["hostname"] = InetAddress.getLocalHost().getHostName()
                 </source>
             </configuration>
         </execution>
      </executions>
 </plugin>
我偏爱纯白色 2024-12-12 01:51:05

${env.COMPUTERNAME} 对我有用..

${env.COMPUTERNAME} works for me..

ゃ懵逼小萝莉 2024-12-12 01:51:05

Maven Build Helper 插件 3.1.0 刚刚发布,其目标是获取主机名、IP 地址、端口保留等(http://www.mojohaus.org/build-helper-maven-plugin/usage.html)。

添加此来构建插件:

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>build-helper-maven-plugin</artifactId>
    <version>3.1.0</version>
    <executions>
        <execution>
            <id>init-build-properties</id>
            <goals>
                <goal>hostname</goal>
            </goals>
            <configuration>
                <hostnameProperty>my.hostname</hostnameProperty>
            </configuration>
        </execution>
    </executions>
</plugin>

The Maven Build Helper plugin 3.1.0 was just released with goals for getting the hostname, ip address, port reserving etc (http://www.mojohaus.org/build-helper-maven-plugin/usage.html).

Add this to build plugins:

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>build-helper-maven-plugin</artifactId>
    <version>3.1.0</version>
    <executions>
        <execution>
            <id>init-build-properties</id>
            <goals>
                <goal>hostname</goal>
            </goals>
            <configuration>
                <hostnameProperty>my.hostname</hostnameProperty>
            </configuration>
        </execution>
    </executions>
</plugin>
染柒℉ 2024-12-12 01:51:05

我最终找到了解决跨平台问题的简单方法:

<manifestEntries>  
    <Build-Host-Linux>${env.HOSTNAME}</Build-Host-Linux>
    <Build-Host-Windows>${env.COMPUTERNAME}</Build-Host-Windows>
</manifestEntries>

I ended up with a simple solution to the cross-plattform problem:

<manifestEntries>  
    <Build-Host-Linux>${env.HOSTNAME}</Build-Host-Linux>
    <Build-Host-Windows>${env.COMPUTERNAME}</Build-Host-Windows>
</manifestEntries>
信仰 2024-12-12 01:51:05

user1885834 发布的评论最适合我:为 Windows 和 Linux 创建配置文件,并使用各自的环境变量来定义新属性 ${hostname},以便在任何地方使用。

<profile>
   <id>unix</id>
   <activation>
      <os>
         <family>unix</family>
      </os>
   </activation>
   <properties>
      <hostname>${env.HOSTNAME}</hostname>
   </properties>
</profile>
<profile>
   <id>windows</id>
   <activation>
      <os>
         <family>Windows</family>
      </os>
   </activation>
   <properties>
      <hostname>${env.COMPUTERNAME}</hostname>
   </properties>
</profile>

The comment posted by user1885834 was working best for me: Create profiles for Windows and Linux and use the respective environment variables to define a new property ${hostname}, to be used anywhere.

<profile>
   <id>unix</id>
   <activation>
      <os>
         <family>unix</family>
      </os>
   </activation>
   <properties>
      <hostname>${env.HOSTNAME}</hostname>
   </properties>
</profile>
<profile>
   <id>windows</id>
   <activation>
      <os>
         <family>Windows</family>
      </os>
   </activation>
   <properties>
      <hostname>${env.COMPUTERNAME}</hostname>
   </properties>
</profile>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文