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
+ <groupId >io.edap</groupId >
8
+ <artifactId >edap-http-benchmark</artifactId >
9
+ <version >1.0-SNAPSHOT</version >
10
+ <packaging >jar</packaging >
11
+
12
+ <properties >
13
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
14
+ <java .version>8</java .version>
15
+ <maven .compiler.source>8</maven .compiler.source>
16
+ <maven .compiler.target>8</maven .compiler.target>
17
+ <maven .compiler.compilerVersion>8</maven .compiler.compilerVersion>
18
+ <edap .version>0.1-SNAPSHOT</edap .version>
19
+ <edap .name>edapx</edap .name>
20
+ </properties >
21
+
22
+ <dependencies >
23
+ <dependency >
24
+ <groupId >io.edap</groupId >
25
+ <artifactId >${edap.name}-http</artifactId >
26
+ <version >${edap.version} </version >
27
+ </dependency >
28
+ </dependencies >
29
+
30
+ <repositories >
31
+ <repository >
32
+ <id >central</id >
33
+ <name >Central Repository</name >
34
+ <url >https://repo.maven.apache.org/maven2</url >
35
+ </repository >
36
+ <repository >
37
+ <id >sonatype-nexus-snapshots</id >
38
+ <name >Sonatype Nexus Snapshots</name >
39
+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
40
+ </repository >
41
+ </repositories >
42
+ <pluginRepositories >
43
+ <pluginRepository >
44
+ <id >central</id >
45
+ <name >Central Repository</name >
46
+ <url >https://repo.maven.apache.org/maven2</url >
47
+ </pluginRepository >
48
+ <pluginRepository >
49
+ <id >sonatype-nexus-snapshots</id >
50
+ <name >Sonatype Nexus Snapshots</name >
51
+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
52
+ <releases >
53
+ <enabled >false</enabled >
54
+ </releases >
55
+ <snapshots >
56
+ <enabled >true</enabled >
57
+ </snapshots >
58
+ </pluginRepository >
59
+ </pluginRepositories >
60
+ <build >
61
+ <plugins >
62
+
63
+ <plugin >
64
+ <inherited >true</inherited >
65
+ <groupId >org.apache.maven.plugins</groupId >
66
+ <artifactId >maven-compiler-plugin</artifactId >
67
+ <version >3.8.0</version >
68
+ <configuration >
69
+ <debug >false</debug >
70
+ <source >8</source >
71
+ <target >8</target >
72
+ </configuration >
73
+ </plugin >
74
+
75
+ <plugin >
76
+ <artifactId >maven-assembly-plugin</artifactId >
77
+ <version >3.1.0</version >
78
+ <configuration >
79
+ <descriptorRefs >
80
+ <descriptorRef >jar-with-dependencies</descriptorRef >
81
+ </descriptorRefs >
82
+ </configuration >
83
+ <executions >
84
+ <execution >
85
+ <id >make-assembly</id >
86
+ <phase >package</phase >
87
+ <goals >
88
+ <goal >single</goal >
89
+ </goals >
90
+ </execution >
91
+ </executions >
92
+ </plugin >
93
+
94
+ </plugins >
95
+ </build >
96
+ </project >
0 commit comments