1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+
7+ <parent >
8+ <groupId >org.objectlayout</groupId >
9+ <artifactId >ObjectLayout-parent</artifactId >
10+ <version >1.0.5-SNAPSHOT</version >
11+ </parent >
12+
13+ <artifactId >ObjectLayout-examples</artifactId >
14+ <name >ObjectLayoutExamples</name >
15+ <packaging >jar</packaging >
16+
17+ <properties >
18+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
19+ </properties >
20+
21+ <dependencies >
22+ <dependency >
23+ <groupId >junit</groupId >
24+ <artifactId >junit</artifactId >
25+ <version >4.10</version >
26+ <scope >test</scope >
27+ </dependency >
28+ <dependency >
29+ <groupId >org.objectlayout</groupId >
30+ <artifactId >ObjectLayout</artifactId >
31+ <version >${project.version} </version >
32+ </dependency >
33+ </dependencies >
34+
35+ <build >
36+ <plugins >
37+ <plugin >
38+ <groupId >org.codehaus.mojo</groupId >
39+ <artifactId >build-helper-maven-plugin</artifactId >
40+ <version >1.7</version >
41+ <executions >
42+ <execution >
43+ <id >add-test-source</id >
44+ <phase >generate-test-sources</phase >
45+ <goals >
46+ <goal >add-test-source</goal >
47+ </goals >
48+ <configuration >
49+ <sources >
50+ <source >src/examples/java</source >
51+ </sources >
52+ </configuration >
53+ </execution >
54+ </executions >
55+ </plugin >
56+ <plugin >
57+ <groupId >org.apache.maven.plugins</groupId >
58+ <artifactId >maven-compiler-plugin</artifactId >
59+ <version >2.3.2</version >
60+ <configuration >
61+ <source >1.7</source >
62+ <target >1.7</target >
63+ <!-- Disable annotation processing for ourselves. -->
64+ <compilerArgument >-proc:none</compilerArgument >
65+ <encoding >UTF-8</encoding >
66+ </configuration >
67+ </plugin >
68+ <plugin >
69+ <groupId >org.apache.maven.plugins</groupId >
70+ <artifactId >maven-surefire-plugin</artifactId >
71+ <version >2.12.4</version >
72+ <configuration >
73+ <argLine >-Xmx1g</argLine >
74+ <enableAssertions >false</enableAssertions >
75+ </configuration >
76+ </plugin >
77+ </plugins >
78+ </build >
79+
80+ </project >
0 commit comments