Advertisement
Guest User

Untitled

a guest
Oct 16th, 2013
1,928
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 11.51 KB | None | 0 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.     <modelVersion>4.0.0</modelVersion>
  6.  
  7.     <groupId>com.company</groupId>
  8.     <artifactId>product</artifactId>
  9.     <version>0.1.0</version>
  10.  
  11.     <build>
  12.         <plugins>
  13.             <plugin>
  14.                 <groupId>org.apache.maven.plugins</groupId>
  15.                 <artifactId>maven-shade-plugin</artifactId>
  16.                 <version>2.1</version>
  17.                 <executions>
  18.                     <execution>
  19.                         <phase>package</phase>
  20.                         <goals><goal>shade</goal></goals>
  21.                         <configuration>
  22.                             <transformers>
  23.                                 <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
  24.                                     <mainClass>com.company.product.Main</mainClass>
  25.                                 </transformer>
  26.                             </transformers>
  27.                         </configuration>
  28.                     </execution>
  29.                 </executions>
  30.             </plugin>
  31.             <plugin>
  32.                 <groupId>org.apache.maven.plugins</groupId>
  33.                 <artifactId>maven-jar-plugin</artifactId>
  34.                 <version>2.4</version>
  35.                 <configuration>
  36.                     <skip>true</skip>
  37.                 </configuration>
  38.             </plugin>
  39.         </plugins>
  40.     </build>
  41.  
  42.     <properties>
  43.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  44.  
  45.         <grizzly-version>2.2.21</grizzly-version>
  46.         <jersey-version>1.17.1</jersey-version>
  47.         <slf4j-version>1.7.5</slf4j-version>
  48.         <javax-version>6.0</javax-version>
  49.         <java-version>1.6</java-version>
  50.         <zxing-version>2.2</zxing-version>
  51.         <org.springframework-version>3.1.2.RELEASE</org.springframework-version>
  52.         <atmosphere.version>1.0.0.beta5</atmosphere.version>
  53.         <jackson.version>1.9.12</jackson.version>
  54.     </properties>
  55.  
  56.     <repositories>
  57.  
  58.         <!-- Added to get the Atmosphere 1.1.0-SNAPSHOT, can be removed when 1.1.0 is released -->
  59.         <repository>
  60.             <id>oss.sonatype.org-snapshot</id>
  61.             <url>http://oss.sonatype.org/content/repositories/snapshots</url>
  62.             <releases><enabled>false</enabled></releases>
  63.             <snapshots><enabled>true</enabled></snapshots>
  64.         </repository>
  65.     </repositories>
  66.  
  67.     <dependencies>
  68.         <dependency>
  69.             <groupId>junit</groupId>
  70.             <artifactId>junit</artifactId>
  71.             <version>4.11</version>
  72.         </dependency>
  73.  
  74.         <!-- ZXing for QR/Barcode generation -->
  75.         <dependency>
  76.             <groupId>com.google.zxing</groupId>
  77.             <artifactId>core</artifactId>
  78.             <version>${zxing-version}</version>
  79.         </dependency>
  80.         <dependency>
  81.             <groupId>com.google.zxing</groupId>
  82.             <artifactId>javase</artifactId>
  83.             <version>${zxing-version}</version>
  84.         </dependency>
  85.  
  86.         <!-- PDF Generation -->
  87.         <dependency>
  88.             <groupId>org.apache.pdfbox</groupId>
  89.             <artifactId>pdfbox</artifactId>
  90.             <version>1.1.0</version>
  91.         </dependency>
  92.  
  93.         <!-- Logging -->
  94.         <dependency>
  95.             <groupId>log4j</groupId>
  96.             <artifactId>log4j</artifactId>
  97.             <version>1.2.17</version>
  98.         </dependency>
  99.         <dependency>
  100.             <groupId>org.slf4j</groupId>
  101.             <artifactId>slf4j-log4j12</artifactId>
  102.             <version>${slf4j-version}</version>
  103.         </dependency>
  104.         <dependency>
  105.             <groupId>org.slf4j</groupId>
  106.             <artifactId>slf4j-api</artifactId>
  107.             <version>${slf4j-version}</version>
  108.         </dependency>
  109.         <dependency>
  110.             <groupId>org.slf4j</groupId>
  111.             <artifactId>jcl-over-slf4j</artifactId>
  112.             <version>${slf4j-version}</version>
  113.         </dependency>
  114.  
  115.  
  116.         <dependency>
  117.             <groupId>javax.servlet</groupId>
  118.             <artifactId>javax.servlet-api</artifactId>
  119.             <version>3.0.1</version>
  120.         </dependency>
  121.         <dependency>
  122.             <groupId>javax</groupId>
  123.             <artifactId>javaee-web-api</artifactId>
  124.             <version>${javax-version}</version>
  125.             <scope>provided</scope>
  126.         </dependency>
  127.         <dependency>
  128.             <groupId>javax</groupId>
  129.             <artifactId>javaee-api</artifactId>
  130.             <version>${javax-version}</version>
  131.             <scope>provided</scope>
  132.         </dependency>
  133.  
  134.         <!-- Grizzly -->
  135.         <dependency>
  136.             <groupId>org.glassfish.grizzly</groupId>
  137.             <artifactId>grizzly-websockets</artifactId>
  138.             <version>2.2.21</version>
  139.         </dependency>
  140.         <dependency>
  141.             <groupId>org.glassfish.grizzly</groupId>
  142.             <artifactId>grizzly-http-servlet</artifactId>
  143.             <version>2.2.21</version>
  144.         </dependency>
  145.         <dependency>
  146.             <groupId>org.glassfish.grizzly</groupId>
  147.             <artifactId>grizzly-comet</artifactId>
  148.             <version>2.2.21</version>
  149.         </dependency>
  150.  
  151.         <!-- Hibernate, Spring JPA, and Database -->
  152.         <dependency>
  153.             <groupId>org.hibernate</groupId>
  154.             <artifactId>hibernate-core</artifactId>
  155.             <version>4.2.5.Final</version>
  156.         </dependency>
  157.         <dependency>
  158.             <groupId>org.hibernate</groupId>
  159.             <artifactId>hibernate-entitymanager</artifactId>
  160.             <version>4.2.5.Final</version>
  161.         </dependency>
  162.         <dependency>
  163.             <groupId>org.springframework.data</groupId>
  164.             <artifactId>spring-data-jpa</artifactId>
  165.             <version>1.3.4.RELEASE</version>
  166.         </dependency>
  167.         <dependency>
  168.             <groupId>org.springframework</groupId>
  169.             <artifactId>spring-tx</artifactId>
  170.             <version>${org.springframework-version}</version>
  171.         </dependency>
  172.  
  173.         <!-- cglib required for @Configuration parsing -->
  174.         <dependency>
  175.             <groupId>cglib</groupId>
  176.             <artifactId>cglib</artifactId>
  177.             <version>2.2.2</version>
  178.         </dependency>
  179.  
  180.         <dependency>
  181.             <groupId>mysql</groupId>
  182.             <artifactId>mysql-connector-java</artifactId>
  183.             <version>5.1.23</version>
  184.         </dependency>
  185.  
  186.         <!-- Jersey -->
  187.         <dependency>
  188.             <groupId>com.sun.jersey</groupId>
  189.             <artifactId>jersey-bundle</artifactId>
  190.             <version>1.17.1</version>
  191.         </dependency><!--
  192.        <dependency>
  193.            <groupId>com.sun.jersey</groupId>
  194.            <artifactId>jersey-servlet</artifactId>
  195.            <version>${jersey-version}</version>
  196.        </dependency>
  197.        <dependency>
  198.            <groupId>com.sun.jersey</groupId>
  199.            <artifactId>jersey-json</artifactId>
  200.            <version>${jersey-version}</version>
  201.        </dependency>-->
  202.         <dependency>
  203.             <groupId>com.sun.jersey.contribs</groupId>
  204.             <artifactId>jersey-spring</artifactId>
  205.             <version>${jersey-version}</version>
  206.             <exclusions>
  207.                 <exclusion>
  208.                     <groupId>org.springframework</groupId>
  209.                     <artifactId>spring</artifactId>
  210.                 </exclusion>
  211.                 <exclusion>
  212.                     <groupId>org.springframework</groupId>
  213.                     <artifactId>spring-core</artifactId>
  214.                 </exclusion>
  215.                 <exclusion>
  216.                     <groupId>org.springframework</groupId>
  217.                     <artifactId>spring-web</artifactId>
  218.                 </exclusion>
  219.                 <exclusion>
  220.                     <groupId>org.springframework</groupId>
  221.                     <artifactId>spring-beans</artifactId>
  222.                 </exclusion>
  223.                 <exclusion>
  224.                     <groupId>org.springframework</groupId>
  225.                     <artifactId>spring-context</artifactId>
  226.                 </exclusion>
  227.                 <exclusion>
  228.                     <groupId>org.springframework</groupId>
  229.                     <artifactId>spring-aop</artifactId>
  230.                 </exclusion>
  231.             </exclusions>
  232.         </dependency>
  233.         <dependency>
  234.             <groupId>org.codehaus.jackson</groupId>
  235.             <artifactId>jackson-core-asl</artifactId>
  236.             <version>${jackson.version}</version>
  237.         </dependency>
  238.         <dependency>
  239.             <groupId>org.codehaus.jackson</groupId>
  240.             <artifactId>jackson-mapper-asl</artifactId>
  241.             <version>${jackson.version}</version>
  242.         </dependency>
  243.         <dependency>
  244.             <groupId>org.codehaus.jackson</groupId>
  245.             <artifactId>jackson-jaxrs</artifactId>
  246.             <version>${jackson.version}</version>
  247.         </dependency>
  248.  
  249.         <!-- Spring -->
  250.         <dependency>
  251.             <groupId>org.springframework</groupId>
  252.             <artifactId>spring-webmvc</artifactId>
  253.             <version>${org.springframework-version}</version>
  254.             <exclusions>
  255.                 <exclusion>
  256.                     <groupId>commons-logging</groupId>
  257.                     <artifactId>commons-logging</artifactId>
  258.                 </exclusion>
  259.             </exclusions>
  260.         </dependency>
  261.         <dependency>
  262.             <groupId>org.springframework</groupId>
  263.             <artifactId>spring-test</artifactId>
  264.             <version>${org.springframework-version}</version>
  265.             <scope>test</scope>
  266.         </dependency>
  267.  
  268.         <!-- Atmosphere Framework -->
  269.         <dependency>
  270.             <groupId>com.github.flowersinthesand</groupId>
  271.             <artifactId>portal-core</artifactId>
  272.             <version>0.6</version>
  273.         </dependency>
  274.         <dependency>
  275.             <groupId>com.github.flowersinthesand</groupId>
  276.             <artifactId>portal-spring</artifactId>
  277.             <version>0.6</version>
  278.         </dependency>
  279.         <dependency>
  280.             <groupId>com.github.flowersinthesand</groupId>
  281.             <artifactId>portal-atmosphere</artifactId>
  282.             <version>0.6</version>
  283.         </dependency>
  284.         <dependency>
  285.             <groupId>org.atmosphere</groupId>
  286.             <artifactId>atmosphere-runtime</artifactId>
  287.             <version>1.0.12</version>
  288.             <exclusions>
  289.                 <exclusion>
  290.                     <groupId>org.slf4j</groupId>
  291.                     <artifactId>slf4j-api</artifactId>
  292.                 </exclusion>
  293.             </exclusions>
  294.         </dependency>
  295.         <dependency>
  296.             <groupId>eu.infomas</groupId>
  297.             <artifactId>annotation-detector</artifactId>
  298.             <version>3.0.1</version>
  299.         </dependency>
  300.  
  301.         <dependency>
  302.             <groupId>com.github.slugify</groupId>
  303.             <artifactId>slugify</artifactId>
  304.             <version>1.0-RELEASE</version>
  305.         </dependency>
  306.  
  307.         <dependency>
  308.             <groupId>javax.mail</groupId>
  309.             <artifactId>mail</artifactId>
  310.             <version>1.4.7</version>
  311.         </dependency>
  312.  
  313.         <dependency>
  314.             <groupId>joda-time</groupId>
  315.             <artifactId>joda-time</artifactId>
  316.             <version>2.3</version>
  317.         </dependency>
  318.     </dependencies>
  319. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement