Hval24AdapterIC-teststub
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>se.skltp.adapterservices.crm.carelisting</groupId> <artifactId>Hval24AdapterIC-teststub</artifactId> <version>2.0.3</version> </dependency>
<?xml version="1.0"?> <!-- <?xml version="1.0" encoding="UTF-8"?> --> <!-- * Copyright 2009 Sjukvardsradgivningen * * This library is free software; you can redistribute it and/or modify * it under the terms of version 2.1 of the GNU Lesser General Public * License as published by the Free Software Foundation. * * 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., 59 Temple Place, Suite 330, * Boston, MA 02111-1307 USA --> <!-- DON'T CHANGE THE CONTENT OF THIS COMMENT UNLESS YOU REALLY KNOW WHAT YOU ARE DOING! [soi-toolkit.gen.version=0.6.1-M4] [soi-toolkit.gen.type=services] [soi-toolkit.gen.createDate=2014-01-23T15:59:21.274+01:00] [soi-toolkit.gen.artifactId=Hval24Adapter] --> <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> <parent> <groupId>se.skltp.adapterservices.crm.carelisting</groupId> <artifactId>Hval24AdapterIC-parent</artifactId> <version>2.0.3</version> </parent> <groupId>se.skltp.adapterservices.crm.carelisting</groupId> <artifactId>Hval24AdapterIC-teststub</artifactId> <version>2.0.3</version> <packaging>mule</packaging> <name>${project.artifactId}</name> <properties> <schema.path>${basedir}/src/main/resources/schemas</schema.path> <cxf.version>2.5.1</cxf.version> </properties> <dependencies> <!-- dependencies to the integration component that contains the services to stub --> <dependency> <groupId>se.skltp.adapterservices.crm.carelisting</groupId> <artifactId>Hval24AdapterIC</artifactId> <version>2.0.3</version> <type>test-jar</type> </dependency> <dependency> <groupId>se.skltp.adapterservices.crm.carelisting</groupId> <artifactId>Hval24AdapterIC</artifactId> <version>2.0.3</version> <classifier>core</classifier> </dependency> </dependencies> <build> <resources> <resource> <directory>${basedir}/src/main/resources</directory> </resource> <resource> <!-- To get mule-config files from the Mule Studio defined resource-folder in the classpath... --> <directory>${basedir}/src/main/app</directory> </resource> </resources> <plugins> <plugin> <!-- Add mule-nature to the eclipse-.project-file --> <artifactId>maven-eclipse-plugin</artifactId> <configuration> <additionalBuildcommands> <buildcommand>org.mule.tooling.core.muleBuilder</buildcommand> </additionalBuildcommands> <additionalProjectnatures> <projectnature>org.mule.tooling.core.muleNature</projectnature> </additionalProjectnatures> </configuration> </plugin> <plugin> <groupId>org.mule.tools</groupId> <artifactId>maven-mule-plugin</artifactId> <extensions>true</extensions> <!-- Include mule-dependencies that doesn't come with Mule 3.x otherwise we can't install to a vanilla Mule 3.x installation --> <configuration> <inclusions> <inclusion> <groupId>org.mule.modules</groupId> <artifactId>mule-module-rest-router</artifactId> </inclusion> <inclusion> <groupId>org.mule.modules</groupId> <artifactId>devkit</artifactId> </inclusion> </inclusions> <exclusions> <!-- xercesImpl is endorsed in MULE_HOME/lib/endorsed, see issue 274 --> <exclusion> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> </exclusion> <!-- log4j is already included in MULE_HOME/lib/boot, see issue 283 --> <exclusion> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> <!-- junit is already included in MULE_HOME/lib/opt, see issue 283 --> <exclusion> <groupId>junit</groupId> <artifactId>junit</artifactId> </exclusion> <!-- servlet-api-2.5 is already included in MULE_HOME/lib/opt, see issue 283 --> <exclusion> <groupId>org.mortbay.jetty</groupId> <artifactId>servlet-api-2.5</artifactId> </exclusion> <!-- jug is already included in MULE_HOME/lib/opt, see issue 283 --> <exclusion> <groupId>org.safehaus.jug</groupId> <artifactId>jug.osgi</artifactId> </exclusion> <!-- activemq needs to be added manually to MULE_HOME/lib/user if required, see issue 283 --> <exclusion> <groupId>org.apache.activemq</groupId> <artifactId>activemq-core</artifactId> </exclusion> <exclusion> <groupId>org.apache.xbean</groupId> <artifactId>xbean-spring</artifactId> </exclusion> <!-- hornetq needs to be added manually to MULE_HOME/lib/user if required, see issue 283 --> <exclusion> <groupId>org.hornetq</groupId> <artifactId>hornetq-core-client</artifactId> </exclusion> <exclusion> <groupId>org.hornetq</groupId> <artifactId>hornetq-jms</artifactId> </exclusion> <exclusion> <groupId>org.jboss.netty</groupId> <artifactId>netty</artifactId> </exclusion> <!-- jtds (JDBC driver fpr Microsoft SQL Server) needs to be added manually to MULE_HOME/lib/user if required, see issue 283 --> <exclusion> <groupId>net.sourceforge.jtds</groupId> <artifactId>jtds</artifactId> </exclusion> </exclusions> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>muleServer</id> <!-- Start mule server with the command "mvn -PmuleServer" or "mvn -PmuleServer -Dexec.args="${artifaceId}-config.xml"" if you want to override the default config-file --> <build> <defaultGoal>test</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution> <phase>test</phase> <goals> <goal>java</goal> </goals> <configuration> <mainClass>se.skltp.adapterservices.crm.carelisting.hval24adapter.Hval24AdapterMuleServer</mainClass> <classpathScope>test</classpathScope> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>