|
| 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 | + <parent> |
| 6 | + <artifactId>jvm-assembler</artifactId> |
| 7 | + <groupId>com.mmhelloworld</groupId> |
| 8 | + <version>1.0-SNAPSHOT</version> |
| 9 | + </parent> |
| 10 | + <modelVersion>4.0.0</modelVersion> |
| 11 | + |
| 12 | + <artifactId>jvm-assembler-server</artifactId> |
| 13 | + <packaging>war</packaging> |
| 14 | + |
| 15 | + <build> |
| 16 | + <plugins> |
| 17 | + <plugin> |
| 18 | + <groupId>org.eclipse.jetty</groupId> |
| 19 | + <artifactId>jetty-maven-plugin</artifactId> |
| 20 | + </plugin> |
| 21 | + |
| 22 | + <plugin> |
| 23 | + <artifactId>maven-war-plugin</artifactId> |
| 24 | + <configuration> |
| 25 | + <warName>jvm-assembler-core</warName> |
| 26 | + <failOnMissingWebXml>false</failOnMissingWebXml> |
| 27 | + </configuration> |
| 28 | + </plugin> |
| 29 | + </plugins> |
| 30 | + </build> |
| 31 | + |
| 32 | + <dependencies> |
| 33 | + |
| 34 | + <dependency> |
| 35 | + <groupId>org.glassfish.jersey.containers</groupId> |
| 36 | + <artifactId>jersey-container-servlet-core</artifactId> |
| 37 | + </dependency> |
| 38 | + |
| 39 | + <dependency> |
| 40 | + <groupId>org.glassfish.jersey.media</groupId> |
| 41 | + <artifactId>jersey-media-json-jackson</artifactId> |
| 42 | + </dependency> |
| 43 | + |
| 44 | + <dependency> |
| 45 | + <groupId>org.eclipse.jetty</groupId> |
| 46 | + <artifactId>jetty-server</artifactId> |
| 47 | + </dependency> |
| 48 | + |
| 49 | + <dependency> |
| 50 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 51 | + <artifactId>jackson-core</artifactId> |
| 52 | + </dependency> |
| 53 | + |
| 54 | + <dependency> |
| 55 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 56 | + <artifactId>jackson-annotations</artifactId> |
| 57 | + </dependency> |
| 58 | + |
| 59 | + <dependency> |
| 60 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 61 | + <artifactId>jackson-databind</artifactId> |
| 62 | + </dependency> |
| 63 | + |
| 64 | + <dependency> |
| 65 | + <groupId>org.eclipse.jetty</groupId> |
| 66 | + <artifactId>jetty-servlet</artifactId> |
| 67 | + </dependency> |
| 68 | + |
| 69 | + <dependency> |
| 70 | + <groupId>org.ow2.asm</groupId> |
| 71 | + <artifactId>asm-all</artifactId> |
| 72 | + </dependency> |
| 73 | + </dependencies> |
| 74 | + |
| 75 | + |
| 76 | +</project> |
0 commit comments