Wildfly Swarm 在 mvn 运行 上启动浏览器
Wildfly Swarm start browser on mvn run
当运行ning mvn wildfly-swarm:运行?
非常感谢您的回答!
您可以结合使用 groovy 和 java.awt.Desktop class(大约从 Java 1.6 开始)来打开任何您想要的 URL:
<build>
<plugins>
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>execute</goal>
</goals>
</execution>
</executions>
<configuration>
<scripts>
<script>
<![CDATA[
import java.awt.Desktop
import java.net.URI
Desktop.getDesktop().browse(new URI("http://www.example.com"))
]]>
</script>
</scripts>
</configuration>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<!-- any version of Groovy \>= 1.5.0 should work here -->
<version>2.4.7</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
(已在 OSX 上测试,但由于正在使用 java 桌面 class,应该是跨平台的)
当运行ning mvn wildfly-swarm:运行?
非常感谢您的回答!
您可以结合使用 groovy 和 java.awt.Desktop class(大约从 Java 1.6 开始)来打开任何您想要的 URL:
<build>
<plugins>
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>execute</goal>
</goals>
</execution>
</executions>
<configuration>
<scripts>
<script>
<![CDATA[
import java.awt.Desktop
import java.net.URI
Desktop.getDesktop().browse(new URI("http://www.example.com"))
]]>
</script>
</scripts>
</configuration>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<!-- any version of Groovy \>= 1.5.0 should work here -->
<version>2.4.7</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
(已在 OSX 上测试,但由于正在使用 java 桌面 class,应该是跨平台的)