Advertisement
georgelappies

Untitled

Oct 7th, 2017
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 7.23 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3.   <modelVersion>4.0.0</modelVersion>
  4.  
  5.   <prerequisites>
  6.     <maven>3.0.0</maven>
  7.   </prerequisites>
  8.  
  9.   <groupId>com.megchemsa</groupId>
  10.   <artifactId>edsnext</artifactId>
  11.   <version>1.0-SNAPSHOT</version>
  12.   <packaging>war</packaging>
  13.  
  14.   <name>${project.artifactId}</name>
  15.   <description>EDSNext</description>
  16.   <url>http://edsnext.headoffice.megchem.co.za</url>
  17.  
  18.   <properties>
  19.     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20.     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  21.     <maven.compiler.source>1.8</maven.compiler.source>
  22.     <maven.compiler.target>1.8</maven.compiler.target>
  23.     <test.wildfly.version>10.1.0.Final</test.wildfly.version>
  24.   </properties>
  25.  
  26.   <repositories>
  27.     <repository>
  28.       <id>java.net-maven2-SNAPSHOT-repository</id>
  29.       <name>Java.net SNAPSHOT-Repository for Maven</name>
  30.       <url>https://maven.java.net/content/repositories/snapshots/</url>
  31.       <layout>default</layout>
  32.     </repository>
  33.     <repository>
  34.       <id>java.net-maven2-repository</id>
  35.       <name>Java.net Repository for Maven</name>
  36.       <url>https://maven.java.net/content/repositories/releases/</url>
  37.       <layout>default</layout>
  38.     </repository>
  39.     <repository>
  40.       <id>oss.sonatype.org</id>
  41.       <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  42.     </repository>
  43.     <repository>
  44.       <id>bintray-snapshot</id>
  45.       <name>libs-snapshot</name>
  46.       <url>http://oss.jfrog.org/artifactory/libs-snapshot</url>
  47.     </repository>
  48.   </repositories>
  49.  
  50.   <dependencies>
  51.  
  52.     <!-- Server specific dependencies (we target WildFly 10.1 as of now). -->
  53.     <!-- For correct API sources in Eclipse debugger, those need to be declared BEFORE javaee-api! -->
  54.     <dependency>
  55.       <groupId>com.sun.faces</groupId>
  56.       <artifactId>jsf-api</artifactId>
  57.       <version>2.2.14</version>
  58.       <scope>provided</scope>
  59.     </dependency>
  60.     <dependency>
  61.       <groupId>com.sun.faces</groupId>
  62.       <artifactId>jsf-impl</artifactId>
  63.       <version>2.2.14</version>
  64.       <scope>provided</scope>
  65.     </dependency>
  66.     <dependency>
  67.       <groupId>org.hibernate</groupId>
  68.       <artifactId>hibernate-core</artifactId>
  69.       <version>5.2.10.Final</version>
  70.       <scope>provided</scope>
  71.     </dependency>
  72.  
  73.     <!-- Target Java EE 7 server. -->
  74.     <dependency>
  75.       <groupId>javax</groupId>
  76.       <artifactId>javaee-api</artifactId>
  77.       <version>7.0</version>
  78.       <scope>provided</scope>
  79.     </dependency>
  80.  
  81.     <!-- Runtime dependencies.  -->
  82.     <dependency>
  83.       <groupId>org.glassfish.soteria</groupId>
  84.       <artifactId>javax.security.enterprise</artifactId>
  85.       <version>1.0-b07</version>
  86.     </dependency>
  87.     <dependency>
  88.       <groupId>org.omnifaces</groupId>
  89.       <artifactId>omnisecurity-cdi-auth-events-undertow</artifactId>
  90.       <version>10.0.0.Final-u2-SNAPSHOT</version>
  91.     </dependency>
  92.     <dependency>
  93.       <groupId>org.omnifaces</groupId>
  94.       <artifactId>omnifaces</artifactId>
  95.       <version>2.6.4</version>
  96.     </dependency>
  97.     <dependency>
  98.       <groupId>org.omnifaces</groupId>
  99.       <artifactId>omnisettings</artifactId>
  100.       <version>0.1</version>
  101.     </dependency>
  102.     <dependency>
  103.       <groupId>org.omnifaces</groupId>
  104.       <artifactId>omniutils</artifactId>
  105.       <version>0.5</version>
  106.     </dependency>
  107.     <dependency>
  108.       <groupId>org.omnifaces</groupId>
  109.       <artifactId>omnipersistence</artifactId>
  110.       <version>0.3</version>
  111.     </dependency>
  112.     <dependency>
  113.       <groupId>org.omnifaces</groupId>
  114.       <artifactId>optimusfaces</artifactId>
  115.       <version>0.4</version>
  116.     </dependency>
  117.     <dependency>
  118.       <groupId>org.primefaces</groupId>
  119.       <artifactId>primefaces</artifactId>
  120.       <version>6.1</version>
  121.     </dependency>
  122.     <dependency>
  123.       <groupId>org.primefaces.themes</groupId>
  124.       <artifactId>all-themes</artifactId>
  125.       <version>1.0.10</version>
  126.     </dependency>
  127.     <dependency>
  128.       <groupId>org.infinispan</groupId>
  129.       <artifactId>infinispan-core</artifactId>
  130.       <version>9.0.3.Final</version>
  131.     </dependency>
  132.     <!-- <dependency>
  133.            <groupId>mysql</groupId>
  134.            <artifactId>mysql-connector-java</artifactId>
  135.            <version>5.1.42</version>
  136.        </dependency> -->
  137.     <dependency>
  138.       <groupId>org.mariadb.jdbc</groupId>
  139.       <artifactId>mariadb-java-client</artifactId>
  140.       <version>2.1.2</version>
  141.     </dependency>
  142.     <dependency>
  143.       <groupId>org.jboss.weld</groupId>
  144.       <artifactId>weld-api</artifactId>
  145.       <version>3.0.Final</version>
  146.     </dependency>
  147.     <dependency>
  148.       <groupId>org.jboss.weld</groupId>
  149.       <artifactId>weld-core-impl</artifactId>
  150.       <version>3.0.0.Final</version>
  151.     </dependency>
  152.     <dependency>
  153.       <groupId>org.apache.pdfbox</groupId>
  154.       <artifactId>pdfbox</artifactId>
  155.       <version>2.0.7</version>
  156.     </dependency>
  157.  
  158.     <!-- Test dependencies. -->
  159.     <dependency>
  160.       <groupId>junit</groupId>
  161.       <artifactId>junit</artifactId>
  162.       <version>4.12</version>
  163.       <scope>test</scope>
  164.     </dependency>
  165.     <dependency>
  166.       <groupId>org.dbunit</groupId>
  167.       <artifactId>dbunit</artifactId>
  168.       <version>2.4.9</version>
  169.       <scope>test</scope>
  170.     </dependency>
  171.     <dependency>
  172.       <groupId>org.jboss.arquillian.junit</groupId>
  173.       <artifactId>arquillian-junit-container</artifactId>
  174.       <scope>test</scope>
  175.     </dependency>
  176.     <dependency>
  177.       <groupId>org.jboss.shrinkwrap.resolver</groupId>
  178.       <artifactId>shrinkwrap-resolver-impl-maven</artifactId>
  179.       <scope>test</scope>
  180.     </dependency>
  181.   </dependencies>
  182.  
  183.   <dependencyManagement>
  184.     <dependencies>
  185.  
  186.       <!-- Test dependencies.   -->
  187.       <dependency>
  188.         <groupId>org.jboss.arquillian</groupId>
  189.         <artifactId>arquillian-bom</artifactId>
  190.         <version>1.1.11.Final</version>
  191.         <type>pom</type>
  192.         <scope>import</scope>
  193.       </dependency>
  194.     </dependencies>
  195.   </dependencyManagement>
  196.  
  197.   <build>
  198.     <finalName>${project.artifactId}</finalName>
  199.     <plugins>
  200.       <plugin>
  201.         <groupId>org.apache.maven.plugins</groupId>
  202.         <artifactId>maven-archetype-plugin</artifactId>
  203.         <version>2.4</version>
  204.         <configuration>
  205.           <propertyFile>archetype.properties</propertyFile>
  206.           <!--<archetypeFilteredExtensions>java,xml,xhtml</archetypeFilteredExtensions>-->
  207.         </configuration>
  208.       </plugin>
  209.     </plugins>
  210.   </build>
  211.  
  212.   <profiles>
  213.     <profile>
  214.       <activation>
  215.         <activeByDefault>true</activeByDefault>
  216.       </activation>
  217.       <build>
  218.         <plugins>
  219.           <plugin>
  220.             <groupId>org.apache.maven.plugins</groupId>
  221.             <artifactId>maven-surefire-plugin</artifactId>
  222.             <version>2.13</version>
  223.             <configuration>
  224.               <skipTests>true</skipTests>
  225.             </configuration>
  226.           </plugin>
  227.         </plugins>
  228.       </build>
  229.     </profile>
  230.   </profiles>
  231.  
  232. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement