e3d0312ab9422fb47408422deb51cb59c28be26a
[javainspect.git] / example / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2     <modelVersion>4.0.0</modelVersion>
3     <groupId>com.myproject</groupId>
4     <artifactId>myproject</artifactId>
5     <version>0.0</version>
6     <packaging>jar</packaging>
7     <name>MyProject</name>
8     <description>MyProject</description>
9
10     <build>
11         <plugins>
12             <plugin>
13                 <groupId>org.apache.maven.plugins</groupId>
14                 <artifactId>maven-compiler-plugin</artifactId>
15                 <version>2.3.2</version>
16                 <configuration>
17                     <source>1.8</source>
18                     <target>1.8</target>
19                     <encoding>UTF-8</encoding>
20                 </configuration>
21             </plugin>
22                 </plugins>
23         </build>
24 </project>