Advertisement
Guest User

pom.xml

a guest
Jun 6th, 2019
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 17.60 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/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6.  
  7. <groupId>de.myapp</groupId>
  8. <artifactId>myapp</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <packaging>war</packaging>
  11. <name>MyApp</name>
  12. <description>Test</description>
  13.  
  14. <properties>
  15.     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16.     <java.version>1.8</java.version>
  17.     <maven.compiler.target>${java.version}</maven.compiler.target>
  18.     <maven.compiler.source>${java.version}</maven.compiler.source>
  19. </properties>
  20.  
  21. <dependencies>
  22.    
  23.     <dependency>
  24.         <groupId>javax</groupId>
  25.         <artifactId>javaee-api</artifactId>
  26.         <version>8.0</version>
  27.         <scope>provided</scope>
  28.     </dependency>
  29.    
  30.    
  31.  
  32.     <dependency>
  33.         <groupId>commons-lang</groupId>
  34.         <artifactId>commons-lang</artifactId>
  35.         <version>2.6</version>
  36.     </dependency>
  37.  
  38.  
  39.  
  40.     <dependency>
  41.         <groupId>org.primefaces</groupId>
  42.         <artifactId>primefaces</artifactId>
  43.         <version>7.0.RC3</version>
  44.     </dependency>
  45.  
  46.     <dependency>
  47.         <groupId>org.primefaces.extensions</groupId>
  48.         <artifactId>primefaces-extensions</artifactId>
  49.         <version>7.0</version>
  50.     </dependency>
  51.  
  52.  
  53.     <dependency>
  54.         <groupId>org.primefaces.extensions</groupId>
  55.         <artifactId>resources-ckeditor</artifactId>
  56.         <version>7.0</version>
  57.     </dependency>
  58.  
  59.  
  60.     <dependency>
  61.         <groupId>org.primefaces.extensions</groupId>
  62.         <artifactId>resources-codemirror</artifactId>
  63.         <version>6.1.1</version>
  64.     </dependency>
  65.  
  66.     <!-- Cache PRIMEFACES -->
  67.     <dependency>
  68.         <groupId>net.sf.ehcache</groupId>
  69.         <artifactId>ehcache</artifactId>
  70.         <version>2.10.5</version>
  71.     </dependency>
  72.  
  73.  
  74.  
  75.     <dependency>
  76.         <groupId>org.slf4j</groupId>
  77.         <artifactId>slf4j-api</artifactId>
  78.         <version>1.7.25</version>
  79.     </dependency>
  80.  
  81.  
  82.     <dependency>
  83.         <groupId>com.lowagie</groupId>
  84.         <artifactId>itext</artifactId>
  85.         <version>2.1.7</version>
  86.     </dependency>
  87.  
  88.  
  89.     <!-- <dependency> <groupId>com.sun.faces</groupId> <artifactId>mojarra-jsf-impl</artifactId>
  90.        <version>2.0.0-b04</version> </dependency> -->
  91.  
  92.     <!-- <dependency> <groupId>org.apache.myfaces.shared</groupId> <artifactId>myfaces-shared-core</artifactId>
  93.        <version>4.1.9</version> </dependency> -->
  94.  
  95.     <dependency>
  96.         <groupId>org.omnifaces</groupId>
  97.         <artifactId>vdldoc</artifactId>
  98.         <version>2.1</version>
  99.     </dependency>
  100.  
  101.     <dependency>
  102.         <groupId>org.omnifaces</groupId>
  103.         <artifactId>omnifaces</artifactId>
  104.         <version>3.2</version>
  105.     </dependency>
  106.  
  107.     <!-- <dependency> <groupId>it.strazz.faces</groupId> <artifactId>StrazzFaces</artifactId>
  108.        <version>0.2</version> </dependency> -->
  109.     <dependency>
  110.         <groupId>org.webjars</groupId>
  111.         <artifactId>font-awesome</artifactId>
  112.         <version>4.3.0</version>
  113.     </dependency>
  114.  
  115.  
  116.     <dependency>
  117.         <groupId>org.webjars</groupId>
  118.         <artifactId>bootstrap-glyphicons</artifactId>
  119.         <version>bdd2cbfba0</version>
  120.     </dependency>
  121.  
  122.     <!-- <dependency> <groupId>com.sun.faces</groupId> <artifactId>jsf-impl</artifactId>
  123.        <version>2.2.18</version> </dependency> <dependency> <groupId>com.sun.faces</groupId>
  124.        <artifactId>jsf-api</artifactId> <version>2.2.18</version> </dependency> -->
  125.  
  126.  
  127.    
  128.     <dependency>
  129.         <groupId>commons-io</groupId>
  130.         <artifactId>commons-io</artifactId>
  131.         <version>2.4</version>
  132.     </dependency>
  133.  
  134.     <dependency>
  135.         <groupId>commons-fileupload</groupId>
  136.         <artifactId>commons-fileupload</artifactId>
  137.         <version>1.3</version>
  138.     </dependency>
  139.  
  140.  
  141.     <!-- Shiro Start -->
  142.     <dependency>
  143.         <groupId>org.apache.shiro</groupId>
  144.         <artifactId>shiro-core</artifactId>
  145.         <version>1.4.0</version>
  146.     </dependency>
  147.  
  148.     <dependency>
  149.         <groupId>org.apache.shiro</groupId>
  150.         <artifactId>shiro-web</artifactId>
  151.         <version>1.4.0</version>
  152.     </dependency>
  153.  
  154.  
  155.  
  156.     <dependency>
  157.         <groupId>org.apache.shiro</groupId>
  158.         <artifactId>shiro-aspectj</artifactId>
  159.         <version>1.4.0</version>
  160.     </dependency>
  161.  
  162.  
  163.  
  164.     <dependency>
  165.         <groupId>org.apache.shiro</groupId>
  166.         <artifactId>shiro-ehcache</artifactId>
  167.         <version>1.4.0</version>
  168.     </dependency>
  169.     <dependency>
  170.         <groupId>org.apache.shiro</groupId>
  171.         <artifactId>shiro-quartz</artifactId>
  172.         <version>1.4.0</version>
  173.     </dependency>
  174.  
  175.  
  176.  
  177.  
  178.     <!-- MY SQL -->
  179.     <dependency>
  180.         <groupId>mysql</groupId>
  181.         <artifactId>mysql-connector-java</artifactId>
  182.         <version>8.0.12</version>
  183.     </dependency>
  184.  
  185.     <dependency>
  186.         <groupId>com.jolbox</groupId>
  187.         <artifactId>bonecp</artifactId>
  188.         <version>0.7.1.RELEASE</version>
  189.         <scope>runtime</scope>
  190.     </dependency>
  191.     <!-- Shiro End -->
  192.    
  193.    
  194.  
  195.     <dependency>
  196.         <groupId>org.ocpsoft.rewrite</groupId>
  197.         <artifactId>rewrite-servlet</artifactId>
  198.         <version>2.0.12.Final</version>
  199.     </dependency>
  200.     <dependency>
  201.         <groupId>org.ocpsoft.rewrite</groupId>
  202.         <artifactId>rewrite-config-prettyfaces</artifactId>
  203.         <version>2.0.12.Final</version>
  204.     </dependency>
  205.  
  206.     <dependency>
  207.         <groupId>org.ocpsoft.rewrite</groupId>
  208.         <artifactId>rewrite-integration-cdi</artifactId>
  209.         <version>2.0.12.Final</version>
  210.     </dependency>
  211.  
  212.  
  213.     <dependency>
  214.         <groupId>com.paypal.sdk</groupId>
  215.         <artifactId>rest-api-sdk</artifactId>
  216.         <version>0.7.1</version>
  217.     </dependency>
  218.  
  219.     <dependency>
  220.         <groupId>dom4j</groupId>
  221.         <artifactId>dom4j</artifactId>
  222.         <version>1.6.1</version>
  223.         <scope>provided</scope>
  224.     </dependency>
  225.  
  226.  
  227.  
  228.     <dependency>
  229.         <groupId>com.google.guava</groupId>
  230.         <artifactId>guava</artifactId>
  231.         <version>27.1-jre</version>
  232.     </dependency>
  233.    
  234.  
  235.     <dependency>
  236.         <groupId>org.apache.poi</groupId>
  237.         <artifactId>poi</artifactId>
  238.         <version>4.0.1</version>
  239.     </dependency>
  240.  
  241.     <!-- https://mvnrepository.com/artifact/net.sourceforge.jexcelapi/jxl -->
  242.     <dependency>
  243.         <groupId>net.sourceforge.jexcelapi</groupId>
  244.         <artifactId>jxl</artifactId>
  245.         <version>2.6.12</version>
  246.     </dependency>
  247.  
  248.     <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
  249.     <dependency>
  250.         <groupId>org.apache.poi</groupId>
  251.         <artifactId>poi-ooxml</artifactId>
  252.         <version>4.0.1</version>
  253.     </dependency>
  254.  
  255.  
  256.     <dependency>
  257.         <groupId>net.sf.supercsv</groupId>
  258.         <artifactId>super-csv</artifactId>
  259.         <version>2.2.0</version>
  260.     </dependency>
  261.  
  262.     <dependency>
  263.         <groupId>net.sourceforge.javacsv</groupId>
  264.         <artifactId>javacsv</artifactId>
  265.         <version>2.0</version>
  266.     </dependency>
  267.  
  268.     <dependency>
  269.         <groupId>net.sf.opencsv</groupId>
  270.         <artifactId>opencsv</artifactId>
  271.         <version>2.0</version>
  272.     </dependency>
  273.  
  274.     <!-- Barcode -->
  275.     <dependency>
  276.         <groupId>net.glxn</groupId>
  277.         <artifactId>qrgen</artifactId>
  278.         <version>1.4</version>
  279.     </dependency>
  280.  
  281.     <dependency>
  282.         <groupId>net.sf.barcode4j</groupId>
  283.         <artifactId>barcode4j-light</artifactId>
  284.         <version>2.1</version>
  285.     </dependency>
  286.  
  287.  
  288.     <dependency>
  289.         <!-- jsoup HTML parser library @ http://jsoup.org/ -->
  290.         <groupId>org.jsoup</groupId>
  291.         <artifactId>jsoup</artifactId>
  292.         <version>1.8.1</version>
  293.     </dependency>
  294.  
  295.     <dependency>
  296.         <groupId>org.xhtmlrenderer</groupId>
  297.         <artifactId>flying-saucer-pdf</artifactId>
  298.         <version>9.0.7</version>
  299.     </dependency>
  300.  
  301.     <dependency>
  302.         <groupId>net.sourceforge.htmlcleaner</groupId>
  303.         <artifactId>htmlcleaner</artifactId>
  304.         <version>2.10</version>
  305.     </dependency>
  306.  
  307.     <dependency>
  308.         <groupId>org.codemonkey.simplejavamail</groupId>
  309.         <artifactId>simple-java-mail</artifactId>
  310.         <version>2.1</version>
  311.     </dependency>
  312.  
  313.     <dependency>
  314.         <groupId>net.sourceforge.barbecue</groupId>
  315.         <artifactId>barbecue</artifactId>
  316.         <version>1.5-beta1</version>
  317.     </dependency>
  318.  
  319.     <dependency>
  320.         <groupId>net.sourceforge.htmlunit</groupId>
  321.         <artifactId>htmlunit</artifactId>
  322.         <version>2.15</version>
  323.     </dependency>
  324.  
  325.  
  326.     <dependency>
  327.         <groupId>xml-apis</groupId>
  328.         <artifactId>xml-apis</artifactId>
  329.         <version>1.4.01</version>
  330.     </dependency>
  331.  
  332.     <!-- Dependencies for HTML Unit START -->
  333.     <dependency>
  334.         <groupId>commons-codec</groupId>
  335.         <artifactId>commons-codec</artifactId>
  336.         <version>1.10</version>
  337.     </dependency>
  338.  
  339.     <dependency>
  340.         <groupId>commons-collections</groupId>
  341.         <artifactId>commons-collections</artifactId>
  342.         <version>3.2.1</version>
  343.     </dependency>
  344.  
  345.     <dependency>
  346.         <groupId>commons-logging</groupId>
  347.         <artifactId>commons-logging</artifactId>
  348.         <version>1.2</version>
  349.     </dependency>
  350.  
  351.  
  352.     <dependency>
  353.         <groupId>net.sourceforge.nekohtml</groupId>
  354.         <artifactId>nekohtml</artifactId>
  355.         <version>1.9.21</version>
  356.     </dependency>
  357.  
  358.  
  359.     <dependency>
  360.         <groupId>org.apache.httpcomponents</groupId>
  361.         <artifactId>httpmime</artifactId>
  362.         <version>4.3.6</version>
  363.     </dependency>
  364.  
  365.  
  366.     <dependency>
  367.         <groupId>org.eclipse.jetty</groupId>
  368.         <artifactId>jetty-websocket</artifactId>
  369.         <version>8.1.16.v20140903</version>
  370.     </dependency>
  371.  
  372.     <dependency>
  373.         <groupId>xalan</groupId>
  374.         <artifactId>xalan</artifactId>
  375.         <version>2.7.2</version>
  376.     </dependency>
  377.  
  378.     <dependency>
  379.         <groupId>xerces</groupId>
  380.         <artifactId>xercesImpl</artifactId>
  381.         <version>2.11.0</version>
  382.     </dependency>
  383.  
  384.     <dependency>
  385.         <groupId>org.apache.httpcomponents</groupId>
  386.         <artifactId>httpclient</artifactId>
  387.         <version>4.3.6</version>
  388.     </dependency>
  389.  
  390.     <dependency>
  391.         <groupId>org.apache.httpcomponents</groupId>
  392.         <artifactId>httpcore</artifactId>
  393.         <version>4.4</version>
  394.     </dependency>
  395.  
  396.  
  397.     <dependency>
  398.         <groupId>org.ocpsoft.prettytime</groupId>
  399.         <artifactId>prettytime</artifactId>
  400.         <version>4.0.1.Final</version>
  401.     </dependency>
  402.  
  403.  
  404.  
  405.  
  406.     <dependency>
  407.         <groupId>net.coobird</groupId>
  408.         <artifactId>thumbnailator</artifactId>
  409.         <version>0.4.8</version>
  410.     </dependency>
  411.  
  412.     <dependency>
  413.         <groupId>com.github.xuwei-k</groupId>
  414.         <artifactId>html2image</artifactId>
  415.         <version>0.1.0</version>
  416.     </dependency>
  417.  
  418.  
  419.     <dependency>
  420.         <groupId>commons-net</groupId>
  421.         <artifactId>commons-net</artifactId>
  422.         <version>3.3</version>
  423.     </dependency>
  424.  
  425.  
  426.     <dependency>
  427.         <groupId>net.bootsfaces</groupId>
  428.         <artifactId>bootsfaces</artifactId>
  429.         <version>1.3.0</version>
  430.         <scope>compile</scope>
  431.     </dependency>
  432.  
  433.     <dependency>
  434.         <groupId>org.chartistjsf</groupId>
  435.         <artifactId>ChartistJSF</artifactId>
  436.         <version>3.0</version>
  437.     </dependency>
  438.  
  439.     <dependency>
  440.         <groupId>org.apache.deltaspike.core</groupId>
  441.         <artifactId>deltaspike-core-api</artifactId>
  442.         <version>1.8.0</version>
  443.     </dependency>
  444.  
  445.     <!-- https://mvnrepository.com/artifact/org.tripfaces/components -->
  446.     <dependency>
  447.         <groupId>org.tripfaces</groupId>
  448.         <artifactId>components</artifactId>
  449.         <version>1.0.0</version>
  450.     </dependency>
  451.  
  452.  
  453.     <dependency>
  454.         <groupId>me.figo</groupId>
  455.         <artifactId>sdk</artifactId>
  456.         <version>1.5.1</version>
  457.     </dependency>
  458.  
  459.     <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations -->
  460.     <dependency>
  461.         <groupId>com.fasterxml.jackson.core</groupId>
  462.         <artifactId>jackson-annotations</artifactId>
  463.         <version>2.9.3</version>
  464.     </dependency>
  465.  
  466.     <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  467.     <dependency>
  468.         <groupId>com.fasterxml.jackson.core</groupId>
  469.         <artifactId>jackson-databind</artifactId>
  470.         <version>2.9.3</version>
  471.     </dependency>
  472.  
  473.  
  474.  
  475.     <dependency>
  476.         <groupId>nl.stil4m</groupId>
  477.         <artifactId>mollie-api</artifactId>
  478.         <version>2.7.0</version>
  479.     </dependency>
  480.  
  481.  
  482.  
  483.     <dependency>
  484.         <groupId>io.lamma</groupId>
  485.         <artifactId>lamma_2.12</artifactId>
  486.         <version>2.3.1</version>
  487.     </dependency>
  488.  
  489.  
  490.     <!-- START TESTING -->
  491.     <dependency>
  492.         <groupId>org.jboss.arquillian</groupId>
  493.         <artifactId>arquillian-bom</artifactId>
  494.         <version>1.4.0.Final</version>
  495.         <scope>import</scope>
  496.         <type>pom</type>
  497.     </dependency>
  498.  
  499.  
  500.     <dependency>
  501.         <groupId>org.jboss.arquillian.junit</groupId>
  502.         <artifactId>arquillian-junit-container</artifactId>
  503.         <version>1.4.1.Final</version>
  504.         <scope>test</scope>
  505.     </dependency>
  506.  
  507.  
  508.     <dependency>
  509.         <groupId>junit</groupId>
  510.         <artifactId>junit</artifactId>
  511.         <version>4.12</version>
  512.         <scope>test</scope>
  513.     </dependency>
  514.  
  515.     <dependency>
  516.         <groupId>org.jboss.arquillian.container</groupId>
  517.         <artifactId>arquillian-weld-ee-embedded-1.1</artifactId>
  518.         <version>1.0.0.CR9</version>
  519.         <scope>test</scope>
  520.     </dependency>
  521.  
  522.     <dependency>
  523.         <groupId>org.jboss.weld</groupId>
  524.         <artifactId>weld-core</artifactId>
  525.         <version>2.3.5.Final</version>
  526.         <scope>test</scope>
  527.     </dependency>
  528.  
  529.     <dependency>
  530.         <groupId>org.slf4j</groupId>
  531.         <artifactId>slf4j-simple</artifactId>
  532.         <version>1.7.21</version>
  533.         <scope>test</scope>
  534.     </dependency>
  535.  
  536.     <!-- END TESTING -->
  537.  
  538.  
  539.     <!-- https://mvnrepository.com/artifact/org.mnode.ical4j/ical4j -->
  540.     <dependency>
  541.         <groupId>org.mnode.ical4j</groupId>
  542.         <artifactId>ical4j</artifactId>
  543.         <version>3.0.1</version>
  544.     </dependency>
  545.  
  546.     <!-- https://mvnrepository.com/artifact/javax.cache/cache-api -->
  547.     <dependency>
  548.         <groupId>javax.cache</groupId>
  549.         <artifactId>cache-api</artifactId>
  550.         <version>1.1.0</version>
  551.     </dependency>
  552.  
  553.     <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 -->
  554.     <dependency>
  555.         <groupId>org.apache.commons</groupId>
  556.         <artifactId>commons-collections4</artifactId>
  557.         <version>4.2</version>
  558.     </dependency>
  559.  
  560.     <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  561.     <dependency>
  562.         <groupId>org.apache.commons</groupId>
  563.         <artifactId>commons-lang3</artifactId>
  564.         <version>3.8</version>
  565.     </dependency>
  566.  
  567.  
  568.     <!-- https://mvnrepository.com/artifact/net.sf.jtidy/jtidy -->
  569.     <dependency>
  570.         <groupId>net.sf.jtidy</groupId>
  571.         <artifactId>jtidy</artifactId>
  572.         <version>r938</version>
  573.     </dependency>
  574.  
  575.  
  576.     <!-- https://mvnrepository.com/artifact/org.apache.pdfbox/pdfbox -->
  577.     <dependency>
  578.         <groupId>org.apache.pdfbox</groupId>
  579.         <artifactId>pdfbox</artifactId>
  580.         <version>2.0.13</version>
  581.     </dependency>
  582.  
  583. </dependencies>
  584.  
  585.  
  586. <repositories>
  587.     <repository>
  588.         <id>prime-repo</id>
  589.         <name>PrimeFaces Maven Repository</name>
  590.         <url>http://repository.primefaces.org</url>
  591.     </repository>
  592.  
  593.  
  594.     <repository>
  595.         <id>stil4m-releases</id>
  596.         <name>stil4m-releases</name>
  597.         <url>https://github.com/stil4m/maven-repository/raw/master/releases/</url>
  598.     </repository>
  599. </repositories>
  600.  
  601.  
  602.  
  603. <build>
  604.     <finalName>${project.artifactId}</finalName>
  605.     <plugins>
  606.  
  607.         <plugin>
  608.             <groupId>org.wildfly.plugins</groupId>
  609.             <artifactId>wildfly-maven-plugin</artifactId>
  610.             <version>1.0.1.Final</version>
  611.         </plugin>
  612.  
  613.         <plugin>
  614.             <groupId>org.zeroturnaround</groupId>
  615.             <artifactId>jrebel-maven-plugin</artifactId>
  616.             <version>1.1.6</version>
  617.             <executions>
  618.                 <execution>
  619.                     <id>generate-rebel-xml</id>
  620.                     <phase>process-resources</phase>
  621.                     <goals>
  622.                         <goal>generate</goal>
  623.                     </goals>
  624.                 </execution>
  625.             </executions>
  626.         </plugin>
  627.  
  628.     </plugins>
  629. </build>
  630.  
  631.  
  632. <profiles>
  633.     <!-- TESTING -->
  634.     <profile>
  635.         <id>arquillian-jbossas-remote</id>
  636.         <dependencies>
  637.             <dependency>
  638.                 <groupId>org.jboss.spec</groupId>
  639.                 <artifactId>jboss-javaee-6.0</artifactId>
  640.                 <version>1.0.0.Final</version>
  641.                 <type>pom</type>
  642.                 <scope>provided</scope>
  643.             </dependency>
  644.             <dependency>
  645.                 <groupId>org.jboss.as</groupId>
  646.                 <artifactId>jboss-as-arquillian-container-remote</artifactId>
  647.                 <version>7.2.0.Final</version>
  648.                 <scope>test</scope>
  649.             </dependency>
  650.  
  651.         </dependencies>
  652.     </profile>
  653.     <!-- TESTING -->
  654. </profiles>
  655.  
  656.  
  657.  
  658. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement