forked from community/device-mgt-plugins
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
147 lines
5.4 KiB
147 lines
5.4 KiB
10 years ago
|
<!--
|
||
|
~ Copyright 2011-2012 WSO2, Inc. (http://wso2.com)
|
||
|
~
|
||
|
~ Licensed 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
|
||
|
~
|
||
|
~ 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">
|
||
|
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>org.wso2.appserver</groupId>
|
||
|
<artifactId>android-api</artifactId>
|
||
|
<version>5.2.0</version>
|
||
|
<name>JAX-RS Basic Demo</name>
|
||
|
<description>JAX-RS Basic Demo</description>
|
||
|
<packaging>war</packaging>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<source>1.5</source>
|
||
|
<target>1.5</target>
|
||
|
</configuration>
|
||
|
<version>2.3.2</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<artifactId>maven-war-plugin</artifactId>
|
||
|
<version>2.2</version>
|
||
|
<configuration>
|
||
|
|
||
|
<packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
|
||
|
<warName>${project.artifactId}</warName>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
|
||
|
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>deploy</id>
|
||
|
<build>
|
||
|
<defaultGoal>compile</defaultGoal>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-antrun-plugin</artifactId>
|
||
|
<version>1.7</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>compile</phase>
|
||
|
<goals>
|
||
|
<goal>run</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<tasks>
|
||
|
<copy todir="${basedir}/../../../repository/deployment/server/webapps" overwrite="true">
|
||
|
<fileset dir="${basedir}/target">
|
||
|
<include name="${project.artifactId}.war"/>
|
||
|
</fileset>
|
||
|
</copy>
|
||
|
</tasks>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</profile>
|
||
|
|
||
|
<profile>
|
||
|
<id>client</id>
|
||
|
<build>
|
||
|
<defaultGoal>test</defaultGoal>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.codehaus.mojo</groupId>
|
||
|
<artifactId>exec-maven-plugin</artifactId>
|
||
|
<version>1.2.1</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>test</phase>
|
||
|
<goals>
|
||
|
<goal>java</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
|
||
|
<dependencies>
|
||
|
<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-frontend-jaxrs</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>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<scope>test</scope>
|
||
|
<version>${junit.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-httpclient</groupId>
|
||
|
<artifactId>commons-httpclient</artifactId>
|
||
|
<version>3.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>javax.ws.rs</groupId>
|
||
|
<artifactId>jsr311-api</artifactId>
|
||
|
<version>1.1.1</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<properties>
|
||
|
<cxf.version>2.6.1</cxf.version>
|
||
|
<junit.version>4.8.2</junit.version>
|
||
|
</properties>
|
||
|
|
||
|
</project>
|