source: trunk/autoquest-httpmonitor-test/pom.xml @ 1538

Last change on this file since 1538 was 1536, checked in by pharms, 10 years ago

[maven-release-plugin] rollback the release of autoquest-release-0.1.0

File size: 7.0 KB
Line 
1<project
2    xmlns="http://maven.apache.org/POM/4.0.0"
3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
5>
6    <parent>
7        <groupId>de.ugoe.cs.autoquest</groupId>
8        <artifactId>autoquest-test</artifactId>
9        <version>0.0.1-SNAPSHOT</version>
10        <relativePath>../autoquest-test/pom.xml</relativePath>
11    </parent>
12    <modelVersion>4.0.0</modelVersion>
13    <artifactId>autoquest-httpmonitor-test</artifactId>
14    <licenses>
15        <license>
16            <name>The Apache Software License, Version 2.0</name>
17            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
18        </license>
19    </licenses>
20    <scm>
21        <url>${autoquest-scm-trunk-dir}/${project.artifactId}</url>
22        <connection>scm:svn:${autoquest-scm-trunk-dir}/${project.artifactId}</connection>
23    </scm>
24    <properties>
25        <tested-artifactId>autoquest-httpmonitor</tested-artifactId>
26        <tomcat.version>7.0.34</tomcat.version>
27    </properties>
28    <dependencies>
29        <dependency>
30            <groupId>org.apache.tomcat.embed</groupId>
31            <artifactId>tomcat-embed-core</artifactId>
32            <version>${tomcat.version}</version>
33            <scope>test</scope>
34        </dependency>
35        <dependency>
36            <groupId>org.apache.tomcat.embed</groupId>
37            <artifactId>tomcat-embed-logging-juli</artifactId>
38            <version>${tomcat.version}</version>
39            <scope>test</scope>
40        </dependency>
41        <dependency>
42            <groupId>org.apache.tomcat.embed</groupId>
43            <artifactId>tomcat-embed-jasper</artifactId>
44            <version>${tomcat.version}</version>
45            <scope>test</scope>
46        </dependency>
47        <dependency>
48            <groupId>org.apache.tomcat</groupId>
49            <artifactId>tomcat-jasper</artifactId>
50            <version>${tomcat.version}</version>
51            <scope>test</scope>
52        </dependency>
53        <dependency>
54            <groupId>org.apache.tomcat</groupId>
55            <artifactId>tomcat-jasper-el</artifactId>
56            <version>${tomcat.version}</version>
57            <scope>test</scope>
58        </dependency>
59        <dependency>
60            <groupId>org.apache.tomcat</groupId>
61            <artifactId>tomcat-jsp-api</artifactId>
62            <version>${tomcat.version}</version>
63            <scope>test</scope>
64        </dependency>
65        <dependency>
66            <groupId>org.apache.cxf</groupId>
67            <artifactId>cxf-rt-frontend-jaxws</artifactId>
68            <version>2.7.7</version>
69            <scope>test</scope>
70        </dependency>
71        <dependency>
72            <groupId>org.springframework</groupId>
73            <artifactId>spring-context</artifactId>
74            <version>3.1.4.RELEASE</version>
75            <scope>test</scope>
76        </dependency>
77        <dependency>
78            <groupId>org.springframework.security</groupId>
79            <artifactId>spring-security-web</artifactId>
80            <version>3.1.4.RELEASE</version>
81            <scope>test</scope>
82        </dependency>
83        <dependency>
84            <groupId>org.apache.httpcomponents</groupId>
85            <artifactId>httpclient</artifactId>
86            <version>4.2.1</version>
87            <scope>test</scope>
88        </dependency>
89        <dependency>
90            <groupId>org.eclipse.jetty</groupId>
91            <artifactId>jetty-webapp</artifactId>
92            <version>9.1.0.M0</version>
93            <scope>test</scope>
94        </dependency>
95    </dependencies>
96    <build>
97        <plugins>
98            <plugin>
99                <groupId>org.apache.cxf</groupId>
100                <artifactId>cxf-codegen-plugin</artifactId>
101                <version>2.7.7</version>
102                <executions>
103                    <execution>
104                        <id>generate-sources</id>
105                        <phase>generate-sources</phase>
106                        <configuration>
107                            <wsdlOptions>
108                                <wsdlOption>
109                                    <wsdl>${basedir}/src/main/resources/DummyService.wsdl</wsdl>
110                                    <wsdlLocation>classpath:DummyService.wsdl</wsdlLocation>
111                                    <extraargs>
112                                        <extraarg>-impl</extraarg>
113                                    </extraargs>
114                                </wsdlOption>
115                            </wsdlOptions>
116                        </configuration>
117                        <goals>
118                            <goal>wsdl2java</goal>
119                        </goals>
120                    </execution>
121                </executions>
122            </plugin>
123            <plugin>
124                <artifactId>maven-war-plugin</artifactId>
125                <version>2.1</version>
126                <executions>
127                    <execution>
128                        <id>dummyServiceWarGeneration</id>
129                        <phase>process-test-classes</phase>
130                        <configuration>
131                            <webXml>${basedir}/src/main/webapp/WEB-INF/web.xml</webXml>
132                            <outputDirectory>${project.build.directory}/test/tomcat/webapp</outputDirectory>
133                            <warName>dummyService</warName>
134                        </configuration>
135                        <goals>
136                            <goal>war</goal>
137                        </goals>
138                    </execution>
139                </executions>
140            </plugin>
141        </plugins>
142        <pluginManagement>
143            <plugins>
144                <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no
145                    influence on the Maven build itself. -->
146                <plugin>
147                    <groupId>org.eclipse.m2e</groupId>
148                    <artifactId>lifecycle-mapping</artifactId>
149                    <version>1.0.0</version>
150                    <configuration>
151                        <lifecycleMappingMetadata>
152                            <pluginExecutions>
153                                <pluginExecution>
154                                    <pluginExecutionFilter>
155                                        <groupId>org.apache.maven.plugins</groupId>
156                                        <artifactId>maven-war-plugin</artifactId>
157                                        <versionRange>[2.1,)</versionRange>
158                                        <goals>
159                                            <goal>war</goal>
160                                        </goals>
161                                    </pluginExecutionFilter>
162                                    <action>
163                                        <ignore></ignore>
164                                    </action>
165                                </pluginExecution>
166                            </pluginExecutions>
167                        </lifecycleMappingMetadata>
168                    </configuration>
169                </plugin>
170            </plugins>
171        </pluginManagement>
172    </build>
173</project>
Note: See TracBrowser for help on using the repository browser.