|
@@ -0,0 +1,96 @@
|
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
+<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">
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
+
|
|
|
|
+ <groupId>io.edap</groupId>
|
|
|
|
+ <artifactId>edap-http-benchmark</artifactId>
|
|
|
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
|
+ <packaging>jar</packaging>
|
|
|
|
+
|
|
|
|
+ <properties>
|
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
+ <java.version>8</java.version>
|
|
|
|
+ <maven.compiler.source>8</maven.compiler.source>
|
|
|
|
+ <maven.compiler.target>8</maven.compiler.target>
|
|
|
|
+ <maven.compiler.compilerVersion>8</maven.compiler.compilerVersion>
|
|
|
|
+ <edap.version>0.1-SNAPSHOT</edap.version>
|
|
|
|
+ <edap.name>edapx</edap.name>
|
|
|
|
+ </properties>
|
|
|
|
+
|
|
|
|
+ <dependencies>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>io.edap</groupId>
|
|
|
|
+ <artifactId>${edap.name}-http</artifactId>
|
|
|
|
+ <version>${edap.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ </dependencies>
|
|
|
|
+
|
|
|
|
+ <repositories>
|
|
|
|
+ <repository>
|
|
|
|
+ <id>central</id>
|
|
|
|
+ <name>Central Repository</name>
|
|
|
|
+ <url>https://repo.maven.apache.org/maven2</url>
|
|
|
|
+ </repository>
|
|
|
|
+ <repository>
|
|
|
|
+ <id>sonatype-nexus-snapshots</id>
|
|
|
|
+ <name>Sonatype Nexus Snapshots</name>
|
|
|
|
+ <url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
+ </repository>
|
|
|
|
+ </repositories>
|
|
|
|
+ <pluginRepositories>
|
|
|
|
+ <pluginRepository>
|
|
|
|
+ <id>central</id>
|
|
|
|
+ <name>Central Repository</name>
|
|
|
|
+ <url>https://repo.maven.apache.org/maven2</url>
|
|
|
|
+ </pluginRepository>
|
|
|
|
+ <pluginRepository>
|
|
|
|
+ <id>sonatype-nexus-snapshots</id>
|
|
|
|
+ <name>Sonatype Nexus Snapshots</name>
|
|
|
|
+ <url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
+ <releases>
|
|
|
|
+ <enabled>false</enabled>
|
|
|
|
+ </releases>
|
|
|
|
+ <snapshots>
|
|
|
|
+ <enabled>true</enabled>
|
|
|
|
+ </snapshots>
|
|
|
|
+ </pluginRepository>
|
|
|
|
+ </pluginRepositories>
|
|
|
|
+ <build>
|
|
|
|
+ <plugins>
|
|
|
|
+
|
|
|
|
+ <plugin>
|
|
|
|
+ <inherited>true</inherited>
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
+ <version>3.8.0</version>
|
|
|
|
+ <configuration>
|
|
|
|
+ <debug>false</debug>
|
|
|
|
+ <source>8</source>
|
|
|
|
+ <target>8</target>
|
|
|
|
+ </configuration>
|
|
|
|
+ </plugin>
|
|
|
|
+
|
|
|
|
+ <plugin>
|
|
|
|
+ <artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
+ <version>3.1.0</version>
|
|
|
|
+ <configuration>
|
|
|
|
+ <descriptorRefs>
|
|
|
|
+ <descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
+ </descriptorRefs>
|
|
|
|
+ </configuration>
|
|
|
|
+ <executions>
|
|
|
|
+ <execution>
|
|
|
|
+ <id>make-assembly</id>
|
|
|
|
+ <phase>package</phase>
|
|
|
|
+ <goals>
|
|
|
|
+ <goal>single</goal>
|
|
|
|
+ </goals>
|
|
|
|
+ </execution>
|
|
|
|
+ </executions>
|
|
|
|
+ </plugin>
|
|
|
|
+
|
|
|
|
+ </plugins>
|
|
|
|
+ </build>
|
|
|
|
+</project>
|