Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 29.76 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"
  3.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion>4.0.0</modelVersion>
  5.  
  6.     <parent>
  7.         <groupId>org.igov</groupId>
  8.         <artifactId>root</artifactId>
  9.         <version>1.0-SNAPSHOT</version>
  10.     </parent>
  11.  
  12.     <properties>
  13.         <camel-version>2.17.1</camel-version>
  14.         <activity.version>5.17.0</activity.version>
  15.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16.         <sRevisionPostfixBaseLocal>${sRevisionPostfixBase}</sRevisionPostfixBaseLocal> <!-- Version is connected! You can't modify it separated ! -->
  17.         <version.net.sf.proguard>6.0.3</version.net.sf.proguard>
  18.         <java.cryptographic.extension.classes>${java.home}/lib/jce.jar</java.cryptographic.extension.classes>
  19.         <java.secure.socket.extension.classes>${java.home}/lib/jsse.jar</java.secure.socket.extension.classes>
  20.     </properties>
  21.  
  22.     <name>iGov-UA WF-Base</name>
  23.     <artifactId>wf-base</artifactId>
  24.     <version>${sRevisionPostfixBaseLocal}</version>
  25.     <packaging>jar</packaging>
  26.     <!--packaging>war</packaging -->
  27.  
  28.     <repositories>
  29.  
  30.         <repository>
  31.             <id>vaadin-addons</id>
  32.             <url>http://maven.vaadin.com/vaadin-addons</url>
  33.         </repository>
  34.         <repository>
  35.             <id>iGov-hosted-repo</id>
  36.             <url>http://nexus.igov.org.ua/repository/maven-hosted</url>
  37.         </repository>
  38.  
  39.     </repositories>
  40.  
  41.     <dependencyManagement>
  42.         <dependencies>
  43.             <dependency>
  44.                 <groupId>net.sf.proguard</groupId>
  45.                 <artifactId>proguard-base</artifactId>
  46.                 <version>${version.net.sf.proguard}</version>
  47.             </dependency>
  48.         </dependencies>
  49.     </dependencyManagement>
  50.     <build>
  51.  
  52.         <plugins>
  53.             <plugin>
  54.                 <groupId>org.apache.maven.plugins</groupId>
  55.                 <artifactId>maven-compiler-plugin</artifactId>
  56.                 <configuration>
  57.                     <source>1.8</source>
  58.                     <target>1.8</target>
  59.                     <encoding>${project.build.sourceEncoding}</encoding>
  60.                 </configuration>
  61.             </plugin>
  62.             <plugin>
  63.                 <artifactId>maven-war-plugin</artifactId>
  64.                 <configuration>
  65.                     <warName>${project.artifactId}</warName>
  66.                     <warSourceExcludes>**/DB.SQL.properties</warSourceExcludes>
  67.                     <!--warSourceExcludes>**/email.properties</warSourceExcludes -->
  68.                     <!--warSourceExcludes>**/bankID.properties</warSourceExcludes -->
  69.                 </configuration>
  70.             </plugin>
  71.             <plugin>
  72.                 <artifactId>maven-jar-plugin</artifactId>
  73.                 <configuration>
  74.                     <jarName>${project.artifactId}-${project.version}</jarName>
  75.                     <!--jarName>${project.artifactId}-1.0.0-RELEASE</jarName -->
  76.                     <classifier>lib</classifier>
  77.                     <!--excludes> <exclude>*.properties</exclude> <exclude>*.alfresco</exclude>
  78.                    <exclude>*.json</exclude> </excludes -->
  79.                 </configuration>
  80.             </plugin>
  81.             <plugin>
  82.                 <groupId>org.zeroturnaround</groupId>
  83.                 <artifactId>jrebel-maven-plugin</artifactId>
  84.                 <executions>
  85.                     <execution>
  86.                         <id>generate-rebel-xml</id>
  87.                         <phase>process-resources</phase>
  88.                         <goals>
  89.                             <goal>generate</goal>
  90.                         </goals>
  91.                     </execution>
  92.                 </executions>
  93.             </plugin>
  94.             <plugin>
  95.                 <artifactId>maven-assembly-plugin</artifactId>
  96.                 <version>2.2.1</version>
  97.                 <configuration>
  98.                     <descriptors>
  99.                         <descriptor>src/main/assembly/ui-zip.xml</descriptor>
  100.                     </descriptors>
  101.                 </configuration>
  102.                 <executions>
  103.                     <execution>
  104.                         <id>make-assembly</id>
  105.                         <phase>package</phase>
  106.                         <goals>
  107.                             <goal>single</goal>
  108.                         </goals>
  109.                     </execution>
  110.                 </executions>
  111.             </plugin>
  112.             <plugin>
  113.                 <groupId>org.apache.tomcat.maven</groupId>
  114.                 <artifactId>tomcat7-maven-plugin</artifactId>
  115.                 <configuration>
  116.                     <port>8080</port>
  117.                     <path>/wf-region</path>
  118.                     <systemProperties>
  119.                         <com.sun.management.jmxremote.port>4000</com.sun.management.jmxremote.port>
  120.                         <spring.profiles.active>test</spring.profiles.active>
  121.                     </systemProperties>
  122.                 </configuration>
  123.             </plugin>
  124.             <plugin>
  125.                 <groupId>org.apache.maven.plugins</groupId>
  126.                 <artifactId>maven-jar-plugin</artifactId>
  127.                 <executions>
  128.                     <execution>
  129.                         <goals>
  130.                             <goal>test-jar</goal>
  131.                         </goals>
  132.                     </execution>
  133.                 </executions>
  134.             </plugin>
  135.             <plugin>
  136.                 <groupId>org.asciidoctor</groupId>
  137.                 <artifactId>asciidoctor-maven-plugin</artifactId>
  138.                 <version>1.5.2.1</version>
  139.                 <dependencies>
  140.                     <!-- <dependency> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctorj-pdf</artifactId>
  141.                    <version>1.5.0-alpha.9</version> </dependency> -->
  142.                 </dependencies>
  143.                 <executions>
  144.                     <execution>
  145.                         <id>output-html</id>
  146.                         <phase>verify</phase>
  147.                         <goals>
  148.                             <goal>process-asciidoc</goal>
  149.                         </goals>
  150.                         <configuration>
  151.                             <sourceHighlighter>coderay</sourceHighlighter>
  152.                             <backend>html5</backend>
  153.                             <doctype>book</doctype>
  154.                             <attributes>
  155.                                 <toc2 />
  156.                                 <linkcss>false</linkcss>
  157.                                 <numbered>true</numbered>
  158.                                 <toclevels>3</toclevels>
  159.                                 <docdatetime>${maven.build.timestamp}</docdatetime>
  160.                             </attributes>
  161.                         </configuration>
  162.                     </execution>
  163.                     <!-- Работает но довольно долго, если нужен pdf расскоментировать <execution>
  164.                    <id>generate-pdf-doc</id> <phase>generate-resources</phase> <goals> <goal>process-asciidoc</goal>
  165.                    </goals> <configuration> <backend>pdf</backend> <sourceHighlighter>rouge</sourceHighlighter>
  166.                    <attributes> <icons>font</icons> <pagenums /> <toc2 /> <idprefix /> <idseparator>-</idseparator>
  167.                    </attributes> </configuration> </execution> -->
  168.                 </executions>
  169.                 <configuration>
  170.                     <sourceDirectory>src/main/asciidoc</sourceDirectory>
  171.                     <preserveDirectories>true</preserveDirectories>
  172.                     <!-- <sourceDocumentName>base-allrest-index.adoc</sourceDocumentName>
  173.                    <sourceDocumentName>base-egovrest-index.adoc</sourceDocumentName> -->
  174.                     <headerFooter>true</headerFooter>
  175.                     <imagesDir>../resources/images</imagesDir>
  176.                 </configuration>
  177.             </plugin>
  178.             <plugin>
  179.                 <groupId>com.github.wvengen</groupId>
  180.                 <artifactId>proguard-maven-plugin</artifactId>
  181.                 <version>2.0.14</version>
  182.                 <configuration>
  183.                     <includeDependency>false</includeDependency>
  184.                     <injar>${project.build.finalName}-lib.${project.packaging}</injar>
  185.                     <outjar>${project.build.finalName}-proguard.${project.packaging}</outjar>
  186.                     <libs>
  187.                         <!--
  188.                            <lib>${java.home}/jmods/java.base.jmod(!**.jar;!module-info.class)</lib>
  189.                        -->
  190.  
  191.                         <lib>${java.cryptographic.extension.classes}</lib>
  192.                         <lib>${java.secure.socket.extension.classes}</lib>
  193.                     </libs>
  194.                     <options>
  195.                         <option>-libraryjars ${java.home}/lib/rt.jar</option>
  196.  
  197.                         <option>-dontpreverify</option>
  198.                         <option>-optimizations !code/allocation/variable</option>
  199.                         <option>-dontskipnonpubliclibraryclasses</option>
  200.                         <option>-dontskipnonpubliclibraryclassmembers</option>
  201.                         <option>-keepclasseswithmembers public class *</option>
  202.                         <option>-keepattributes *</option>
  203.                     </options>
  204.                 </configuration>
  205.                 <dependencies>
  206.                     <dependency>
  207.                         <groupId>net.sf.proguard</groupId>
  208.                         <artifactId>proguard-base</artifactId>
  209.                         <version>6.0.3</version>
  210.                         <scope>runtime</scope>
  211.                     </dependency>
  212.                 </dependencies>
  213.                 <executions>
  214.                     <execution>
  215.                         <id>proguard</id>
  216.                         <phase>package</phase>
  217.                         <goals>
  218.                             <goal>proguard</goal>
  219.                         </goals>
  220.                     </execution>
  221.                 </executions>
  222.             </plugin>
  223.             <!-- ## Please install igov-maven-plugin from https://github.com/e-government-ua/ilog
  224.            before activation <plugin> <groupId>org.igov</groupId> <artifactId>log-plugin</artifactId>
  225.            <version>1.0.1</version> <executions> <execution> <phase>validate</phase>
  226.            <goals> <goal>replace-long-calls</goal> </goals> </execution> </executions>
  227.            </plugin> -->
  228.         </plugins>
  229.         <pluginManagement>
  230.             <plugins>
  231.                 <!--This plugin's configuration is used to store Eclipse m2e settings
  232.                only. It has no influence on the Maven build itself. -->
  233.                 <plugin>
  234.                     <groupId>org.eclipse.m2e</groupId>
  235.                     <artifactId>lifecycle-mapping</artifactId>
  236.                     <version>1.0.0</version>
  237.                     <configuration>
  238.                         <lifecycleMappingMetadata>
  239.                             <pluginExecutions>
  240.                                 <pluginExecution>
  241.                                     <pluginExecutionFilter>
  242.                                         <groupId>
  243.                                             org.zeroturnaround
  244.                                         </groupId>
  245.                                         <artifactId>
  246.                                             jrebel-maven-plugin
  247.                                         </artifactId>
  248.                                         <versionRange>
  249.                                             [1.0.7,)
  250.                                         </versionRange>
  251.                                         <goals>
  252.                                             <goal>generate</goal>
  253.                                         </goals>
  254.                                     </pluginExecutionFilter>
  255.                                     <action>
  256.                                         <ignore></ignore>
  257.                                     </action>
  258.                                 </pluginExecution>
  259.                             </pluginExecutions>
  260.                         </lifecycleMappingMetadata>
  261.                     </configuration>
  262.                 </plugin>
  263.             </plugins>
  264.         </pluginManagement>
  265.     </build>
  266.     <dependencies>
  267.         <dependency>
  268.             <groupId>com.microsoft.sqlserver</groupId>
  269.             <artifactId>sqljdbc4</artifactId>
  270.             <version>2.0</version>
  271.         </dependency>
  272.         <dependency>
  273.             <groupId>com.google.guava</groupId>
  274.             <artifactId>guava</artifactId>
  275.         </dependency>
  276.         <dependency>
  277.             <groupId>jmimemagic</groupId>
  278.             <artifactId>jmimemagic</artifactId>
  279.             <version>0.1.2</version>
  280.         </dependency>
  281.         <!-- Activiti -->
  282.         <dependency>
  283.             <groupId>org.activiti</groupId>
  284.             <artifactId>activiti-engine</artifactId>
  285.             <version>${activity.version}</version>
  286.  
  287.         </dependency>
  288.         <dependency>
  289.             <groupId>org.activiti</groupId>
  290.             <artifactId>activiti-spring</artifactId>
  291.             <version>${activity.version}</version>
  292.         </dependency>
  293.         <dependency>
  294.             <groupId>org.activiti</groupId>
  295.             <artifactId>activiti-explorer</artifactId>
  296.             <version>${activity.version}</version>
  297.             <exclusions>
  298.                 <exclusion>
  299.                     <groupId>org.vaadin.addons</groupId>
  300.                     <artifactId>dcharts-widget</artifactId>
  301.                 </exclusion>
  302.             </exclusions>
  303.         </dependency>
  304.         <dependency>
  305.             <groupId>org.activiti</groupId>
  306.             <artifactId>activiti-modeler</artifactId>
  307.             <version>${activity.version}</version>
  308.             <exclusions>
  309.                 <exclusion>
  310.                     <groupId>xalan</groupId>
  311.                     <artifactId>xalan</artifactId>
  312.                 </exclusion>
  313.             </exclusions>
  314.         </dependency>
  315.         <!-- <dependency> <groupId>org.vaadin.addons</groupId> <artifactId>dcharts-widget</artifactId>
  316.        <version>0.10.0</version> </dependency> -->
  317.         <dependency>
  318.             <groupId>org.activiti</groupId>
  319.             <artifactId>activiti-diagram-rest</artifactId>
  320.             <version>${activity.version}</version>
  321.         </dependency>
  322.         <dependency>
  323.             <groupId>org.activiti</groupId>
  324.             <artifactId>activiti-simple-workflow</artifactId>
  325.             <version>${activity.version}</version>
  326.         </dependency>
  327.  
  328.         <dependency>
  329.             <groupId>javax.servlet</groupId>
  330.             <artifactId>javax.servlet-api</artifactId>
  331.             <version>3.1.0</version>
  332.             <scope>provided</scope>
  333.         </dependency>
  334.  
  335.         <!-- REST API -->
  336.         <dependency>
  337.             <groupId>org.activiti</groupId>
  338.             <artifactId>activiti-rest</artifactId>
  339.             <version>${activity.version}</version>
  340.         </dependency>
  341.         <dependency>
  342.             <groupId>org.activiti</groupId>
  343.             <artifactId>activiti-json-converter</artifactId>
  344.             <version>${activity.version}</version>
  345.         </dependency>
  346.  
  347.         <!-- DB-NoSQL (KeyValue-Storage) -->
  348.         <dependency>
  349.             <groupId>org.igov</groupId>
  350.             <artifactId>db-kv-temp</artifactId>
  351.             <version>${sRevisionPostfixBaseLocal}</version>
  352.         </dependency>
  353.  
  354.         <dependency>
  355.             <groupId>org.igov</groupId>
  356.             <artifactId>db-kv-statical</artifactId>
  357.             <version>${sRevisionPostfixBaseLocal}</version>
  358.         </dependency>
  359.  
  360.         <!-- DB-SQL (Relative-Storage) -->
  361.         <dependency>
  362.             <groupId>commons-dbcp</groupId>
  363.             <artifactId>commons-dbcp</artifactId>
  364.             <version>1.4</version>
  365.         </dependency>
  366.         <dependency>
  367.             <groupId>com.h2database</groupId>
  368.             <artifactId>h2</artifactId>
  369.         </dependency>
  370.         <dependency>
  371.             <groupId>org.postgresql</groupId>
  372.             <artifactId>postgresql</artifactId>
  373.         </dependency>
  374.  
  375.         <dependency>
  376.             <groupId>org.hibernate</groupId>
  377.             <artifactId>hibernate-core</artifactId>
  378.         </dependency>
  379.        
  380.         <!--dependency>
  381.            <groupId>org.hibernate</groupId>
  382.            <artifactId>hibernate-ehcache</artifactId>
  383.            <version>4.3.10.Final</version>
  384.        </dependency-->
  385.        
  386.         <dependency>
  387.             <groupId>org.jadira.usertype</groupId>
  388.             <artifactId>usertype.core</artifactId>
  389.         </dependency>
  390.        
  391.         <dependency>
  392.             <groupId>org.liquibase</groupId>
  393.             <artifactId>liquibase-core</artifactId>
  394.         </dependency>
  395.  
  396.         <dependency>
  397.             <groupId>net.sf.ehcache</groupId>
  398.             <artifactId>ehcache</artifactId>
  399.         </dependency>
  400.  
  401.         <dependency>
  402.             <groupId>jboss</groupId>
  403.             <artifactId>jboss-serialization</artifactId>
  404.         </dependency>
  405.  
  406.         <dependency>
  407.             <groupId>trove</groupId>
  408.             <artifactId>trove</artifactId>
  409.         </dependency>
  410.  
  411.         <dependency>
  412.             <groupId>org.springframework</groupId>
  413.             <artifactId>spring-aop</artifactId>
  414.         </dependency>
  415.  
  416.         <dependency>
  417.             <groupId>org.springframework</groupId>
  418.             <artifactId>spring-aspects</artifactId>
  419.         </dependency>
  420.  
  421.         <dependency>
  422.             <groupId>org.springframework</groupId>
  423.             <artifactId>spring-orm</artifactId>
  424.         </dependency>
  425.  
  426.         <!-- Other -->
  427.         <dependency>
  428.             <groupId>net.sf.brunneng.jom</groupId>
  429.             <artifactId>java-object-merger</artifactId>
  430.         </dependency>
  431.  
  432.         <!-- <dependency> <groupId>org.opensymphony.quartz</groupId> <artifactId>quartz</artifactId>
  433.        </dependency> -->
  434.  
  435.         <dependency>
  436.             <groupId>com.google.code.gson</groupId>
  437.             <artifactId>gson</artifactId>
  438.             <version>2.3.1</version>
  439.         </dependency>
  440.         <dependency>
  441.             <groupId>com.google.apis</groupId>
  442.             <artifactId>google-api-services-drive</artifactId>
  443.             <version>v3-rev86-1.23.0</version>
  444.         </dependency>
  445.         <dependency>
  446.             <groupId>com.google.http-client</groupId>
  447.             <artifactId>google-http-client</artifactId>
  448.             <version>1.23.0</version>
  449.         </dependency>
  450.         <dependency>
  451.             <groupId>com.google.http-client</groupId>
  452.             <artifactId>google-http-client-jackson2</artifactId>
  453.             <version>1.23.0</version>
  454.         </dependency>
  455.         <dependency>
  456.             <groupId>com.google.oauth-client</groupId>
  457.             <artifactId>google-oauth-client-jetty</artifactId>
  458.             <version>1.23.0</version>
  459.         </dependency>
  460.        
  461.         <dependency>
  462.             <groupId>com.pb.crm</groupId>
  463.             <artifactId>corezoid-sdk</artifactId>
  464.             <version>2.1</version>
  465.         </dependency>
  466.  
  467.         <!-- Running example processes -->
  468.         <dependency>
  469.             <groupId>org.codehaus.groovy</groupId>
  470.             <artifactId>groovy-all</artifactId>
  471.             <version>2.1.3</version>
  472.         </dependency>
  473.  
  474.         <!-- Testing -->
  475.         <dependency>
  476.             <groupId>org.springframework</groupId>
  477.             <artifactId>spring-test</artifactId>
  478.         </dependency>
  479.         <dependency>
  480.             <groupId>org.dbunit</groupId>
  481.             <artifactId>dbunit</artifactId>
  482.         </dependency>
  483.         <dependency>
  484.             <groupId>com.github.springtestdbunit</groupId>
  485.             <artifactId>spring-test-dbunit</artifactId>
  486.         </dependency>
  487.  
  488.         <dependency>
  489.             <groupId>com.jayway.jsonpath</groupId>
  490.             <artifactId>json-path-assert</artifactId>
  491.             <version>0.8.1</version>
  492.             <scope>test</scope>
  493.         </dependency>
  494.         <dependency>
  495.             <groupId>com.jayway.jsonpath</groupId>
  496.             <artifactId>json-path</artifactId>
  497.             <version>0.8.1</version>
  498.             <scope>test</scope>
  499.         </dependency>
  500.         <dependency>
  501.             <groupId>dumbster</groupId>
  502.             <artifactId>dumbster</artifactId>
  503.             <version>1.6</version>
  504.             <scope>test</scope>
  505.             <exclusions>
  506.                 <exclusion>
  507.                     <groupId>javax.mail</groupId>
  508.                     <artifactId>mail</artifactId>
  509.                 </exclusion>
  510.                 <exclusion>
  511.                     <groupId>javax.activation</groupId>
  512.                     <artifactId>activation</artifactId>
  513.                 </exclusion>
  514.             </exclusions>
  515.         </dependency>
  516.         <dependency>
  517.             <groupId>org.mockito</groupId>
  518.             <artifactId>mockito-all</artifactId>
  519.         </dependency>
  520.         <dependency>
  521.             <groupId>org.hamcrest</groupId>
  522.             <artifactId>hamcrest-all</artifactId>
  523.         </dependency>
  524.         <dependency>
  525.             <groupId>junit</groupId>
  526.             <artifactId>junit</artifactId>
  527.         </dependency>
  528.         <dependency>
  529.             <groupId>org.assertj</groupId>
  530.             <artifactId>assertj-core</artifactId>
  531.         </dependency>
  532.         <dependency>
  533.             <groupId>com.google.gwt</groupId>
  534.             <artifactId>gwt-servlet</artifactId>
  535.             <version>2.3.0</version>
  536.         </dependency>
  537.         <dependency>
  538.             <groupId>com.plexiti.activiti</groupId>
  539.             <artifactId>activiti-fluent-tests</artifactId>
  540.             <version>0.3</version>
  541.             <scope>test</scope>
  542.         </dependency>
  543.         <dependency>
  544.             <groupId>jstl</groupId>
  545.             <artifactId>jstl</artifactId>
  546.             <version>1.2</version>
  547.         </dependency>
  548.         <dependency>
  549.             <groupId>com.googlecode.json-simple</groupId>
  550.             <artifactId>json-simple</artifactId>
  551.             <version>1.1.1</version>
  552.         </dependency>
  553.         <dependency>
  554.             <groupId>net.sf.json-lib</groupId>
  555.             <artifactId>json-lib</artifactId>
  556.             <version>2.4</version>
  557.             <classifier>jdk15</classifier>
  558.         </dependency>
  559.         <dependency>
  560.             <groupId>org.apache.httpcomponents</groupId>
  561.             <artifactId>httpclient</artifactId>
  562.             <version>4.5</version>
  563.         </dependency>
  564.         <dependency>
  565.             <groupId>org.apache.httpcomponents</groupId>
  566.             <artifactId>httpmime</artifactId>
  567.             <version>4.4.1</version>
  568.         </dependency>
  569.         <!-- Allows to store external parameters for QueryLoader in *.properties
  570.        files. -->
  571.         <dependency>
  572.             <groupId>ru.qatools.commons</groupId>
  573.             <artifactId>properties</artifactId>
  574.             <version>2.0.RC3</version>
  575.         </dependency>
  576.  
  577.         <dependency>
  578.             <groupId>com.googlecode.log4jdbc</groupId>
  579.             <artifactId>log4jdbc</artifactId>
  580.             <version>1.2</version>
  581.         </dependency>
  582.  
  583.         <!-- Springfox -->
  584.         <dependency>
  585.             <groupId>io.springfox</groupId>
  586.             <artifactId>springfox-swagger2</artifactId>
  587.         </dependency>
  588.         <dependency>
  589.             <groupId>io.springfox</groupId>
  590.             <artifactId>springfox-swagger-ui</artifactId>
  591.         </dependency>
  592.  
  593.         <!-- Springfox staticdocs -->
  594.         <dependency>
  595.             <groupId>io.springfox</groupId>
  596.             <artifactId>springfox-staticdocs</artifactId>
  597.         </dependency>
  598.         <dependency>
  599.             <groupId>org.hibernate</groupId>
  600.             <artifactId>hibernate-validator</artifactId>
  601.         </dependency>
  602.         <dependency>
  603.             <groupId>org.glassfish.web</groupId>
  604.             <artifactId>el-impl</artifactId>
  605.         </dependency>
  606.         <dependency>
  607.             <groupId>org.asciidoctor</groupId>
  608.             <artifactId>asciidoctor-maven-plugin</artifactId>
  609.         </dependency>
  610.         <dependency>
  611.             <groupId>${project.groupId}</groupId>
  612.             <artifactId>db-kv-statical</artifactId>
  613.             <version>${project.version}</version>
  614.         </dependency>
  615.         <dependency>
  616.             <groupId>${project.groupId}</groupId>
  617.             <artifactId>db-kv-temp</artifactId>
  618.             <version>${project.version}</version>
  619.         </dependency>
  620.         <dependency>
  621.             <groupId>com.sun.xml.rpc</groupId>
  622.             <artifactId>jaxrpc-impl</artifactId>
  623.             <version>1.1.3_01</version>
  624.         </dependency>
  625.         <dependency>
  626.             <groupId>org.apache.axis</groupId>
  627.             <artifactId>axis</artifactId>
  628.             <version>1.4</version>
  629.         </dependency>
  630.         <dependency>
  631.             <groupId>wsdl4j</groupId>
  632.             <artifactId>wsdl4j</artifactId>
  633.             <version>1.6.2</version>
  634.         </dependency>
  635.         <dependency>
  636.             <groupId>commons-discovery</groupId>
  637.             <artifactId>commons-discovery</artifactId>
  638.             <version>0.4</version>
  639.         </dependency>
  640.         <dependency>
  641.             <groupId>com.pb.ksv</groupId>
  642.             <artifactId>msgcore</artifactId>
  643.             <version>2.0.1.032</version>
  644.         </dependency>
  645.         <dependency>
  646.             <groupId>com.pb</groupId>
  647.             <artifactId>gsvutil</artifactId>
  648.             <version>1.7.1</version>
  649.         </dependency>
  650.         <dependency>
  651.             <groupId>com.jcraft</groupId>
  652.             <artifactId>jsch</artifactId>
  653.             <version>0.1.53</version>
  654.         </dependency>
  655.         <dependency>
  656.             <groupId>ua.privatbank</groupId>
  657.             <artifactId>cryptonite</artifactId>
  658.             <version>170227</version>
  659.         </dependency>
  660.         <dependency>
  661.             <groupId>commons-fileupload</groupId>
  662.             <artifactId>commons-fileupload</artifactId>
  663.             <version>1.3.2</version>
  664.         </dependency>
  665.         <dependency>
  666.             <groupId>org.apache.camel</groupId>
  667.             <artifactId>camel-jaxb</artifactId>
  668.             <version>${camel-version}</version>
  669.         </dependency>
  670.         <dependency>
  671.             <groupId>org.apache.camel</groupId>
  672.             <artifactId>camel-core</artifactId>
  673.             <version>${camel-version}</version>
  674.         </dependency>
  675.  
  676.         <dependency>
  677.             <groupId>ldapsdk</groupId>
  678.             <artifactId>ldapsdk</artifactId>
  679.         </dependency>
  680.  
  681.         <dependency>
  682.             <groupId>org.apache.camel</groupId>
  683.             <artifactId>camel-spring</artifactId>
  684.             <version>${camel-version}</version>
  685.             <exclusions>
  686.                 <exclusion>
  687.                     <artifactId>spring-beans</artifactId>
  688.                     <groupId>org.springframework</groupId>
  689.                 </exclusion>
  690.                 <exclusion>
  691.                     <artifactId>spring-core</artifactId>
  692.                     <groupId>org.springframework</groupId>
  693.                 </exclusion>
  694.                 <exclusion>
  695.                     <groupId>org.springframework</groupId>
  696.                     <artifactId>spring-context</artifactId>
  697.                 </exclusion>
  698.                 <exclusion>
  699.                     <groupId>org.apache.camel</groupId>
  700.                     <artifactId>camel-core</artifactId>
  701.                 </exclusion>
  702.             </exclusions>
  703.         </dependency>
  704.         <dependency>
  705.             <groupId>org.apache.camel</groupId>
  706.             <artifactId>camel-quartz</artifactId>
  707.             <version>${camel-version}</version>
  708.             <exclusions>
  709.                 <exclusion>
  710.                     <artifactId>camel-core</artifactId>
  711.                     <groupId>org.apache.camel</groupId>
  712.                 </exclusion>
  713.             </exclusions>
  714.         </dependency>
  715.     </dependencies>
  716.     <profiles>
  717.         <profile>
  718.             <id>compile-widgetset</id>
  719.             <build>
  720.                 <plugins>
  721.                     <!-- Compile custom GWT components or widget dependencies with the GWT
  722.                    compiler -->
  723.                     <plugin>
  724.                         <groupId>org.codehaus.mojo</groupId>
  725.                         <artifactId>gwt-maven-plugin</artifactId>
  726.                         <version>2.3.0</version>
  727.                         <configuration>
  728.                             <webappDirectory>src/main/webapp/VAADIN/widgetsets</webappDirectory>
  729.                             <extraJvmArgs>-Xmx512M -Xss1024k</extraJvmArgs>
  730.                             <runTarget>clean</runTarget>
  731.                             <soyc>false</soyc>
  732.                         </configuration>
  733.                         <executions>
  734.                             <execution>
  735.                                 <goals>
  736.                                     <goal>resources</goal>
  737.                                     <goal>compile</goal>
  738.                                 </goals>
  739.                             </execution>
  740.                         </executions>
  741.                     </plugin>
  742.                     <plugin>
  743.                         <groupId>com.vaadin</groupId>
  744.                         <artifactId>vaadin-maven-plugin</artifactId>
  745.                         <version>1.0.2</version>
  746.                         <executions>
  747.                             <execution>
  748.                                 <phase>prepare-package</phase>
  749.                                 <goals>
  750.                                     <goal>update-widgetset</goal>
  751.                                 </goals>
  752.                             </execution>
  753.                         </executions>
  754.                     </plugin>
  755.                 </plugins>
  756.             </build>
  757.         </profile>
  758.     </profiles>
  759. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement