|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | + |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + |
| 7 | + <groupId>io.muserver</groupId> |
| 8 | + <artifactId>tfb-muserver</artifactId> |
| 9 | + <version>0.1</version> |
| 10 | + |
| 11 | + <properties> |
| 12 | + <maven.compiler.source>24</maven.compiler.source> |
| 13 | + <maven.compiler.target>24</maven.compiler.target> |
| 14 | + <netty.version>4.2.1.Final</netty.version> |
| 15 | + </properties> |
| 16 | + |
| 17 | + <packaging>jar</packaging> |
| 18 | + |
| 19 | + <dependencies> |
| 20 | + |
| 21 | + <dependency> |
| 22 | + <groupId>org.slf4j</groupId> |
| 23 | + <artifactId>slf4j-api</artifactId> |
| 24 | + <version>2.0.17</version> |
| 25 | + </dependency> |
| 26 | + <dependency> |
| 27 | + <groupId>org.slf4j</groupId> |
| 28 | + <artifactId>slf4j-simple</artifactId> |
| 29 | + <version>2.0.17</version> |
| 30 | + <scope>provided</scope> |
| 31 | + </dependency> |
| 32 | + |
| 33 | + <dependency> |
| 34 | + <groupId>io.netty</groupId> |
| 35 | + <artifactId>netty-transport</artifactId> |
| 36 | + <version>${netty.version}</version> |
| 37 | + </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>io.netty</groupId> |
| 40 | + <artifactId>netty-handler</artifactId> |
| 41 | + <version>${netty.version}</version> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>io.netty</groupId> |
| 45 | + <artifactId>netty-codec-http</artifactId> |
| 46 | + <version>${netty.version}</version> |
| 47 | + </dependency> |
| 48 | + <dependency> |
| 49 | + <groupId>io.netty</groupId> |
| 50 | + <artifactId>netty-buffer</artifactId> |
| 51 | + <version>${netty.version}</version> |
| 52 | + </dependency> |
| 53 | + <dependency> |
| 54 | + <groupId>io.netty</groupId> |
| 55 | + <artifactId>netty-common</artifactId> |
| 56 | + <version>${netty.version}</version> |
| 57 | + </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>io.netty</groupId> |
| 60 | + <artifactId>netty-codec</artifactId> |
| 61 | + <version>${netty.version}</version> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>io.netty</groupId> |
| 65 | + <artifactId>netty-codec-http2</artifactId> |
| 66 | + <version>${netty.version}</version> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>io.netty</groupId> |
| 70 | + <artifactId>netty-codec-haproxy</artifactId> |
| 71 | + <version>${netty.version}</version> |
| 72 | + </dependency> |
| 73 | + <dependency> |
| 74 | + <groupId>io.netty</groupId> |
| 75 | + <artifactId>netty-transport-native-epoll</artifactId> |
| 76 | + <version>${netty.version}</version> |
| 77 | + <classifier>linux-x86_64</classifier> |
| 78 | + </dependency> |
| 79 | + <dependency> |
| 80 | + <groupId>io.netty</groupId> |
| 81 | + <artifactId>netty-transport-native-kqueue</artifactId> |
| 82 | + <version>${netty.version}</version> |
| 83 | + <classifier>osx-x86_64</classifier> |
| 84 | + </dependency> |
| 85 | + <dependency> |
| 86 | + <groupId>io.netty</groupId> |
| 87 | + <artifactId>netty-transport-native-io_uring</artifactId> |
| 88 | + <version>${netty.version}</version> |
| 89 | + <classifier>linux-x86_64</classifier> |
| 90 | + </dependency> |
| 91 | + |
| 92 | + <dependency> |
| 93 | + <groupId>io.muserver</groupId> |
| 94 | + <artifactId>mu-server</artifactId> |
| 95 | + <version>2.1.10</version> |
| 96 | + <exclusions> |
| 97 | + <exclusion> |
| 98 | + <groupId>io.netty</groupId> |
| 99 | + <artifactId>netty-*</artifactId> |
| 100 | + </exclusion> |
| 101 | + </exclusions> |
| 102 | + </dependency> |
| 103 | + |
| 104 | + <dependency> |
| 105 | + <groupId>org.postgresql</groupId> |
| 106 | + <artifactId>postgresql</artifactId> |
| 107 | + <version>42.7.5</version> |
| 108 | + </dependency> |
| 109 | + |
| 110 | + <dependency> |
| 111 | + <groupId>com.zaxxer</groupId> |
| 112 | + <artifactId>HikariCP</artifactId> |
| 113 | + <version>6.3.0</version> |
| 114 | + </dependency> |
| 115 | + |
| 116 | + <dependency> |
| 117 | + <groupId>io.pebbletemplates</groupId> |
| 118 | + <artifactId>pebble</artifactId> |
| 119 | + <version>3.2.4</version> |
| 120 | + </dependency> |
| 121 | + |
| 122 | + <dependency> |
| 123 | + <groupId>com.fasterxml.jackson.jakarta.rs</groupId> |
| 124 | + <artifactId>jackson-jakarta-rs-json-provider</artifactId> |
| 125 | + <version>2.19.0</version> |
| 126 | + </dependency> |
| 127 | + </dependencies> |
| 128 | + |
| 129 | + <build> |
| 130 | + <plugins> |
| 131 | + <plugin> |
| 132 | + <inherited>true</inherited> |
| 133 | + <groupId>org.apache.maven.plugins</groupId> |
| 134 | + <artifactId>maven-compiler-plugin</artifactId> |
| 135 | + <version>3.12.1</version> |
| 136 | + <configuration> |
| 137 | + <debug>false</debug> |
| 138 | + </configuration> |
| 139 | + </plugin> |
| 140 | + <plugin> |
| 141 | + <artifactId>maven-assembly-plugin</artifactId> |
| 142 | + <version>3.7.1</version> |
| 143 | + <configuration> |
| 144 | + <finalName>app</finalName> |
| 145 | + <archive> |
| 146 | + <manifest> |
| 147 | + <mainClass>hello.HelloWebServer</mainClass> |
| 148 | + </manifest> |
| 149 | + </archive> |
| 150 | + <descriptorRefs> |
| 151 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 152 | + </descriptorRefs> |
| 153 | + <appendAssemblyId>false</appendAssemblyId> |
| 154 | + </configuration> |
| 155 | + <executions> |
| 156 | + <execution> |
| 157 | + <id>make-assembly</id> <!-- this is used for inheritance merges --> |
| 158 | + <phase>package</phase> <!-- bind to the packaging phase --> |
| 159 | + <goals> |
| 160 | + <goal>single</goal> |
| 161 | + </goals> |
| 162 | + </execution> |
| 163 | + </executions> |
| 164 | + </plugin> |
| 165 | + </plugins> |
| 166 | + </build> |
| 167 | +</project> |
0 commit comments