Advertisement
Guest User

pom.xml

a guest
Jun 15th, 2021
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.79 KB | None | 0 0
  1.   <dependencies>
  2.         <dependency>
  3.             <groupId>org.projectlombok</groupId>
  4.             <artifactId>lombok</artifactId>
  5.             <version>${lombok.version}</version>
  6.         </dependency>
  7.         <!-- dropwizard dependencies start-->
  8.         <dependency>
  9.             <groupId>io.dropwizard</groupId>
  10.             <artifactId>dropwizard-core</artifactId>
  11.             <version>${dropwizard.version}</version>
  12.         </dependency>
  13.         <dependency>
  14.             <groupId>io.dropwizard</groupId>
  15.             <artifactId>dropwizard-jersey</artifactId>
  16.             <version>${dropwizard.version}</version>
  17.         </dependency>
  18.         <dependency>
  19.             <groupId>org.glassfish.hk2</groupId>
  20.             <artifactId>hk2-api</artifactId>
  21.             <version>2.5.0-b36</version>
  22.         </dependency>
  23.  
  24.         <dependency>
  25.             <groupId>com.google.guava</groupId>
  26.             <artifactId>guava</artifactId>
  27.             <version>${guava.version}</version>
  28.         </dependency>
  29.         <dependency>
  30.             <groupId>com.smoketurner</groupId>
  31.             <artifactId>dropwizard-swagger</artifactId>
  32.             <version>${dropwizard.swagger.version}</version>
  33.         </dependency>
  34.         <!-- dropwizard dependencies end-->
  35.         <dependency>
  36.             <groupId>com.fasterxml.jackson.datatype</groupId>
  37.             <artifactId>jackson-datatype-joda</artifactId>
  38.             <version>2.11.2</version>
  39.         </dependency>
  40.         <dependency>
  41.             <groupId>org.mongojack</groupId>
  42.             <artifactId>mongojack</artifactId>
  43.             <version>${mongojack.version}</version>
  44.         </dependency>
  45.         <dependency>
  46.             <groupId>io.fabric8</groupId>
  47.             <artifactId>kubernetes-client</artifactId>
  48.             <version>${fabric8.kubernetes.version}</version>
  49.         </dependency>
  50.         <!-- logging -->
  51.         <dependency>
  52.             <groupId>com.microsoft.azure</groupId>
  53.             <artifactId>applicationinsights-core</artifactId>
  54.             <version>2.6.0</version>
  55.         </dependency>
  56.         <dependency>
  57.             <groupId>com.microsoft.azure</groupId>
  58.             <artifactId>azure</artifactId>
  59.             <version>1.38.0</version>
  60.         </dependency>
  61.         <dependency>
  62.             <groupId>com.google.code.gson</groupId>
  63.             <artifactId>gson</artifactId>
  64.             <version>2.7</version>
  65.         </dependency>
  66.         <dependency>
  67.             <groupId>org.apache.httpcomponents</groupId>
  68.             <artifactId>httpmime</artifactId>
  69.             <version>4.5.3</version>
  70.         </dependency>
  71.         <dependency>
  72.             <groupId>org.apache.httpcomponents</groupId>
  73.             <artifactId>httpclient</artifactId>
  74.             <version>4.5.2</version>
  75.         </dependency>
  76.         <dependency>
  77.             <groupId>junit</groupId>
  78.             <artifactId>junit</artifactId>
  79.             <version>4.12</version>
  80.             <scope>test</scope>
  81.         </dependency>
  82.         <dependency>
  83.             <groupId>com.googlecode.json-simple</groupId>
  84.             <artifactId>json-simple</artifactId>
  85.             <version>1.1.1</version>
  86.         </dependency>
  87.         <dependency>
  88.             <groupId>com.azure.shaded</groupId>
  89.             <artifactId>keyvault-shaded</artifactId>
  90.             <version>3.0-SNAPSHOT</version>
  91.         </dependency>
  92.         <dependency>
  93.             <groupId>redis.clients</groupId>
  94.             <artifactId>jedis</artifactId>
  95.             <version>3.6.0</version>
  96.             <type>jar</type>
  97.             <scope>compile</scope>
  98.         </dependency>
  99.         <dependency>
  100.             <groupId>com.azure</groupId>
  101.             <artifactId>azure-messaging-servicebus</artifactId>
  102.             <version>7.3.0-beta.2</version>
  103.         </dependency>
  104.     </dependencies>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement