Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.74 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>com.sirolf2009</groupId>
  5.     <artifactId>orderbook-collector</artifactId>
  6.     <version>0.0.1-SNAPSHOT</version>
  7.     <name>xtend-quickstart</name>
  8.     <properties>
  9.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  10.         <xtend.version>2.12.0</xtend.version>
  11.     </properties>
  12.  
  13.     <repositories>
  14.         <repository>
  15.             <id>sonatype-oss-snapshot</id>
  16.             <snapshots />
  17.             <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  18.         </repository>
  19.     </repositories>
  20.  
  21.     <build>
  22.         <plugins>
  23.             <plugin>
  24.                 <groupId>org.eclipse.xtend</groupId>
  25.                 <artifactId>xtend-maven-plugin</artifactId>
  26.                 <version>${xtend.version}</version>
  27.                 <executions>
  28.                     <execution>
  29.                         <goals>
  30.                             <goal>compile</goal>
  31.                             <goal>testCompile</goal>
  32.                             <goal>xtend-install-debug-info</goal>
  33.                             <goal>xtend-test-install-debug-info</goal>
  34.                         </goals>
  35.                     </execution>
  36.                 </executions>
  37.                 <configuration>
  38.                     <outputDirectory>${project.build.directory}/xtend-gen/main</outputDirectory>
  39.                     <testOutputDirectory>${project.build.directory}/xtend-gen/test</testOutputDirectory>
  40.                 </configuration>
  41.             </plugin>
  42.             <plugin>
  43.                 <artifactId>maven-compiler-plugin</artifactId>
  44.                 <version>3.0</version>
  45.                 <configuration>
  46.                     <source>1.8</source>
  47.                     <target>1.8</target>
  48.                 </configuration>
  49.             </plugin>
  50.             <plugin>
  51.                 <groupId>org.apache.maven.plugins</groupId>
  52.                 <artifactId>maven-shade-plugin</artifactId>
  53.                 <version>3.1.0</version>
  54.                 <executions>
  55.                     <execution>
  56.                         <phase>package</phase>
  57.                         <goals>
  58.                             <goal>shade</goal>
  59.                         </goals>
  60.                         <configuration>
  61.                             <transformers>
  62.                                 <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
  63.                                     <mainClass>com.sirolf2009.orderbook.collector.OrderbookCollector</mainClass>
  64.                                 </transformer>
  65.                             </transformers>
  66.                             <filters>
  67.                                 <filter>
  68.                                     <artifact>*:*</artifact>
  69.                                     <excludes>
  70.                                         <exclude>META-INF/*.SF</exclude>
  71.                                         <exclude>META-INF/*.DSA</exclude>
  72.                                         <exclude>META-INF/*.RSA</exclude>
  73.                                     </excludes>
  74.                                 </filter>
  75.                             </filters>
  76.                         </configuration>
  77.                     </execution>
  78.                 </executions>
  79.             </plugin>
  80.         </plugins>
  81.         <extensions>
  82.             <extension>
  83.                 <groupId>kr.motd.maven</groupId>
  84.                 <artifactId>os-maven-plugin</artifactId>
  85.                 <version>1.4.0.Final</version>
  86.             </extension>
  87.         </extensions>
  88.     </build>
  89.     <dependencies>
  90.         <dependency>
  91.             <groupId>org.eclipse.xtend</groupId>
  92.             <artifactId>org.eclipse.xtend.lib</artifactId>
  93.             <version>${xtend.version}</version>
  94.         </dependency>
  95.         <dependency>
  96.             <groupId>junit</groupId>
  97.             <artifactId>junit</artifactId>
  98.             <version>4.10</version>
  99.             <scope>test</scope>
  100.         </dependency>
  101.         <dependency>
  102.             <groupId>org.apache.logging.log4j</groupId>
  103.             <artifactId>log4j-api</artifactId>
  104.             <version>2.8.2</version>
  105.         </dependency>
  106.         <dependency>
  107.             <groupId>org.apache.logging.log4j</groupId>
  108.             <artifactId>log4j-core</artifactId>
  109.             <version>2.8.2</version>
  110.         </dependency>
  111.         <dependency>
  112.             <groupId>org.apache.logging.log4j</groupId>
  113.             <artifactId>log4j-1.2-api</artifactId>
  114.             <version>2.8.2</version>
  115.         </dependency>
  116.         <dependency>
  117.             <groupId>org.apache.logging.log4j</groupId>
  118.             <artifactId>log4j-slf4j-impl</artifactId>
  119.             <version>2.8.2</version>
  120.         </dependency>
  121.         <dependency>
  122.             <groupId>commons-io</groupId>
  123.             <artifactId>commons-io</artifactId>
  124.             <version>2.6</version>
  125.         </dependency>
  126.         <dependency>
  127.             <groupId>com.google.code.gson</groupId>
  128.             <artifactId>gson</artifactId>
  129.             <version>2.6.2</version>
  130.         </dependency>
  131.         <dependency>
  132.             <groupId>com.datastax.cassandra</groupId>
  133.             <artifactId>cassandra-driver-core</artifactId>
  134.             <version>3.3.0</version>
  135.         </dependency>
  136.         <dependency>
  137.             <groupId>com.datastax.cassandra</groupId>
  138.             <artifactId>cassandra-driver-mapping</artifactId>
  139.             <version>3.3.0</version>
  140.         </dependency>
  141.         <dependency>
  142.             <groupId>info.bitrich.xchange-stream</groupId>
  143.             <artifactId>xchange-stream-core</artifactId>
  144.             <version>4.3.0-SNAPSHOT</version>
  145.         </dependency>
  146.         <dependency>
  147.             <groupId>info.bitrich.xchange-stream</groupId>
  148.             <artifactId>xchange-gdax</artifactId>
  149.             <version>4.3.0-SNAPSHOT</version>
  150.         </dependency>
  151.         <dependency>
  152.             <groupId>io.netty</groupId>
  153.             <artifactId>netty-tcnative</artifactId>
  154.             <version>2.0.0.Final</version>
  155.             <classifier>linux-x86_64</classifier>
  156.         </dependency>
  157.     </dependencies>
  158. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement