authserver/casserver/simple-cas4-overlay-template/pom.xml
changeset 0 1afc9d2ab94d
equal deleted inserted replaced
-1:000000000000 0:1afc9d2ab94d
       
     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/xsd/maven-4.0.0.xsd ">
       
     5     <modelVersion>4.0.0</modelVersion>
       
     6     <groupId>net.unicon</groupId>
       
     7     <artifactId>cas4-overlay</artifactId>
       
     8     <packaging>war</packaging>
       
     9     <version>1.0</version>
       
    10 
       
    11     <build>
       
    12         <plugins>
       
    13             <plugin>
       
    14                 <groupId>org.apache.maven.plugins</groupId>
       
    15                 <artifactId>maven-war-plugin</artifactId>
       
    16                 <version>2.6</version>
       
    17                 <configuration>
       
    18                     <warName>cas</warName>
       
    19                     <overlays>
       
    20                         <overlay>
       
    21                             <groupId>org.jasig.cas</groupId>
       
    22                             <artifactId>cas-server-webapp</artifactId>
       
    23                             <excludes>
       
    24                                 <exclude>WEB-INF/cas.properties</exclude>
       
    25                                 <exclude>WEB-INF/classes/log4j.xml</exclude>
       
    26                             </excludes>
       
    27                         </overlay>
       
    28                     </overlays>
       
    29                 </configuration>
       
    30             </plugin>
       
    31             <plugin>
       
    32                 <groupId>org.apache.maven.plugins</groupId>
       
    33                 <artifactId>maven-compiler-plugin</artifactId>
       
    34                 <version>3.2</version>
       
    35             </plugin>
       
    36 
       
    37         </plugins>
       
    38         <finalName>cas</finalName>
       
    39     </build>
       
    40 
       
    41     <dependencies>
       
    42         <dependency>
       
    43             <groupId>org.jasig.cas</groupId>
       
    44             <artifactId>cas-server-webapp</artifactId>
       
    45             <version>${cas.version}</version>
       
    46             <type>war</type>
       
    47             <scope>runtime</scope>
       
    48         </dependency>
       
    49 
       
    50     </dependencies>
       
    51 
       
    52     <properties>
       
    53         <cas.version>4.0.1</cas.version>
       
    54         <maven.compiler.source>1.7</maven.compiler.source>
       
    55         <maven.compiler.target>1.7</maven.compiler.target>
       
    56         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
       
    57     </properties>
       
    58 
       
    59     <repositories>
       
    60         <repository>
       
    61             <id>sonatype-releases</id>
       
    62             <url>http://oss.sonatype.org/content/repositories/releases/</url>
       
    63         </repository>
       
    64         <repository>
       
    65             <id>sonatype-snapshots</id>
       
    66             <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
       
    67         </repository>
       
    68     </repositories>
       
    69 </project>