Advertisement
Guest User

pom.xml failed in eclipse

a guest
Jul 24th, 2016
564
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 30.14 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3.     <modelVersion>4.0.0</modelVersion>
  4.     <groupId>com.example</groupId>
  5.     <artifactId>foo</artifactId>
  6.     <packaging>war</packaging>
  7.     <version>2.3.79</version>
  8.     <name>Foo</name>
  9.     <description>Hare</description>
  10.  
  11.     <organization>
  12.         <name>Comap</name>
  13.         <url>http://example.com/</url>
  14.     </organization>
  15.  
  16.     <!-- Team -->
  17.     <developers>
  18.         <developer>
  19.             <name>blah</name>
  20.             <email>blah@example.com</email>
  21.         </developer>
  22.     </developers>
  23.  
  24.     <scm>
  25.         <connection>scm:svn:http://host-svn/bar/foo/trunk</connection>
  26.         <developerConnection>scm:svn:http://host-svn/bar/foo/trunk
  27.         </developerConnection>
  28.         <tag>HEAD</tag>
  29.         <url>scm:svn:http://host-svn/bar/foo/trunk</url>
  30.     </scm>
  31.  
  32.     <repositories>
  33.         <repository>
  34.             <id>public</id>
  35.             <url>http://foo-ci:8080/nexus/content/groups/public</url>
  36.         </repository>
  37.     </repositories>
  38.  
  39.     <pluginRepositories>
  40.         <pluginRepository>
  41.             <id>public</id>
  42.             <url>http://foo-ci:8080/nexus/content/groups/public</url>
  43.         </pluginRepository>
  44.     </pluginRepositories>
  45.  
  46.     <properties>
  47.         <Access.Secure>false</Access.Secure>
  48.         <build.type></build.type>
  49.         <spring.version>3.2.15.RELEASE</spring.version>
  50.         <cxf.version>2.7.3</cxf.version>
  51.         <gwt.version>2.7.0</gwt.version>
  52.         <gwt.maven.plugin.version>2.7.0</gwt.maven.plugin.version>
  53.         <oracle.jdbc.version>11.1.0.7.0</oracle.jdbc.version>
  54.         <resteazy.version>2.3.2.Final</resteazy.version>
  55.         <jaxws.api.version>2.2.1</jaxws.api.version>
  56.         <jaxws.rt.version>2.2.6</jaxws.rt.version>
  57.         <jaxws.tools.version>2.2.6</jaxws.tools.version>
  58.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  59.         <warname.template>foo_${project.version}_${buildNumber}${build.type}</warname.template>
  60.         <java.sources.version>1.8</java.sources.version>
  61.         <java.target.version>1.8</java.target.version>
  62.         <java.jdk.version>1.8</java.jdk.version>
  63.     </properties>
  64.  
  65.     <build>
  66.         <finalName>foo.war</finalName>
  67.         <defaultGoal>package</defaultGoal>
  68.  
  69.         <resources>
  70.             <resource>
  71.                 <directory>src/main/resources</directory>
  72.                 <filtering>true</filtering>
  73.             </resource>
  74.         </resources>
  75.  
  76.         <testResources>
  77.             <testResource>
  78.                 <directory>${project.basedir}/src/main/webapp</directory>
  79.             </testResource>
  80.             <testResource>
  81.                 <directory>${project.basedir}/src/test/resources</directory>
  82.             </testResource>
  83.         </testResources>
  84.  
  85.         <!--    The Compiler Plugin is used to compile the
  86.                sources of your project. -->
  87.         <plugins>
  88.             <plugin>
  89.                 <groupId>org.apache.maven.plugins</groupId>
  90.                 <artifactId>maven-compiler-plugin</artifactId>
  91.                 <version>2.5.1</version>
  92.                 <configuration>
  93.                     <source>${java.sources.version}</source>
  94.                     <target>${java.target.version}</target>
  95.                     <compilerVersion>${java.jdk.version}</compilerVersion>
  96.                     <encoding>${project.build.sourceEncoding}</encoding>
  97.                 </configuration>
  98.             </plugin>
  99.  
  100.             <!-- The Surefire Plugin is used during the test phase of the build lifecycle
  101.                 to execute the unit tests of an application. It generates reports in two
  102.                 different file formats:
  103.                   - Plain text files (*.txt)
  104.                   - XML files (*.xml) -->
  105.             <plugin>
  106.                 <artifactId>maven-surefire-plugin</artifactId>
  107.                 <version>2.16</version>
  108.                 <configuration>
  109.                     <additionalClasspathElements>
  110.                         <additionalClasspathElement>${project.build.sourceDirectory}</additionalClasspathElement>
  111.                         <additionalClasspathElement>${project.build.testSourceDirectory}</additionalClasspathElement>
  112.                     </additionalClasspathElements>
  113.                     <useManifestOnlyJar>false</useManifestOnlyJar>
  114.                     <forkMode>always</forkMode>
  115.                     <systemProperties>
  116.                         <property>
  117.                             <name>gwt.args</name>
  118.                             <value>-out "${project.build.directory}/gwt-compile-test"</value>
  119.                         </property>
  120.                     </systemProperties>
  121.                     <includes>
  122.                         <include>**/*GwtTestSuite.java</include>
  123.                         <include>**/*Test.java</include>
  124.                     </includes>
  125.                     <excludes>
  126.                         <exclude>**/*GwtTest.java</exclude>
  127.                     </excludes>
  128.                 </configuration>
  129.             </plugin>
  130.  
  131.             <!-- GWT Maven Plugin supports :
  132.  
  133.                 - GWT compiler execution for packaging your application into a WAR Compile and Debug;
  134.                 - generate GWT internationalization ("i18n") interfaces from bundles
  135.                   Internationalization;
  136.                 - running tests (or test suites) based on GWTTestCase framework as part
  137.                   of Maven build, Testing Support;
  138.                 - run (or debug) in DevMode from Maven DevMode;
  139.                 - generate boiler code for GWT-RPC Async interface from;
  140.                   synchronous server-side interfaces Generate Async interfaces for GWT-RPC;
  141.                 - integrate nicelly into Eclipse, thanks to M2Eclipse and the Google
  142.                   Plugin for Eclipse;
  143.  
  144.                 Actual: 'org.codehaus.mojo:gwt-maven-plugin:2.7.0'
  145.            -->
  146.             <plugin>
  147.                 <groupId>org.codehaus.mojo</groupId>
  148.                 <artifactId>gwt-maven-plugin</artifactId>
  149.                 <version>${gwt.maven.plugin.version}</version>
  150.                 <executions>
  151.                     <execution>
  152.                         <goals>
  153.                             <goal>compile</goal>
  154.                         </goals>
  155.                         <configuration>
  156.                             <compileReport>false</compileReport>
  157.                             <optimizationLevel>0</optimizationLevel>
  158.                             <style>pretty</style>
  159.                             <localWorkers>1</localWorkers>
  160.                             <strict>true</strict>
  161.                             <!-- style ::= {detailed | pretty | obfuscated} -->
  162.                             <extraJvmArgs>-Xmx1024m -Dgwt.jjs.maxThreads=1</extraJvmArgs>
  163.                             <!-- logLevel ::= { ERROR | WARN | INFO | TRACE | DEBUG | SPAM | ALL } -->
  164.                             <!--<logLevel>TRACE</logLevel>-->
  165.                             <modules>
  166.                                 <module>com.example.foo.gwt.Foo</module>
  167.                             </modules>
  168.                         </configuration>
  169.                     </execution>
  170.                 </executions>
  171.             </plugin>
  172.  
  173.             <!-- The Properties Maven Plugin is here to make life a little easier
  174.                 when dealing with properties. It provides goals to read and write
  175.                 properties from and to files, and also to set system properties. -->
  176.             <!--For automatically switching security on while delivery-->
  177.             <plugin>
  178.                 <groupId>org.codehaus.mojo</groupId>
  179.                 <artifactId>properties-maven-plugin</artifactId>
  180.                 <version>1.0-alpha-2</version>
  181.                 <executions>
  182.                     <execution>
  183.                         <phase>generate-resources</phase>
  184.                         <goals>
  185.                             <goal>write-project-properties</goal>
  186.                         </goals>
  187.                         <configuration>
  188.                             <outputFile>
  189.                                 ${project.build.directory}/${project.build.finalName}/WEB-INF/AccessSecure.properties
  190.                             </outputFile>
  191.                         </configuration>
  192.                     </execution>
  193.                 </executions>
  194.             </plugin>
  195.  
  196.             <!-- Cobertura is a free Java tool that calculates the percentage
  197.                 of code accessed by tests. It can be used to identify which
  198.                 parts of your Java program are lacking test coverage.
  199.                 It is based on jcoverage. -->
  200.             <plugin>
  201.                 <groupId>org.codehaus.mojo</groupId>
  202.                 <artifactId>cobertura-maven-plugin</artifactId>
  203.                 <version>2.5.2</version>
  204.                 <configuration>
  205.                     <formats>
  206.                         <format>xml</format>
  207.                     </formats>
  208.                     <check/>
  209.                 </configuration>
  210.             </plugin>
  211.  
  212.             <!-- FindBugs looks for bugs in Java programs. It is based on the concept of bug patterns.
  213.                 A bug pattern is a code idiom that is often an error. Bug patterns arise for a variety of reasons:
  214.                    - Difficult language features
  215.                    - Misunderstood API methods
  216.                    - Misunderstood invariants when code is modified during maintenance
  217.                    - Garden variety mistakes: typos, use of the wrong boolean operator -->
  218.             <plugin>
  219.                 <groupId>org.codehaus.mojo</groupId>
  220.                 <artifactId>findbugs-maven-plugin</artifactId>
  221.                 <version>3.0.0</version>
  222.                 <configuration>
  223.                     <xmlOutput>false</xmlOutput>
  224.                     <excludeFilterFile>${basedir}/src/main/findbugs/excludeBugsFile.xml</excludeFilterFile>
  225.                 </configuration>
  226.             </plugin>
  227.  
  228.             <!-- The PMD Plugin allows you to automatically run the PMD code analysis tool
  229.                 on your project's source code and generate a site report with its results.
  230.                 It also supports the separate Copy/Paste Detector tool (or CPD) distributed
  231.                 with PMD. -->
  232.             <plugin>
  233.                 <groupId>org.apache.maven.plugins</groupId>
  234.                 <artifactId>maven-pmd-plugin</artifactId>
  235.                 <version>3.1</version>
  236.                 <configuration>
  237.                     <aggregate>true</aggregate>
  238.                     <sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
  239.                     <minimumTokens>100</minimumTokens>
  240.                     <targetJdk>${java.jdk.version}</targetJdk>
  241.                     <linkXRef>false</linkXRef>
  242.                 </configuration>
  243.             </plugin>
  244.  
  245.             <!-- This mojo is designed to get a unique build number for each time you build
  246.                 your project. So while your version may remain constant at 1.0-SNAPSHOT
  247.                 for many iterations until release, you will have a build number that can
  248.                 uniquely identify each build during that time. The build number is obtained
  249.                 from scm. You can then place that build number in metadata, which can be
  250.                 accessed from your app, if desired. -->
  251.             <plugin>
  252.                 <groupId>org.codehaus.mojo</groupId>
  253.                 <artifactId>buildnumber-maven-plugin</artifactId>
  254.                 <version>1.2</version>
  255.                 <executions>
  256.                     <execution>
  257.                         <phase>validate</phase>
  258.                         <goals>
  259.                             <goal>create</goal>
  260.                         </goals>
  261.                     </execution>
  262.                 </executions>
  263.                 <configuration>
  264.                     <doCheck>false</doCheck>
  265.                     <doUpdate>false</doUpdate>
  266.                     <providerImplementations>
  267.                         <svn>javasvn</svn>
  268.                     </providerImplementations>
  269.                 </configuration>
  270.                 <dependencies>
  271.                     <dependency>
  272.                         <groupId>org.tmatesoft.svnkit</groupId>
  273.                         <artifactId>svnkit</artifactId>
  274.                         <version>1.7.5</version>
  275.                     </dependency>
  276.                 </dependencies>
  277.             </plugin>
  278.  
  279.             <!-- The plugin offers the following goals:
  280.                  - xml:validate validates XML files against a schema. If the files
  281.                                 aren't matching a certain schema, one may simply
  282.                                 check, whether they are well formed.
  283.                  - xml:transform transforms XML files by applying XSLT stylesheets. -->
  284.             <plugin>
  285.                 <groupId>org.codehaus.mojo</groupId>
  286.                 <artifactId>xml-maven-plugin</artifactId>
  287.                 <version>1.0</version>
  288.                 <executions>
  289.                     <execution>
  290.                         <goals>
  291.                             <goal>validate</goal>
  292.                         </goals>
  293.                     </execution>
  294.                 </executions>
  295.                 <configuration>
  296.                     <validationSets>
  297.                         <validationSet>
  298.                             <dir>${basedir}/src/main/resources/com/example/foo/dao</dir>
  299.                         </validationSet>
  300.                         <validationSet>
  301.                             <dir>${basedir}/src/main/resources/mapping</dir>
  302.                         </validationSet>
  303.                         <validationSet>
  304.                             <dir>${basedir}/src/main/webapp/WEB-INF</dir>
  305.                             <includes>
  306.                                 <include>*.xml</include>
  307.                             </includes>
  308.                         </validationSet>
  309.                         <validationSet>
  310.                             <dir>${basedir}/src/main/wsdl</dir>
  311.                             <includes>
  312.                                 <include>*.wsdl</include>
  313.                             </includes>
  314.                         </validationSet>
  315.                     </validationSets>
  316.                 </configuration>
  317.             </plugin>
  318.  
  319.             <plugin>
  320.                 <groupId>org.apache.maven.plugins</groupId>
  321.                 <artifactId>maven-resources-plugin</artifactId>
  322.                 <version>2.6</version>
  323.                         <executions>
  324.                             <execution>
  325.                         <id>copy-meta-inf</id>
  326.                         <phase>process-resources</phase>
  327.                         <goals>
  328.                             <goal>copy-resources</goal>
  329.                         </goals>
  330.                                 <configuration>
  331.                             <outputDirectory>${project.build.directory}/${project.build.finalName}/META-INF</outputDirectory>
  332.                             <resources>
  333.                                 <resource>
  334.                                     <directory>src/main/META-INF</directory>
  335.                                 </resource>
  336.                             </resources>
  337.                                 </configuration>
  338.                             </execution>
  339.                         </executions>
  340.                     </plugin>
  341.                     <plugin>
  342.                         <groupId>org.apache.maven.plugins</groupId>
  343.                         <artifactId>maven-war-plugin</artifactId>
  344.                         <version>2.4</version>
  345.                         <configuration>
  346.                             <warName>${warname.template}</warName>
  347.                             <packagingExcludes>
  348.                                 **/.gwt-tmp/,
  349.                                 **/.junit_symbolMaps/,
  350.                                 WEB-INF/classes/com/example/foo/gwt/client/,
  351.                                 WEB-INF/classes/com/example/foo/gwt/rebind/,
  352.                                 test/,
  353.                                 com.example.foo.gwt.FooTestModule/,
  354.                                 WEB-INF/classes/com/example/foo/gwt/client/FooTestModule.class,
  355.                         WEB-INF/deploy/,
  356.                         WEB-INF/jboss-*.xml
  357.                             </packagingExcludes>
  358.                             <archive>
  359.                                 <manifest>
  360.                                     <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  361.                                 </manifest>
  362.                                 <manifestEntries>
  363.                                     <Implementation-Build>${buildNumber}</Implementation-Build>
  364.                                 </manifestEntries>
  365.                             </archive>
  366.                         </configuration>
  367.                     </plugin>
  368.                 </plugins>
  369.             </build>
  370.  
  371.     <reporting>
  372.         <plugins>
  373.             <plugin>
  374.                 <groupId>org.apache.maven.plugins</groupId>
  375.                 <artifactId>maven-javadoc-plugin</artifactId>
  376.                 <version>2.10.1</version>
  377.                 <configuration>
  378.                     <excludePackageNames>com.*</excludePackageNames>
  379.                 </configuration>
  380.             </plugin>
  381.         </plugins>
  382.     </reporting>
  383.  
  384.     <dependencies>
  385.         <!-- GWT -->
  386.  
  387.         <!-- Actual: 'com.google.gwt:gwt-user:2.7.0' -->
  388.         <dependency>
  389.             <groupId>com.google.gwt</groupId>
  390.             <artifactId>gwt-user</artifactId>
  391.             <version>${gwt.version}</version>
  392.             <scope>provided</scope>
  393.         </dependency>
  394.         <!-- Actual: 'com.google.gwt:gwt-servlet:2.7.0' -->
  395.         <dependency>
  396.             <groupId>com.google.gwt</groupId>
  397.             <artifactId>gwt-servlet</artifactId>
  398.             <version>${gwt.version}</version>
  399.         </dependency>
  400.  
  401.         <!--
  402.          The Server Library for GWT is a collection of Java
  403.          server side components for the Google Web Toolkit
  404.          AJAX framework with the focus on the Spring framework
  405.          by facilitating publishing of Spring beans as RPC
  406.          services with support for Hibernate-managed entities.
  407.        -->
  408.         <dependency>
  409.             <groupId>net.sf.gwt-widget</groupId>
  410.             <artifactId>gwt-sl</artifactId>
  411.             <version>1.2</version>
  412.         </dependency>
  413.  
  414.         <!--
  415.          The Apache Log4j Implementation
  416.          Actual: 'org.apache.logging.log4j:log4j-core:2.1'
  417.        -->
  418.         <dependency>
  419.             <groupId>log4j</groupId>
  420.             <artifactId>log4j</artifactId>
  421.             <version>1.2.17</version>
  422.         </dependency>
  423.  
  424.         <!--
  425.          Java library which enables encryption in java
  426.          apps with minimum effort.
  427.  
  428.          Actual: 'org.jasypt:jasypt:1.9.2'
  429.        -->
  430.         <dependency>
  431.             <groupId>org.jasypt</groupId>
  432.             <artifactId>jasypt</artifactId>
  433.             <version>1.9.0</version>
  434.         </dependency>
  435.         <!--
  436.          Actual: 'org.jasypt:jasypt-spring3:1.9.
  437.        -->
  438.         <dependency>
  439.             <groupId>org.jasypt</groupId>
  440.             <artifactId>jasypt-spring3</artifactId>
  441.             <version>1.9.0</version>
  442.         </dependency>
  443.  
  444.         <!-- Spring -->
  445.         <dependency>
  446.             <groupId>org.springframework</groupId>
  447.             <artifactId>spring-core</artifactId>
  448.             <version>${spring.version}</version>
  449.         </dependency>
  450.         <dependency>
  451.             <groupId>org.springframework</groupId>
  452.             <artifactId>spring-jdbc</artifactId>
  453.             <version>${spring.version}</version>
  454.         </dependency>
  455.         <dependency>
  456.             <groupId>org.springframework</groupId>
  457.             <artifactId>spring-webmvc</artifactId>
  458.             <version>${spring.version}</version>
  459.         </dependency>
  460.         <dependency>
  461.             <groupId>org.springframework</groupId>
  462.             <artifactId>spring-context-support</artifactId>
  463.             <version>${spring.version}</version>
  464.         </dependency>
  465.         <dependency>
  466.             <groupId>org.springframework</groupId>
  467.             <artifactId>spring-test</artifactId>
  468.             <version>${spring.version}</version>
  469.             <scope>test</scope>
  470.         </dependency>
  471.         <dependency>
  472.             <groupId>org.hibernate</groupId>
  473.             <artifactId>hibernate-validator-annotation-processor</artifactId>
  474.             <version>4.1.0.Final</version>
  475.         </dependency>
  476.  
  477.         <!-- Code Generation Library. Newest version is 'cglib:cglib:3.1' -->
  478.         <dependency>
  479.             <groupId>cglib</groupId>
  480.             <artifactId>cglib-nodep</artifactId>
  481.             <version>2.2.2</version>
  482.             <scope>runtime</scope>
  483.         </dependency>
  484.  
  485.         <!-- Oracle -->
  486.         <dependency>
  487.             <groupId>oracle.jdbc</groupId>
  488.             <artifactId>ojdbc6</artifactId>
  489.             <version>${oracle.jdbc.version}</version>
  490.             <scope>provided</scope>
  491.         </dependency>
  492.         <dependency>
  493.             <groupId>oracle.jdbc</groupId>
  494.             <artifactId>orai18n</artifactId>
  495.             <version>${oracle.jdbc.version}</version>
  496.             <scope>provided</scope>
  497.         </dependency>
  498.  
  499.         <!-- Class persistence framework. Latest version is 'org.mybatis:mybatis-spring:1.2.2' -->
  500.         <dependency>
  501.             <groupId>org.mybatis</groupId>
  502.             <artifactId>mybatis-spring</artifactId>
  503.             <version>1.1.1</version>
  504.         </dependency>
  505.  
  506.         <!-- CXF libraries -->
  507.         <dependency>
  508.             <groupId>org.apache.cxf</groupId>
  509.             <artifactId>cxf-api</artifactId>
  510.             <version>${cxf.version}</version>
  511.         </dependency>
  512.  
  513.         <dependency>
  514.             <groupId>org.apache.cxf</groupId>
  515.             <artifactId>cxf-rt-ws-security</artifactId>
  516.             <version>${cxf.version}</version>
  517.         </dependency>
  518.         <dependency>
  519.             <groupId>org.apache.cxf</groupId>
  520.             <artifactId>cxf-rt-frontend-jaxws</artifactId>
  521.             <version>${cxf.version}</version>
  522.             <exclusions>
  523.                 <exclusion>
  524.                     <artifactId>asm</artifactId>
  525.                     <groupId>asm</groupId>
  526.                 </exclusion>
  527.             </exclusions>
  528.         </dependency>
  529.         <dependency>
  530.             <groupId>org.apache.cxf</groupId>
  531.             <artifactId>cxf-rt-transports-http-jetty</artifactId>
  532.             <version>2.7.7</version>
  533.         </dependency>
  534.  
  535.         <!--
  536.            JUnit is a unit testing framework for Java,
  537.            created by Erich Gamma and Kent Beck.
  538.            Actual: 'junit:junit:4.12'
  539.        -->
  540.         <dependency>
  541.             <groupId>junit</groupId>
  542.             <artifactId>junit</artifactId>
  543.             <version>4.12</version>
  544.             <scope>test</scope>
  545.         </dependency>
  546.  
  547.         <!--
  548.            Mock objects library for java
  549.            Actual: 'org.mockito:mockito-all:1.10.19'
  550.        -->
  551.         <dependency>
  552.             <groupId>org.mockito</groupId>
  553.             <artifactId>mockito-all</artifactId>
  554.             <version>1.10.8</version>
  555.             <scope>test</scope>
  556.         </dependency>
  557.  
  558.         <!-- Third-party web-services stubs -->
  559.         <dependency>
  560.             <groupId>com.huawei</groupId>
  561.             <artifactId>cmsservice</artifactId>
  562.             <version>NGINMobileR002C01LUA501_cxf_2.7.3</version>
  563.         </dependency>
  564.         <dependency>
  565.             <groupId>com.pontis</groupId>
  566.             <artifactId>pontisclient</artifactId>
  567.             <version>1.1.0_cxf_2.7.3</version>
  568.         </dependency>
  569.  
  570.         <dependency>
  571.             <groupId>com.comverse</groupId>
  572.             <artifactId>customercareservice</artifactId>
  573.             <version>20160104_cxf_2.7.3</version>
  574.         </dependency>
  575.  
  576.         <dependency>
  577.             <groupId>com.comverse</groupId>
  578.             <artifactId>subscriberservice</artifactId>
  579.             <version>20160104_cxf_2.7.3</version>
  580.         </dependency>
  581.  
  582.         <dependency>
  583.             <groupId>com.comverse</groupId>
  584.             <artifactId>fflistinstancememberservice</artifactId>
  585.             <version>20160104_cxf_2.7.3</version>
  586.         </dependency>
  587.  
  588.         <dependency>
  589.             <groupId>com.comverse</groupId>
  590.             <artifactId>samlsignonws</artifactId>
  591.             <version>20160104_cxf_2.7.3</version>
  592.         </dependency>
  593.         <dependency>
  594.             <groupId>com.comverse</groupId>
  595.             <artifactId>offerrctermservice</artifactId>
  596.             <version>20160104_cxf_2.7.3</version>
  597.         </dependency>
  598.         <dependency>
  599.             <groupId>com.comverse</groupId>
  600.             <artifactId>resellerversionservice</artifactId>
  601.             <version>20160104_cxf_2.7.3</version>
  602.         </dependency>
  603.  
  604.         <!--
  605.           Apache HttpComponents Client
  606.           Actual: 'org.apache.httpcomponents:httpclient:4.4'
  607.        -->
  608.         <dependency>
  609.             <groupId>org.apache.httpcomponents</groupId>
  610.             <artifactId>httpclient</artifactId>
  611.             <version>4.3.4</version>
  612.         </dependency>
  613.         <!--
  614.           Actual: 'org.apache.httpcomponents:httpcore:4.4'
  615.        -->
  616.         <dependency>
  617.             <groupId>org.apache.httpcomponents</groupId>
  618.             <artifactId>httpcore</artifactId>
  619.             <version>4.3.2</version>
  620.         </dependency>
  621.  
  622.         <!--
  623.            The Apache Commons Digester package lets you configure an XML
  624.            to Java object mapping module which triggers certain actions
  625.            called rules whenever a particular pattern of nested XML
  626.            elements is recognized.
  627.            Actual: 'org.apache.commons:commons-digester3:3.2'
  628.        -->
  629.         <dependency>
  630.             <groupId>commons-digester</groupId>
  631.             <artifactId>commons-digester</artifactId>
  632.             <version>2.1</version>
  633.         </dependency>
  634.         <!--
  635.            Tools to assist in the reading of configuration/preferences
  636.            files in various formats.
  637.            Actual: 'commons-configuration:commons-configuration:1.10'
  638.        -->
  639.         <dependency>
  640.             <groupId>commons-configuration</groupId>
  641.             <artifactId>commons-configuration</artifactId>
  642.             <version>1.6</version>
  643.             <exclusions>
  644.                 <exclusion>
  645.                     <groupId>commons-beanutils</groupId>
  646.                     <artifactId>commons-beanutils-core</artifactId>
  647.                 </exclusion>
  648.             </exclusions>
  649.         </dependency>
  650.  
  651.         <!-- Resteasy JAXB Provider
  652.             Actual: 'org.jboss.resteasy:resteasy-jaxb-provider:3.0.10.Final'
  653.         -->
  654.         <dependency>
  655.             <groupId>org.jboss.resteasy</groupId>
  656.             <artifactId>resteasy-jaxb-provider</artifactId>
  657.             <version>${resteazy.version}</version>
  658.             <exclusions>
  659.                 <exclusion>
  660.                     <groupId>javax.servlet</groupId>
  661.                     <artifactId>servlet-api</artifactId>
  662.                 </exclusion>
  663.             </exclusions>
  664.         </dependency>
  665.         <!-- Resteasy Spring Integration
  666.             Actual: 'org.jboss.resteasy:resteasy-spring:3.0.10.Final'
  667.        -->
  668.         <dependency>
  669.             <groupId>org.jboss.resteasy</groupId>
  670.             <artifactId>resteasy-spring</artifactId>
  671.             <version>${resteazy.version}</version>
  672.         </dependency>
  673.  
  674.         <!-- Caching. This is the ehcache core module. Pair it
  675.             with other modules for added functionality.
  676.             Actual: 'net.sf.ehcache:ehcache-core:2.6.10'
  677.        -->
  678.         <dependency>
  679.             <groupId>net.sf.ehcache</groupId>
  680.             <artifactId>ehcache-core</artifactId>
  681.             <version>2.6.3</version>
  682.         </dependency>
  683.  
  684.         <!-- Apache POI - Java API To Access Microsoft
  685.             Format Files. Actual: 'org.apache.poi:poi:3.11'
  686.        -->
  687.         <dependency>
  688.             <groupId>org.apache.poi</groupId>
  689.             <artifactId>poi</artifactId>
  690.             <version>3.9</version>
  691.         </dependency>
  692.  
  693.         <!-- Date and time library to replace JDK
  694.             date handling. Actual: 'joda-time:joda-time:2.7'
  695.        -->
  696.         <dependency>
  697.             <groupId>joda-time</groupId>
  698.             <artifactId>joda-time</artifactId>
  699.             <version>2.7</version>
  700.         </dependency>
  701.  
  702.         <!--
  703.            Mapping (Copping) objects
  704.            Actual: 'net.sf.dozer:dozer:5.5.1'
  705.        -->
  706.         <dependency>
  707.             <groupId>net.sf.dozer</groupId>
  708.             <artifactId>dozer</artifactId>
  709.             <version>5.4.0</version>
  710.         </dependency>
  711.  
  712.         <!-- JSon mapping -->
  713.         <dependency>
  714.             <groupId>com.google.code.gson</groupId>
  715.             <artifactId>gson</artifactId>
  716.             <version>2.2.4</version>
  717.         </dependency>
  718.  
  719.         <!--
  720.           Don't touch. This jar MUST be at the end
  721.           Actual: 'com.google.gwt:gwt-dev:2.7.0'
  722.        -->
  723.         <dependency>
  724.             <groupId>com.google.gwt</groupId>
  725.             <artifactId>gwt-dev</artifactId>
  726.             <version>${gwt.version}</version>
  727.             <scope>provided</scope>
  728.         </dependency>
  729.         <dependency>
  730.             <groupId>javax.xml.ws</groupId>
  731.             <artifactId>jaxws-api</artifactId>
  732.             <version>${jaxws.api.version}</version>
  733.         </dependency>
  734.         <dependency>
  735.             <groupId>com.sun.xml.ws</groupId>
  736.             <artifactId>jaxws-rt</artifactId>
  737.             <version>${jaxws.rt.version}</version>
  738.         </dependency>
  739.         <dependency>
  740.             <groupId>com.sun.xml.ws</groupId>
  741.             <artifactId>jaxws-tools</artifactId>
  742.             <version>${jaxws.tools.version}</version>
  743.         </dependency>
  744.         <!--
  745.           A set of annotations used for code
  746.           inspection support and code documentation.
  747.        -->
  748.         <dependency>
  749.             <groupId>com.intellij</groupId>
  750.             <artifactId>annotations</artifactId>
  751.             <version>12.0</version>
  752.         </dependency>
  753.     </dependencies>
  754. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement