"Fossies" - the Fresh Open Source Software Archive

Member "Signal-Server-11.17.0/websocket-resources/pom.xml" (30 Nov 2023, 3351 Bytes) of package /linux/www/Signal-Server-11.17.0.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) XML source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file. See also the last Fossies "Diffs" side-by-side code changes report for "pom.xml": 11.5.0_vs_11.6.0.

    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>TextSecureServer</artifactId>
    7     <groupId>org.whispersystems.textsecure</groupId>
    8     <version>JGITVER</version>
    9   </parent>
   10   <modelVersion>4.0.0</modelVersion>
   11   <artifactId>websocket-resources</artifactId>
   12 
   13   <dependencies>
   14     <dependency>
   15       <groupId>org.eclipse.jetty.websocket</groupId>
   16       <artifactId>websocket-jetty-api</artifactId>
   17     </dependency>
   18     <dependency>
   19       <groupId>org.eclipse.jetty.websocket</groupId>
   20       <artifactId>websocket-jetty-server</artifactId>
   21     </dependency>
   22     <dependency>
   23       <groupId>org.eclipse.jetty.websocket</groupId>
   24       <artifactId>websocket-servlet</artifactId>
   25     </dependency>
   26     <dependency>
   27       <groupId>io.dropwizard</groupId>
   28       <artifactId>dropwizard-core</artifactId>
   29     </dependency>
   30     <dependency>
   31       <groupId>io.dropwizard</groupId>
   32       <artifactId>dropwizard-auth</artifactId>
   33     </dependency>
   34     <dependency>
   35       <groupId>io.dropwizard</groupId>
   36       <artifactId>dropwizard-jersey</artifactId>
   37     </dependency>
   38     <dependency>
   39       <groupId>io.dropwizard</groupId>
   40       <artifactId>dropwizard-logging</artifactId>
   41     </dependency>
   42     <dependency>
   43       <groupId>jakarta.inject</groupId>
   44       <artifactId>jakarta.inject-api</artifactId>
   45     </dependency>
   46     <dependency>
   47       <groupId>jakarta.validation</groupId>
   48       <artifactId>jakarta.validation-api</artifactId>
   49     </dependency>
   50     <dependency>
   51       <groupId>jakarta.ws.rs</groupId>
   52       <artifactId>jakarta.ws.rs-api</artifactId>
   53     </dependency>
   54     <dependency>
   55       <groupId>org.glassfish.jersey.core</groupId>
   56       <artifactId>jersey-common</artifactId>
   57     </dependency>
   58     <dependency>
   59       <groupId>org.glassfish.jersey.core</groupId>
   60       <artifactId>jersey-server</artifactId>
   61     </dependency>
   62     <dependency>
   63       <groupId>com.fasterxml.jackson.core</groupId>
   64       <artifactId>jackson-core</artifactId>
   65     </dependency>
   66     <dependency>
   67       <groupId>com.fasterxml.jackson.core</groupId>
   68       <artifactId>jackson-annotations</artifactId>
   69     </dependency>
   70     <dependency>
   71       <groupId>com.fasterxml.jackson.core</groupId>
   72       <artifactId>jackson-databind</artifactId>
   73     </dependency>
   74     <dependency>
   75       <groupId>ch.qos.logback</groupId>
   76       <artifactId>logback-core</artifactId>
   77     </dependency>
   78     <dependency>
   79       <groupId>ch.qos.logback</groupId>
   80       <artifactId>logback-classic</artifactId>
   81     </dependency>
   82     <dependency>
   83       <groupId>com.google.protobuf</groupId>
   84       <artifactId>protobuf-java</artifactId>
   85     </dependency>
   86     <dependency>
   87       <groupId>com.google.guava</groupId>
   88       <artifactId>guava</artifactId>
   89     </dependency>
   90     <dependency>
   91       <groupId>org.slf4j</groupId>
   92       <artifactId>slf4j-api</artifactId>
   93     </dependency>
   94     <dependency>
   95       <groupId>com.google.code.findbugs</groupId>
   96       <artifactId>jsr305</artifactId>
   97     </dependency>
   98 
   99     <dependency>
  100       <groupId>org.junit.jupiter</groupId>
  101       <artifactId>junit-jupiter</artifactId>
  102       <scope>test</scope>
  103     </dependency>
  104   </dependencies>
  105 
  106 </project>