xmpp-compliance-tester

XMPP Compliance Tester, forked from github.com/iNPUTmice/ComplianceTester
git clone https://git.in0rdr.ch/xmpp-compliance-tester.git
Log | Files | Refs | Pull requests |Archive | README | LICENSE

pom.xml (3460B)


      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     <modelVersion>4.0.0</modelVersion>
      6 
      7     <groupId>eu.siacs</groupId>
      8     <artifactId>ComplianceTester</artifactId>
      9     <version>0.2.3</version>
     10     <packaging>jar</packaging>
     11 
     12     <dependencies>
     13         <dependency>
     14             <groupId>rocks.xmpp</groupId>
     15             <artifactId>xmpp-core-client</artifactId>
     16             <version>0.7.4</version>
     17         </dependency>
     18         <dependency>
     19             <groupId>rocks.xmpp</groupId>
     20             <artifactId>xmpp-extensions-client</artifactId>
     21             <version>0.7.4</version>
     22         </dependency>
     23         <dependency>
     24             <groupId>de.measite.minidns</groupId>
     25             <artifactId>minidns-hla</artifactId>
     26             <version>0.2.4</version>
     27         </dependency>
     28         <dependency>
     29             <groupId>org.bouncycastle</groupId>
     30             <artifactId>bcpkix-jdk15on</artifactId>
     31             <version>1.56</version>
     32         </dependency>
     33         <dependency>
     34             <groupId>javax.xml.bind</groupId>
     35             <artifactId>jaxb-api</artifactId>
     36             <version>2.3.0</version>
     37          </dependency>
     38     </dependencies>
     39 
     40     <build>
     41         <plugins>
     42             <plugin>
     43                 <groupId>org.apache.maven.plugins</groupId>
     44                 <artifactId>maven-shade-plugin</artifactId>
     45                 <version>2.4.3</version>
     46                 <executions>
     47                     <execution>
     48                         <phase>package</phase>
     49                         <goals>
     50                             <goal>shade</goal>
     51                         </goals>
     52                         <configuration>
     53                             <transformers>
     54                                 <transformer
     55                                         implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
     56                                     <mainClass>eu.siacs.ComplianceTester</mainClass>
     57                                 </transformer>
     58                                 <transformer
     59                                         implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
     60                             </transformers>
     61                             <filters>
     62                                 <filter>
     63                                     <artifact>*:*</artifact>
     64                                     <excludes>
     65                                         <exclude>META-INF/*.SF</exclude>
     66                                         <exclude>META-INF/*.DSA</exclude>
     67                                         <exclude>META-INF/*.RSA</exclude>
     68                                     </excludes>
     69                                 </filter>
     70                             </filters>
     71                         </configuration>
     72                     </execution>
     73                 </executions>
     74             </plugin>
     75             <plugin>
     76                 <groupId>org.apache.maven.plugins</groupId>
     77                 <artifactId>maven-compiler-plugin</artifactId>
     78                 <version>3.3</version>
     79                 <configuration>
     80                     <source>8</source>
     81                     <target>8</target>
     82                 </configuration>
     83             </plugin>
     84         </plugins>
     85     </build>
     86 
     87 
     88 </project>