tak-web
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>se.skltp.tak</groupId> <artifactId>tak-web</artifactId> <version>1.5.1</version> </dependency>
<?xml version="1.0" encoding="utf-8"?> <!-- /** * Copyright (c) 2013 Center för eHälsa i samverkan (CeHis). * <http://cehis.se /> * * This file is part of SKLTP. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ --> <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"> <modelVersion>4.0.0</modelVersion> <artifactId>tak-web</artifactId> <packaging>grails-app</packaging> <name>tak-web</name> <description>tak-web</description> <parent> <groupId>se.skltp.tak</groupId> <artifactId>tak-parent</artifactId> <version>1.5.1</version> </parent> <properties> <grails.version>2.2.4</grails.version> </properties> <dependencies> <dependency> <groupId>se.skltp.tak</groupId> <artifactId>tak-core</artifactId> <version>${project.version}</version> <exclusions> <exclusion> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> </exclusion> <exclusion> <groupId>org.hibernate</groupId> <artifactId>hibernate-entitymanager</artifactId> </exclusion> <exclusion> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-orm</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> <exclusion> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> <exclusion> <groupId>hsqldb</groupId> <artifactId>hsqldb</artifactId> </exclusion> <exclusion> <groupId>dbunit</groupId> <artifactId>dbunit</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.grails</groupId> <artifactId>grails-dependencies</artifactId> <version>${grails.version}</version> <type>pom</type> </dependency> <dependency> <groupId>org.grails</groupId> <artifactId>grails-test</artifactId> <version>${grails.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.grails</groupId> <artifactId>grails-plugin-testing</artifactId> <version>${grails.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.grails.plugins</groupId> <artifactId>tomcat</artifactId> <version>${grails.version}</version> <scope>provided</scope> <type>zip</type> </dependency> <dependency> <groupId>org.grails.plugins</groupId> <artifactId>hibernate</artifactId> <version>${grails.version}</version> <scope>runtime</scope> <type>zip</type> </dependency> <dependency> <groupId>org.grails.plugins</groupId> <artifactId>shiro</artifactId> <version>1.1.4</version> <scope>runtime</scope> <type>zip</type> <exclusions> <exclusion> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.grails.plugins</groupId> <artifactId>jquery</artifactId> <version>1.8.3</version> <scope>runtime</scope> <type>zip</type> </dependency> <dependency> <groupId>org.grails.plugins</groupId> <artifactId>resources</artifactId> <version>1.1.6</version> <scope>runtime</scope> <type>zip</type> </dependency> <dependency> <groupId>org.grails.plugins</groupId> <artifactId>webxml</artifactId> <version>1.4.1</version> <scope>provided</scope> <type>zip</type> </dependency> <dependency> <groupId>org.grails.plugins</groupId> <artifactId>cache</artifactId> <version>1.0.1</version> <scope>compile</scope> <type>zip</type> </dependency> <dependency> <groupId>org.grails.plugins</groupId> <artifactId>database-migration</artifactId> <version>1.3.5</version> <scope>runtime</scope> <type>zip</type> </dependency> <dependency> <groupId>org.grails.plugins</groupId> <artifactId>filterpane</artifactId> <version>2.2.2</version> <scope>compile</scope> <type>zip</type> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.3</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.spockframework</groupId> <artifactId>spock-grails-support</artifactId> <version>0.7-groovy-2.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.grails.plugins</groupId> <artifactId>spock</artifactId> <version>0.7</version> <scope>test</scope> <type>zip</type> <exclusions> <exclusion> <groupId>org.spockframework</groupId> <artifactId>spock-grails-support</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <pluginManagement /> <plugins> <!-- Disables the Maven surefire plugin for Grails applications, as we have our own test runner --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>true</skip> </configuration> <executions> <execution> <id>surefire-it</id> <phase>integration-test</phase> <goals> <goal>test</goal> </goals> <configuration> <skip>false</skip> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>2.4.1</version> <configuration> <filesets> <fileset> <directory>plugins</directory> <includes> <include>**/*</include> </includes> <followSymlinks>false</followSymlinks> </fileset> </filesets> </configuration> </plugin> <plugin> <groupId>org.grails</groupId> <artifactId>grails-maven-plugin</artifactId> <version>${grails.version}</version> <configuration> <!-- Whether for Fork a JVM to run Grails commands --> <fork>true</fork> </configuration> <extensions>true</extensions> </plugin> <!-- Configure the project natures for Grails and Groovy --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.8</version> <configuration> <projectnatures> <projectnature>com.springsource.sts.grails.core.nature</projectnature> <projectnature>org.eclipse.jdt.groovy.core.groovyNature</projectnature> <projectnature>org.eclipse.jdt.core.javanature</projectnature> </projectnatures> <sourceIncludes> <sourceInclude>**/*.groovy</sourceInclude> </sourceIncludes> </configuration> </plugin> <!-- Reason for defining license plugin here and in parent project is that this grails application does not inherit parent pom. --> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.10.b1</version> <configuration> <properties> <year>2013</year> <copyright>Center for eHalsa i samverkan (CeHis). <http://cehis.se/></copyright> <product>SKLTP</product> </properties> <strictCheck>true</strictCheck> <basedir>${basedir}</basedir> <header>http://skltp.googlecode.com/svn/tp/license/lgpl/header.txt</header> <encoding>UTF-8</encoding> <includes> <include>src/main/**</include> <include>src/test/**</include> <include>grails-app/**</include> </includes> <excludes> <exclude>**/*.xsd</exclude> <exclude>**/*.wsdl</exclude> <exclude>**/*.xml</exclude> <exclude>**/*.dtd</exclude> <exclude>application.properties</exclude> </excludes> <useDefaultExcludes>true</useDefaultExcludes> <mapping> <tag>DYNASCRIPT_STYLE</tag> <gsp>DYNASCRIPT_STYLE</gsp> </mapping> <useDefaultMapping>true</useDefaultMapping> </configuration> </plugin> </plugins> </build> <repositories> <repository> <id>grails</id> <name>grails</name> <url>http://repo.grails.org/grails/core</url> </repository> <repository> <id>grails-plugins</id> <name>grails-plugins</name> <url>http://repo.grails.org/grails/plugins</url> </repository> </repositories> <profiles> <profile> <id>tools</id> <activation> <property> <name>java.vendor</name> <value>Sun Microsystems Inc.</value> </property> </activation> <dependencies> <dependency> <groupId>com.sun</groupId> <artifactId>tools</artifactId> <version>${java.version}</version> <scope>system</scope> <systemPath>${java.home}/../lib/tools.jar</systemPath> </dependency> </dependencies> </profile> <profile> <id>license</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <executions> <execution> <id>check</id> <phase>compile</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>