Advertisement
Guest User

Untitled

a guest
Dec 13th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.96 KB | None | 0 0
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3.     <modelVersion>4.0.0</modelVersion>
  4.     <groupId>uc.dei.is</groupId>
  5.     <artifactId>Assignment3</artifactId>
  6.     <version>1.0</version>
  7.     <packaging>jar</packaging>
  8.     <dependencies>
  9.         <dependency>
  10.             <groupId>com.owlike</groupId>
  11.             <artifactId>genson</artifactId>
  12.             <version>1.4</version>
  13.         </dependency>
  14.         <dependency>
  15.             <groupId>mysql</groupId>
  16.             <artifactId>mysql-connector-java</artifactId>
  17.             <version>8.0.12</version>
  18.             <type>jar</type>
  19.         </dependency>
  20.      
  21.         <dependency>
  22.             <groupId>org.apache.kafka</groupId>
  23.             <artifactId>kafka-clients</artifactId>
  24.             <version>2.1.0</version>
  25.             <type>jar</type>
  26.         </dependency>
  27.         <dependency>
  28.             <groupId>org.apache.kafka</groupId>
  29.             <artifactId>kafka_2.12</artifactId>
  30.             <version>2.1.0</version>
  31.         </dependency>
  32.         <dependency>
  33.             <groupId>org.apache.kafka</groupId>
  34.             <artifactId>kafka-streams</artifactId>
  35.             <version>2.1.0</version>
  36.         </dependency>
  37.         <dependency>
  38.             <groupId>commons-io</groupId>
  39.             <artifactId>commons-io</artifactId>
  40.             <version>2.5</version>
  41.             <type>jar</type>
  42.         </dependency>
  43.  
  44.         <!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api -->
  45.         <dependency>
  46.             <groupId>javax.xml.bind</groupId>
  47.             <artifactId>jaxb-api</artifactId>
  48.             <version>2.3.0</version>
  49.         </dependency>
  50.         <!-- https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-core -->
  51.        
  52.         <dependency>
  53.             <groupId>com.sun.xml.bind</groupId>
  54.             <artifactId>jaxb-impl</artifactId>
  55.             <version>2.3.0.1</version>
  56.         </dependency>
  57.         <dependency>
  58.             <groupId>javax.activation</groupId>
  59.             <artifactId>activation</artifactId>
  60.             <version>1.1.1</version>
  61.         </dependency>
  62.  
  63.  
  64.         <!-- https://mvnrepository.com/artifact/org.glassfish.jersey.media/jersey-media-json-jackson -->
  65.         <dependency>
  66.             <groupId>org.glassfish.jersey.media</groupId>
  67.             <artifactId>jersey-media-json-jackson</artifactId>
  68.             <version>2.27</version>
  69.         </dependency>
  70.  
  71.         <dependency>
  72.             <groupId>org.glassfish.jersey.containers</groupId>
  73.             <artifactId>jersey-container-grizzly2-http</artifactId>
  74.             <version>2.27</version>
  75.         </dependency>
  76.  
  77.         <dependency>
  78.             <groupId>org.glassfish.jersey.containers</groupId>
  79.             <artifactId>jersey-container-grizzly2-servlet</artifactId>
  80.             <version>2.27</version>
  81.         </dependency>
  82.  
  83.         <dependency>
  84.             <groupId>org.glassfish.jersey.containers</groupId>
  85.             <artifactId>jersey-container-jdk-http</artifactId>
  86.             <version>2.27</version>
  87.         </dependency>
  88.  
  89.         <dependency>
  90.             <groupId>org.glassfish.jersey.containers</groupId>
  91.             <artifactId>jersey-container-simple-http</artifactId>
  92.             <version>2.27</version>
  93.         </dependency>
  94.  
  95.         <dependency>
  96.             <groupId>org.glassfish.jersey.containers</groupId>
  97.             <artifactId>jersey-container-jetty-http</artifactId>
  98.             <version>2.27</version>
  99.         </dependency>
  100.  
  101.         <dependency>
  102.             <groupId>org.glassfish.jersey.containers</groupId>
  103.             <artifactId>jersey-container-jetty-servlet</artifactId>
  104.             <version>2.27</version>
  105.         </dependency>
  106.  
  107.         <!-- https://mvnrepository.com/artifact/org.glassfish.jersey.inject/jersey-hk2 -->
  108.         <dependency>
  109.             <groupId>org.glassfish.jersey.inject</groupId>
  110.             <artifactId>jersey-hk2</artifactId>
  111.             <version>2.27</version>
  112.         </dependency>
  113.  
  114.         <!-- https://mvnrepository.com/artifact/javax.ws.rs/javax.ws.rs-api -->
  115.         <dependency>
  116.             <groupId>javax.ws.rs</groupId>
  117.             <artifactId>javax.ws.rs-api</artifactId>
  118.             <version>2.1.1</version>
  119.         </dependency>
  120.           <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  121.   <dependency>
  122.    <groupId>com.fasterxml.jackson.core</groupId>
  123.    <artifactId>jackson-databind</artifactId>
  124.    <version>2.9.7</version>
  125.   </dependency>
  126.   <dependency>
  127.     <groupId>com.fasterxml.jackson.core</groupId>
  128.     <artifactId>jackson-annotations</artifactId>
  129.     <version>2.9.7</version>
  130. </dependency>
  131.     </dependencies>
  132.     <properties>
  133.         <maven.compiler.source>9</maven.compiler.source>
  134.         <maven.compiler.target>9</maven.compiler.target>
  135.     </properties>
  136. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement