tak-services
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>se.skltp.tak</groupId> <artifactId>tak-services</artifactId> <version>1.5.5</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-services</artifactId> <packaging>war</packaging> <name>tak-services</name> <url>http://maven.apache.org</url> <parent> <groupId>se.skltp.tak</groupId> <artifactId>tak-parent</artifactId> <version>1.5.5</version> <relativePath>../pom.xml</relativePath> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <repositories> <!-- for jaxb-impl --> <repository> <id>java.net</id> <url>http://download.java.net/maven/1/</url> <layout>legacy</layout> </repository> </repositories> <dependencies> <!-- i core ligger alla entiteter osv --> <dependency> <groupId>se.skltp.tak</groupId> <artifactId>tak-core</artifactId> <version>${project.version}</version> </dependency> <!-- TAKs beroende till xml-scheman --> <dependency> <groupId>se.skltp.tak</groupId> <artifactId>tak-schemas</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>se.skltp.infrastructure.itintegration</groupId> <artifactId>ServiceContracts_infrastructure_itintegration_registry</artifactId> <version>2.0-RC1</version> </dependency> <!-- itintegration monitoring schemas för PingForConfiguration --> <dependency> <groupId>se.skltp.itintegration.monitoring</groupId> <artifactId>ServiceContracts_itintegration_monitoring</artifactId> <version>1.0</version> </dependency> <!-- Spring-beroendena var tidigare angivna i parent pom:en. P.g.a av att tak-admin-web är ett Grails-projekt (som i sig har beroende till Spring) så kunde det projektet inte sätta upp parent pom:en som sig bör eftersom det blev konflikter med Spring-beroenden. Genom att flytta spring konfigurationen hit så kan Grails-projektets pom använda sig av parent pom:en som det är tänkt. Genom att här använda sig av spring.version property satt i parent pom:en behövs bara ett ställe för att uppdatera spring versionen, d.v.s i parent pom:en. --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-orm</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> <scope>test</scope> </dependency> <!-- cxf --> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-frontend-jaxws</artifactId> <version>${cxf.version}</version> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-transports-http</artifactId> <version>${cxf.version}</version> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-transports-http-jetty</artifactId> <version>${cxf.version}</version> <!-- exkludera en som stör !!! --> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> </exclusion> <exclusion> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-servlet_3.0_spec</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.3</version> <inherited>false</inherited> </plugin> </plugins> </build> </project>