Advertisement
Guest User

Untitled

a guest
Feb 8th, 2014
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 7.59 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3.   Licensed to the Apache Software Foundation (ASF) under one or more
  4.   contributor license agreements.  See the NOTICE file distributed with
  5.   this work for additional information regarding copyright ownership.
  6.   The ASF licenses this file to You under the Apache License, Version 2.0
  7.   (the "License"); you may not use this file except in compliance with
  8.   the License.  You may obtain a copy of the License at
  9.  
  10.        http://www.apache.org/licenses/LICENSE-2.0
  11.  
  12.   Unless required by applicable law or agreed to in writing, software
  13.   distributed under the License is distributed on an "AS IS" BASIS,
  14.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.   See the License for the specific language governing permissions and
  16.   limitations under the License.
  17. --><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/maven-v4_0_0.xsd">
  18.  
  19.     <modelVersion>4.0.0</modelVersion>
  20.  
  21.     <parent>
  22.         <artifactId>wicket-project</artifactId>
  23.         <groupId>lt.eif.viko</groupId>
  24.         <version>0.0.1-SNAPSHOT</version>
  25.     </parent>
  26.     <groupId>lt.eif.viko</groupId>
  27.     <artifactId>wicket-ui</artifactId>
  28.     <packaging>war</packaging>
  29.     <version>0.0.1-SNAPSHOT</version>
  30.     <name>wicket-ui</name>
  31.     <!--
  32.            <organization>
  33.                    <name>company name</name>
  34.                    <url>company url</url>
  35.            </organization>
  36.    -->
  37.     <licenses>
  38.         <license>
  39.             <name>The Apache Software License, Version 2.0</name>
  40.             <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  41.             <distribution>repo</distribution>
  42.         </license>
  43.     </licenses>
  44.     <properties>
  45.         <jetty.version>7.6.13.v20130916</jetty.version>
  46.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  47.         <!-- allowed values: R7, 1.0, 1.5, 2.0 or none -->
  48.         <wtp.version>none</wtp.version>
  49.     </properties>
  50.     <dependencies>
  51.         <!--  WICKET DEPENDENCIES -->
  52.         <dependency>
  53.             <groupId>org.apache.wicket</groupId>
  54.             <artifactId>wicket-core</artifactId>
  55.             <version>${wicket.version}</version>
  56.         </dependency>
  57.         <dependency>
  58.             <groupId>org.wicketstuff</groupId>
  59.             <artifactId>annotation</artifactId>
  60.             <version>1.4.21</version>
  61.         </dependency>
  62.         <!-- OPTIONAL DEPENDENCY
  63.        <dependency>
  64.                <groupId>org.apache.wicket</groupId>
  65.                <artifactId>wicket-extensions</artifactId>
  66.                <version>${wicket.version}</version>
  67.        </dependency>
  68.        -->
  69.  
  70.         <!-- LOGGING DEPENDENCIES - LOG4J -->
  71.         <dependency>
  72.             <groupId>org.slf4j</groupId>
  73.             <artifactId>slf4j-log4j12</artifactId>
  74.             <version>1.6.4</version>
  75.         </dependency>
  76.         <dependency>
  77.             <groupId>log4j</groupId>
  78.             <artifactId>log4j</artifactId>
  79.             <version>1.2.16</version>
  80.         </dependency>
  81.  
  82.         <!--  JUNIT DEPENDENCY FOR TESTING -->
  83.         <dependency>
  84.             <groupId>junit</groupId>
  85.             <artifactId>junit</artifactId>
  86.             <version>4.11</version>
  87.             <scope>test</scope>
  88.         </dependency>
  89.  
  90.         <!--  JETTY DEPENDENCIES FOR TESTING  -->
  91.         <dependency>
  92.             <groupId>org.eclipse.jetty.aggregate</groupId>
  93.             <artifactId>jetty-all-server</artifactId>
  94.             <version>${jetty.version}</version>
  95.             <scope>provided</scope>
  96.         </dependency>
  97.         <dependency>
  98.             <groupId>lt.eif.viko</groupId>
  99.             <artifactId>domain</artifactId>
  100.             <version>0.0.1-SNAPSHOT</version>
  101.         </dependency>
  102.         <dependency>
  103.             <groupId>org.apache.wicket</groupId>
  104.             <artifactId>wicket-guice</artifactId>
  105.             <version>${wicket.version}</version>
  106.         </dependency>
  107.         <dependency>
  108.             <groupId>com.google.inject.extensions</groupId>
  109.             <artifactId>guice-servlet</artifactId>
  110.             <version>3.0</version>
  111.         </dependency>
  112.     </dependencies>
  113.     <build>
  114.         <resources>
  115.             <resource>
  116.                 <directory>src/main/resources</directory>
  117.             </resource>
  118.             <resource>
  119.                 <directory>src/main/java</directory>
  120.                 <includes>
  121.                     <include>**</include>
  122.                 </includes>
  123.                 <excludes>
  124.                     <exclude>**/*.java</exclude>
  125.                 </excludes>
  126.             </resource>
  127.         </resources>
  128.         <testResources>
  129.             <testResource>
  130.                 <directory>src/test/resources</directory>
  131.             </testResource>
  132.             <testResource>
  133.                 <directory>src/test/java</directory>
  134.                 <includes>
  135.                     <include>**</include>
  136.                 </includes>
  137.                 <excludes>
  138.                     <exclude>**/*.java</exclude>
  139.                 </excludes>
  140.             </testResource>
  141.         </testResources>
  142.         <plugins>
  143.             <plugin>
  144.                 <inherited>true</inherited>
  145.                 <groupId>org.apache.maven.plugins</groupId>
  146.                 <artifactId>maven-compiler-plugin</artifactId>
  147.                 <version>2.5.1</version>
  148.                 <configuration>
  149.                     <source>1.6</source>
  150.                     <target>1.6</target>
  151.                     <encoding>UTF-8</encoding>
  152.                     <showWarnings>true</showWarnings>
  153.                     <showDeprecation>true</showDeprecation>
  154.                 </configuration>
  155.             </plugin>
  156.             <plugin>
  157.                 <groupId>org.mortbay.jetty</groupId>
  158.                 <artifactId>jetty-maven-plugin</artifactId>
  159.                 <version>${jetty.version}</version>
  160.                 <configuration>
  161.                     <connectors>
  162.                         <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
  163.                             <port>8080</port>
  164.                             <maxIdleTime>3600000</maxIdleTime>
  165.                         </connector>
  166.                         <connector implementation="org.eclipse.jetty.server.ssl.SslSocketConnector">
  167.                             <port>8443</port>
  168.                             <maxIdleTime>3600000</maxIdleTime>
  169.                             <keystore>${project.build.directory}/test-classes/keystore</keystore>
  170.                             <password>wicket</password>
  171.                             <keyPassword>wicket</keyPassword>
  172.                         </connector>
  173.                     </connectors>
  174.                 </configuration>
  175.             </plugin>
  176.             <plugin>
  177.                 <groupId>org.apache.maven.plugins</groupId>
  178.                 <artifactId>maven-eclipse-plugin</artifactId>
  179.                 <version>2.9</version>
  180.                 <configuration>
  181.                     <downloadSources>true</downloadSources>
  182.                     <wtpversion>${wtp.version}</wtpversion>
  183.                 </configuration>
  184.             </plugin>
  185.         </plugins>
  186.     </build>
  187.  
  188.     <repositories>
  189.         <repository>
  190.             <id>Apache Nexus</id>
  191.             <url>https://repository.apache.org/content/repositories/snapshots/</url>
  192.             <releases>
  193.                 <enabled>false</enabled>
  194.             </releases>
  195.             <snapshots>
  196.             </snapshots>
  197.         </repository>
  198.     </repositories>
  199. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement