root/tags/release-1.0.2/pustefix-webservices/pom.xml

Revision 4988, 1.6 KB (checked in by mtld, 2 years ago)

set version to 1.0.2

Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<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">
3  <modelVersion>4.0.0</modelVersion>
4
5  <parent>
6    <groupId>org.pustefixframework</groupId>
7    <artifactId>pustefixframework</artifactId>
8    <version>1.0.2</version>
9  </parent>
10
11  <groupId>org.pustefixframework.webservices</groupId>
12  <artifactId>pustefix-webservices</artifactId>
13  <packaging>pom</packaging>
14  <version>1.0.2</version>
15  <name>Pustefix Webservices</name>
16
17  <dependencies>
18    <dependency>
19      <groupId>org.pustefixframework</groupId>
20      <artifactId>pustefix-core</artifactId>
21      <version>1.0.2</version>
22    </dependency>
23    <dependency>
24      <groupId>log4j</groupId>
25      <artifactId>log4j</artifactId>
26      <version>1.2.13</version>
27    </dependency>
28    <dependency>
29      <groupId>javax.servlet</groupId>
30      <artifactId>servlet-api</artifactId>
31      <version>2.4</version>
32      <scope>provided</scope>
33    </dependency>
34  </dependencies>
35
36  <modules>
37    <module>pustefix-webservices-core</module>
38    <!--<module>pustefix-webservices-jaxws</module>-->
39    <module>pustefix-webservices-jsonws</module>
40  </modules>
41
42  <build>
43    <plugins>
44      <plugin>
45        <groupId>org.apache.maven.plugins</groupId>
46        <artifactId>maven-surefire-plugin</artifactId>
47        <configuration>
48          <includes>
49            <include>**/?*Test.java</include>
50          </includes>
51        </configuration>
52      </plugin>
53    </plugins>
54  </build>
55
56</project>
57
Note: See TracBrowser for help on using the browser.