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+ <parent >
3+ <groupId >com.ibm.runtimetools</groupId >
4+ <artifactId >javametrics</artifactId >
5+ <version >0.1.0-SNAPSHOT</version >
6+ </parent >
7+ <modelVersion >4.0.0</modelVersion >
8+ <artifactId >javametrics-agent</artifactId >
9+ <name >java</name >
10+ <description >Application Metrics for Java</description >
11+ <properties >
12+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
13+ <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
14+ </properties >
15+ <dependencies >
16+ <dependency >
17+ <groupId >javax.servlet</groupId >
18+ <artifactId >javax.servlet-api</artifactId >
19+ <version >3.1.0</version >
20+ </dependency >
21+ <dependency >
22+ <groupId >javax.servlet.jsp</groupId >
23+ <artifactId >jsp-api</artifactId >
24+ <version >2.2</version >
25+ </dependency >
26+ <dependency >
27+ <groupId >org.ow2.asm</groupId >
28+ <artifactId >asm</artifactId >
29+ <version >5.0.4</version >
30+ </dependency >
31+ <dependency >
32+ <groupId >org.ow2.asm</groupId >
33+ <artifactId >asm-commons</artifactId >
34+ <version >5.0.4</version >
35+ </dependency >
36+ <dependency >
37+ <groupId >junit</groupId >
38+ <artifactId >junit</artifactId >
39+ <version >4.12</version >
40+ <scope >test</scope >
41+ </dependency >
42+ <dependency >
43+ <groupId >org.hamcrest</groupId >
44+ <artifactId >hamcrest-core</artifactId >
45+ <version >1.3</version >
46+ <scope >test</scope >
47+ </dependency >
48+ </dependencies >
49+ <build >
50+ <sourceDirectory >src</sourceDirectory >
51+ <testSourceDirectory >test</testSourceDirectory >
52+ <plugins >
53+ <plugin >
54+ <artifactId >maven-compiler-plugin</artifactId >
55+ <version >3.6.1</version >
56+ <configuration >
57+ <source >1.8</source >
58+ <target >1.8</target >
59+ </configuration >
60+ </plugin >
61+ <plugin >
62+ <groupId >org.apache.maven.plugins</groupId >
63+ <artifactId >maven-jar-plugin</artifactId >
64+ <configuration >
65+ <archive >
66+ <manifestFile >src/meta-inf/MANIFEST.MF</manifestFile >
67+ </archive >
68+ </configuration >
69+ </plugin >
70+ <plugin >
71+ <artifactId >maven-dependency-plugin</artifactId >
72+ <executions >
73+ <execution >
74+ <phase >install</phase >
75+ <goals >
76+ <goal >copy-dependencies</goal >
77+ </goals >
78+ <configuration >
79+ <outputDirectory >${project.build.directory} /lib</outputDirectory >
80+ </configuration >
81+ </execution >
82+ </executions >
83+ </plugin >
84+ </plugins >
85+ </build >
86+ </project >
0 commit comments