mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-18 01:06:03 +10:00
61ba8b6ec2be30ec2d33eb2a2ed22df78497fc96
from pull request 6
Pinpoint-profiler-optional
아래와 같이 maven compile을 하기 위해서는 JDK 1.7+이 필요합니다.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<inherited>true</inherited>
<configuration>
<source>1.7</source>
<target>1.7</target>
<debug>${compiler-debug}</debug>
<optimize>true</optimize>
<fork>true</fork>
<verbose>true</verbose>
<compilerVersion>1.7</compilerVersion>
<executable>${JAVA_7_HOME}/bin/javac</executable>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
환경변수에 JAVA_7_HOME을 잡아주시거나, maven의 settings.xml에 JAVA_7_HOME property를 설정해주세요.
Languages
Java
63.2%
JavaScript
30.2%
HTML
3.8%
Less
1.3%
CSS
1%
Other
0.3%