yzq 发表于 2018-1-8 11:11:10

jenkins:Unable to find a javac compiler

<profile>  
<id>tools.jar</id>
  
<activation>
  
<property>
  
<name>java.vendor</name>
  
<value>Sun Microsystems Inc.</value>
  
</property>
  
</activation>
  
<build>
  
<plugins>
  
<plugin>
  
<groupId>org.apache.maven.plugins</groupId>
  
<artifactId>maven-antrun-plugin</artifactId>
  
<dependencies>
  
<dependency>
  
<groupId>com.sun</groupId>
  
<artifactId>tools</artifactId>
  
<version>1.5.0</version>
  
<scope>system</scope>
  
<systemPath>${java.home}/../lib/tools.jar</systemPath>
  
</dependency>
  
</dependencies>
  
</plugin>
  
</plugins>
  
</build>
  
</profile>
页: [1]
查看完整版本: jenkins:Unable to find a javac compiler