|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + <groupId>ring-http-server</groupId> |
| 6 | + <artifactId>ring-http-server</artifactId> |
| 7 | + <packaging>jar</packaging> |
| 8 | + <version>1.0.0</version> |
| 9 | + <name>ring-http-server</name> |
| 10 | + <licenses> |
| 11 | + <license> |
| 12 | + <name>EPL-2.0</name> |
| 13 | + <url>https://www.eclipse.org/legal/epl-2.0/</url> |
| 14 | + </license> |
| 15 | + </licenses> |
| 16 | + <build> |
| 17 | + <sourceDirectory>java</sourceDirectory> |
| 18 | + <testSourceDirectory>java-test</testSourceDirectory> |
| 19 | + <resources> |
| 20 | + <resource> |
| 21 | + <directory>resources</directory> |
| 22 | + </resource> |
| 23 | + </resources> |
| 24 | + <testResources> |
| 25 | + <testResource> |
| 26 | + <directory>resources</directory> |
| 27 | + </testResource> |
| 28 | + </testResources> |
| 29 | + <directory>target</directory> |
| 30 | + <outputDirectory>target\classes</outputDirectory> |
| 31 | + <plugins> |
| 32 | + <plugin> |
| 33 | + <groupId>com.theoryinpractise</groupId> |
| 34 | + <artifactId>clojure-maven-plugin</artifactId> |
| 35 | + <version>1.8.3</version> |
| 36 | + <extensions>true</extensions> |
| 37 | + <executions> |
| 38 | + <execution> |
| 39 | + <id>compile-clojure</id> |
| 40 | + <phase>compile</phase> |
| 41 | + <goals> |
| 42 | + <goal>compile</goal> |
| 43 | + </goals> |
| 44 | + </execution> |
| 45 | + <execution> |
| 46 | + <id>test-clojure</id> |
| 47 | + <phase>test</phase> |
| 48 | + <goals> |
| 49 | + <goal>test</goal> |
| 50 | + </goals> |
| 51 | + </execution> |
| 52 | + </executions> |
| 53 | + <configuration> |
| 54 | + <sourceDirectories> |
| 55 | + <sourceDirectory>src/</sourceDirectory> |
| 56 | + </sourceDirectories> |
| 57 | + </configuration> |
| 58 | + </plugin> |
| 59 | + <plugin> |
| 60 | + <artifactId>maven-assembly-plugin</artifactId> |
| 61 | + <configuration> |
| 62 | + <archive> |
| 63 | + <manifest> |
| 64 | + <mainClass>ring_http_exchange.benchmark</mainClass> |
| 65 | + </manifest> |
| 66 | + </archive> |
| 67 | + <descriptorRefs> |
| 68 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 69 | + </descriptorRefs> |
| 70 | + </configuration> |
| 71 | + <executions> |
| 72 | + <execution> |
| 73 | + <id>make-assembly</id> |
| 74 | + <phase>package</phase> |
| 75 | + <goals> |
| 76 | + <goal>single</goal> |
| 77 | + </goals> |
| 78 | + </execution> |
| 79 | + </executions> |
| 80 | + </plugin> |
| 81 | + </plugins> |
| 82 | + </build> |
| 83 | + <repositories> |
| 84 | + <repository> |
| 85 | + <id>central</id> |
| 86 | + <url>https://repo1.maven.org/maven2/</url> |
| 87 | + <snapshots> |
| 88 | + <enabled>false</enabled> |
| 89 | + </snapshots> |
| 90 | + <releases> |
| 91 | + <enabled>true</enabled> |
| 92 | + </releases> |
| 93 | + </repository> |
| 94 | + <repository> |
| 95 | + <id>clojars</id> |
| 96 | + <url>https://repo.clojars.org/</url> |
| 97 | + <snapshots> |
| 98 | + <enabled>true</enabled> |
| 99 | + </snapshots> |
| 100 | + <releases> |
| 101 | + <enabled>true</enabled> |
| 102 | + </releases> |
| 103 | + </repository> |
| 104 | + </repositories> |
| 105 | + <dependencyManagement> |
| 106 | + <dependencies/> |
| 107 | + </dependencyManagement> |
| 108 | + <dependencies> |
| 109 | + <dependency> |
| 110 | + <groupId>org.clojure</groupId> |
| 111 | + <artifactId>clojure</artifactId> |
| 112 | + <version>1.11.2</version> |
| 113 | + </dependency> |
| 114 | + <dependency> |
| 115 | + <groupId>org.clojars.jj</groupId> |
| 116 | + <artifactId>ring-http-exchange</artifactId> |
| 117 | + <version>1.1.0</version> |
| 118 | + </dependency> |
| 119 | + <dependency> |
| 120 | + <groupId>metosin</groupId> |
| 121 | + <artifactId>jsonista</artifactId> |
| 122 | + <version>0.3.13</version> |
| 123 | + </dependency> |
| 124 | + </dependencies> |
| 125 | + <profiles> |
| 126 | + <profile> |
| 127 | + <id>robaho</id> |
| 128 | + <activation> |
| 129 | + <activeByDefault>false</activeByDefault> |
| 130 | + </activation> |
| 131 | + <dependencies> |
| 132 | + <dependency> |
| 133 | + <groupId>io.github.robaho</groupId> |
| 134 | + <artifactId>httpserver</artifactId> |
| 135 | + <version>1.0.23</version> |
| 136 | + </dependency> |
| 137 | + </dependencies> |
| 138 | + </profile> |
| 139 | + </profiles> |
| 140 | +</project> |
0 commit comments