comparison service/pom.xml @ 11:ab4794707336 default tip

pluginManagement crap for new m2e Eclipse plugin...
author casties
date Thu, 23 Jun 2011 19:22:56 +0200
parents 39c4892724ae
children
comparison
equal deleted inserted replaced
10:fe0a111cc8f5 11:ab4794707336
1 <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/xsd/maven-4.0.0.xsd"> 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 <modelVersion>4.0.0</modelVersion> 2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <parent> 3 <modelVersion>4.0.0</modelVersion>
4 <artifactId>digilibservice</artifactId> 4 <parent>
5 <groupId>info.textgrid</groupId> 5 <artifactId>digilibservice</artifactId>
6 <version>1.0-SNAPSHOT</version> 6 <groupId>info.textgrid</groupId>
7 </parent> 7 <version>1.0-SNAPSHOT</version>
8 <groupId>info.textgrid</groupId> 8 </parent>
9 <artifactId>digilibservice-service</artifactId> 9 <artifactId>digilibservice-service</artifactId>
10 <packaging>war</packaging> 10 <packaging>war</packaging>
11 <version>1.0-SNAPSHOT</version> 11 <dependencies>
12 <dependencies> 12 <dependency>
13 <dependency> 13 <groupId>info.textgrid.middleware</groupId>
14 <groupId>info.textgrid.middleware</groupId> 14 <artifactId>tgcrud-client</artifactId>
15 <artifactId>tgcrud-client</artifactId> 15 <!-- <version>1.2.1-SNAPSHOT</version> -->
16 <version>1.2-BETA-SNAPSHOT</version> 16 </dependency>
17 <!-- <version>1.2.1-SNAPSHOT</version> --> 17 <dependency>
18 </dependency> 18 <groupId>junit</groupId>
19 <dependency> 19 <artifactId>junit</artifactId>
20 <groupId>junit</groupId> 20 <scope>test</scope>
21 <artifactId>junit</artifactId> 21 </dependency>
22 <version>3.8.1</version> 22 <dependency>
23 <scope>test</scope> 23 <groupId>org.apache.cxf</groupId>
24 </dependency> 24 <artifactId>cxf</artifactId>
25 <dependency> 25 <type>pom</type>
26 <groupId>org.apache.cxf</groupId> 26 </dependency>
27 <artifactId>cxf</artifactId> 27 <dependency>
28 <version>${cxf.version}</version> 28 <groupId>org.apache.cxf</groupId>
29 <type>pom</type> 29 <artifactId>cxf-rt-frontend-jaxrs</artifactId>
30 </dependency> 30 </dependency>
31 <dependency> 31 <dependency>
32 <groupId>org.apache.cxf</groupId> 32 <groupId>org.apache.cxf</groupId>
33 <artifactId>cxf-rt-frontend-jaxrs</artifactId> 33 <artifactId>cxf-rt-frontend-jaxws</artifactId>
34 <version>${cxf.version}</version> 34 </dependency>
35 </dependency> 35 <dependency>
36 <dependency> 36 <groupId>org.apache.cxf</groupId>
37 <groupId>org.apache.cxf</groupId> 37 <artifactId>cxf-rt-transports-http</artifactId>
38 <artifactId>cxf-rt-frontend-jaxws</artifactId> 38 </dependency>
39 <version>${cxf.version}</version> 39 <dependency>
40 </dependency> 40 <groupId>digilib</groupId>
41 <dependency> 41 <artifactId>digilib-common</artifactId>
42 <groupId>org.apache.cxf</groupId> 42 <type>jar</type>
43 <artifactId>cxf-rt-transports-http</artifactId> 43 <scope>compile</scope>
44 <version>${cxf.version}</version> 44 </dependency>
45 </dependency> 45 </dependencies>
46 <dependency> 46 <build>
47 <groupId>digilib</groupId> 47 <finalName>digilibservice</finalName>
48 <artifactId>digilib-common</artifactId> 48 <pluginManagement>
49 <version>2.0-SNAPSHOT</version> 49 <plugins>
50 <type>jar</type> 50 <!--This plugin's configuration is used to store Eclipse m2e settings
51 <scope>compile</scope> 51 only. It has no influence on the Maven build itself. -->
52 </dependency> 52 <plugin>
53 </dependencies> 53 <groupId>org.eclipse.m2e</groupId>
54 <build> 54 <artifactId>lifecycle-mapping</artifactId>
55 <finalName>digilibservice</finalName> 55 <version>1.0.0</version>
56 <plugins> 56 <configuration>
57 <plugin> 57 <lifecycleMappingMetadata>
58 <groupId>org.apache.cxf</groupId> 58 <pluginExecutions>
59 <artifactId>cxf-codegen-plugin</artifactId> 59 <pluginExecution>
60 <version>${cxf.version}</version> 60 <pluginExecutionFilter>
61 <executions> 61 <groupId>org.apache.cxf</groupId>
62 <execution> 62 <artifactId>cxf-codegen-plugin</artifactId>
63 <id>generate-digilibservice-sources</id> 63 <versionRange>[1.0,)</versionRange>
64 <phase>generate-sources</phase> 64 <goals>
65 <configuration> 65 <goal>wsdl2java</goal>
66 <wsdlOptions> 66 </goals>
67 <wsdlOption> 67 </pluginExecutionFilter>
68 <wsdl>src/main/webapp/WEB-INF/DigilibService.wsdl</wsdl> 68 <action>
69 </wsdlOption> 69 <ignore />
70 </wsdlOptions> 70 </action>
71 </configuration> 71 </pluginExecution>
72 <goals> 72 </pluginExecutions>
73 <goal>wsdl2java</goal> 73 </lifecycleMappingMetadata>
74 </goals> 74 </configuration>
75 </execution> 75 </plugin>
76 </executions> 76 </plugins>
77 </plugin> 77 </pluginManagement>
78 </plugins> 78 <plugins>
79 </build> 79 <plugin>
80 <groupId>org.apache.cxf</groupId>
81 <artifactId>cxf-codegen-plugin</artifactId>
82 <version>${cxf.version}</version>
83 <executions>
84 <execution>
85 <id>generate-digilibservice-sources</id>
86 <phase>generate-sources</phase>
87 <configuration>
88 <wsdlOptions>
89 <wsdlOption>
90 <wsdl>src/main/webapp/WEB-INF/DigilibService.wsdl</wsdl>
91 </wsdlOption>
92 </wsdlOptions>
93 </configuration>
94 <goals>
95 <goal>wsdl2java</goal>
96 </goals>
97 </execution>
98 </executions>
99 </plugin>
100 </plugins>
101 </build>
102
80 </project> 103 </project>