278 lines
8.3 KiB
XML
278 lines
8.3 KiB
XML
<!--
|
||
~ Licensed to Jasig under one or more contributor license
|
||
~ agreements. See the NOTICE file distributed with this work
|
||
~ for additional information regarding copyright ownership.
|
||
~ Jasig licenses this file to you under the Apache License,
|
||
~ Version 2.0 (the "License"); you may not use this file
|
||
~ except in compliance with the License. You may obtain a
|
||
~ copy of the License at the following location:
|
||
~
|
||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||
~
|
||
~ Unless required by applicable law or agreed to in writing,
|
||
~ software distributed under the License is distributed on an
|
||
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||
~ KIND, either express or implied. See the License for the
|
||
~ specific language governing permissions and limitations
|
||
~ under the License.
|
||
-->
|
||
|
||
<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">
|
||
<parent>
|
||
<groupId>org.jasig.cas</groupId>
|
||
<artifactId>cas-server</artifactId>
|
||
<version>3.5.2-SNAPSHOT</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<groupId>org.jasig.cas</groupId>
|
||
<artifactId>cas-server-webapp</artifactId>
|
||
<packaging>war</packaging>
|
||
<name>Jasig CAS Web Application</name>
|
||
<dependencies>
|
||
|
||
<!-- 增加对cas-server-support-jdbc的依赖,同时要保证容器下有MySql连接Jar包 -->
|
||
<dependency>
|
||
<groupId>org.jasig.cas</groupId>
|
||
<artifactId>cas-server-support-jdbc</artifactId>
|
||
<version>3.5.2-SNAPSHOT</version>
|
||
<type>jar</type>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>mysql</groupId>
|
||
<artifactId>mysql-connector-java</artifactId>
|
||
<version>5.1.6</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>druid</artifactId>
|
||
<version>1.1.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.mockito</groupId>
|
||
<artifactId>mockito-all</artifactId>
|
||
<version>${mockito.version}</version>
|
||
<scope>test</scope>
|
||
<type>jar</type>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.github.inspektr</groupId>
|
||
<artifactId>inspektr-support-spring</artifactId>
|
||
<scope>runtime</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.security</groupId>
|
||
<artifactId>spring-security-core</artifactId>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.security</groupId>
|
||
<artifactId>spring-security-web</artifactId>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.security</groupId>
|
||
<artifactId>spring-security-cas</artifactId>
|
||
<scope>runtime</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.security</groupId>
|
||
<artifactId>spring-security-config</artifactId>
|
||
<scope>runtime</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework</groupId>
|
||
<artifactId>spring-aop</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.jasig.cas</groupId>
|
||
<artifactId>cas-server-core</artifactId>
|
||
<version>${project.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.jasig.cas.client</groupId>
|
||
<artifactId>cas-client-core</artifactId>
|
||
<version>3.2.1</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>javax.servlet</groupId>
|
||
<artifactId>servlet-api</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework</groupId>
|
||
<artifactId>spring-context-support</artifactId>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework</groupId>
|
||
<artifactId>spring-expression</artifactId>
|
||
<version>${spring.version}</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.opensymphony.quartz</groupId>
|
||
<artifactId>quartz</artifactId>
|
||
<version>1.6.1</version>
|
||
<type>jar</type>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>net.sf.spring-json</groupId>
|
||
<artifactId>spring-json</artifactId>
|
||
<version>1.3.1</version>
|
||
<scope>runtime</scope>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>net.sf.sojo</groupId>
|
||
<artifactId>sojo-optional</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>org.springframework</groupId>
|
||
<artifactId>spring</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>org.springframework</groupId>
|
||
<artifactId>spring-mock</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>org.springframework</groupId>
|
||
<artifactId>spring-webmvc</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>cglib</groupId>
|
||
<artifactId>cglib-full</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cglib</groupId>
|
||
<artifactId>cglib-nodep</artifactId>
|
||
<version>2.2.2</version>
|
||
<scope>runtime</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>net.sf.sojo</groupId>
|
||
<artifactId>sojo</artifactId>
|
||
<version>1.0.5</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>commons-attributes</groupId>
|
||
<artifactId>commons-attributes-api</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>commons-logging</groupId>
|
||
<artifactId>commons-logging</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>javax.servlet</groupId>
|
||
<artifactId>jstl</artifactId>
|
||
<version>1.1.2</version>
|
||
<type>jar</type>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>taglibs</groupId>
|
||
<artifactId>standard</artifactId>
|
||
<version>1.1.2</version>
|
||
<type>jar</type>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>ognl</groupId>
|
||
<artifactId>ognl</artifactId>
|
||
<version>2.7.3</version>
|
||
<scope>runtime</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.hibernate</groupId>
|
||
<artifactId>hibernate-validator</artifactId>
|
||
<scope>runtime</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-war-plugin</artifactId>
|
||
<configuration>
|
||
<warName>cas</warName>
|
||
<webResources>
|
||
<resource>
|
||
<directory>${basedir}/src/main/webapp/WEB-INF</directory>
|
||
<filtering>true</filtering>
|
||
<targetPath>WEB-INF</targetPath>
|
||
<includes>
|
||
<include>**/web.xml</include>
|
||
</includes>
|
||
</resource>
|
||
</webResources>
|
||
</configuration>
|
||
</plugin>
|
||
|
||
<!--<plugin>-->
|
||
<!--<groupId>org.jasig.maven</groupId>-->
|
||
<!--<artifactId>maven-translate-plugin</artifactId>-->
|
||
<!--<version>0.0.1</version>-->
|
||
<!--<executions>-->
|
||
<!--<execution>-->
|
||
<!--<goals>-->
|
||
<!--<goal>check</goal>-->
|
||
<!--</goals>-->
|
||
<!--<phase>process-resources</phase>-->
|
||
<!--</execution>-->
|
||
<!--</executions>-->
|
||
<!--<configuration>-->
|
||
<!--<messagesDirectory>${basedir}/src/main/webapp/WEB-INF/classes/</messagesDirectory>-->
|
||
<!--<mainMessagesFile>messages_en.properties</mainMessagesFile>-->
|
||
<!--</configuration>-->
|
||
<!--</plugin>-->
|
||
</plugins>
|
||
<pluginManagement>
|
||
<plugins>
|
||
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
|
||
<plugin>
|
||
<groupId>org.eclipse.m2e</groupId>
|
||
<artifactId>lifecycle-mapping</artifactId>
|
||
<version>1.0.0</version>
|
||
<configuration>
|
||
<lifecycleMappingMetadata>
|
||
<pluginExecutions>
|
||
<pluginExecution>
|
||
<pluginExecutionFilter>
|
||
<groupId>org.jasig.maven</groupId>
|
||
<artifactId>maven-translate-plugin</artifactId>
|
||
<versionRange>[0.0.1,)</versionRange>
|
||
<goals>
|
||
<goal>check</goal>
|
||
</goals>
|
||
</pluginExecutionFilter>
|
||
<action>
|
||
<ignore />
|
||
</action>
|
||
</pluginExecution>
|
||
</pluginExecutions>
|
||
</lifecycleMappingMetadata>
|
||
</configuration>
|
||
</plugin>
|
||
</plugins>
|
||
</pluginManagement>
|
||
</build>
|
||
</project>
|