|
@@ -0,0 +1,140 @@
|
|
|
|
+<?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>ring-http-server</groupId>
|
|
|
|
+ <artifactId>ring-http-server</artifactId>
|
|
|
|
+ <packaging>jar</packaging>
|
|
|
|
+ <version>1.0.0</version>
|
|
|
|
+ <name>ring-http-server</name>
|
|
|
|
+ <licenses>
|
|
|
|
+ <license>
|
|
|
|
+ <name>EPL-2.0</name>
|
|
|
|
+ <url>https://www.eclipse.org/legal/epl-2.0/</url>
|
|
|
|
+ </license>
|
|
|
|
+ </licenses>
|
|
|
|
+ <build>
|
|
|
|
+ <sourceDirectory>java</sourceDirectory>
|
|
|
|
+ <testSourceDirectory>java-test</testSourceDirectory>
|
|
|
|
+ <resources>
|
|
|
|
+ <resource>
|
|
|
|
+ <directory>resources</directory>
|
|
|
|
+ </resource>
|
|
|
|
+ </resources>
|
|
|
|
+ <testResources>
|
|
|
|
+ <testResource>
|
|
|
|
+ <directory>resources</directory>
|
|
|
|
+ </testResource>
|
|
|
|
+ </testResources>
|
|
|
|
+ <directory>target</directory>
|
|
|
|
+ <outputDirectory>target\classes</outputDirectory>
|
|
|
|
+ <plugins>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>com.theoryinpractise</groupId>
|
|
|
|
+ <artifactId>clojure-maven-plugin</artifactId>
|
|
|
|
+ <version>1.8.3</version>
|
|
|
|
+ <extensions>true</extensions>
|
|
|
|
+ <executions>
|
|
|
|
+ <execution>
|
|
|
|
+ <id>compile-clojure</id>
|
|
|
|
+ <phase>compile</phase>
|
|
|
|
+ <goals>
|
|
|
|
+ <goal>compile</goal>
|
|
|
|
+ </goals>
|
|
|
|
+ </execution>
|
|
|
|
+ <execution>
|
|
|
|
+ <id>test-clojure</id>
|
|
|
|
+ <phase>test</phase>
|
|
|
|
+ <goals>
|
|
|
|
+ <goal>test</goal>
|
|
|
|
+ </goals>
|
|
|
|
+ </execution>
|
|
|
|
+ </executions>
|
|
|
|
+ <configuration>
|
|
|
|
+ <sourceDirectories>
|
|
|
|
+ <sourceDirectory>src/</sourceDirectory>
|
|
|
|
+ </sourceDirectories>
|
|
|
|
+ </configuration>
|
|
|
|
+ </plugin>
|
|
|
|
+ <plugin>
|
|
|
|
+ <artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
+ <configuration>
|
|
|
|
+ <archive>
|
|
|
|
+ <manifest>
|
|
|
|
+ <mainClass>ring_http_exchange.benchmark</mainClass>
|
|
|
|
+ </manifest>
|
|
|
|
+ </archive>
|
|
|
|
+ <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>
|
|
|
|
+ <repositories>
|
|
|
|
+ <repository>
|
|
|
|
+ <id>central</id>
|
|
|
|
+ <url>https://repo1.maven.org/maven2/</url>
|
|
|
|
+ <snapshots>
|
|
|
|
+ <enabled>false</enabled>
|
|
|
|
+ </snapshots>
|
|
|
|
+ <releases>
|
|
|
|
+ <enabled>true</enabled>
|
|
|
|
+ </releases>
|
|
|
|
+ </repository>
|
|
|
|
+ <repository>
|
|
|
|
+ <id>clojars</id>
|
|
|
|
+ <url>https://repo.clojars.org/</url>
|
|
|
|
+ <snapshots>
|
|
|
|
+ <enabled>true</enabled>
|
|
|
|
+ </snapshots>
|
|
|
|
+ <releases>
|
|
|
|
+ <enabled>true</enabled>
|
|
|
|
+ </releases>
|
|
|
|
+ </repository>
|
|
|
|
+ </repositories>
|
|
|
|
+ <dependencyManagement>
|
|
|
|
+ <dependencies/>
|
|
|
|
+ </dependencyManagement>
|
|
|
|
+ <dependencies>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.clojure</groupId>
|
|
|
|
+ <artifactId>clojure</artifactId>
|
|
|
|
+ <version>1.11.1</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.clojars.jj</groupId>
|
|
|
|
+ <artifactId>ring-http-exchange</artifactId>
|
|
|
|
+ <version>1.1.0</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>metosin</groupId>
|
|
|
|
+ <artifactId>jsonista</artifactId>
|
|
|
|
+ <version>0.3.13</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ </dependencies>
|
|
|
|
+ <profiles>
|
|
|
|
+ <profile>
|
|
|
|
+ <id>robaho</id>
|
|
|
|
+ <activation>
|
|
|
|
+ <activeByDefault>false</activeByDefault>
|
|
|
|
+ </activation>
|
|
|
|
+ <dependencies>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>io.github.robaho</groupId>
|
|
|
|
+ <artifactId>httpserver</artifactId>
|
|
|
|
+ <version>1.0.23</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ </dependencies>
|
|
|
|
+ </profile>
|
|
|
|
+ </profiles>
|
|
|
|
+</project>
|