Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="UTF-8"?>
- <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">
- <!--
- deleted bundle data because of privacy concerns
- -->
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.cxf</groupId>
- <artifactId>cxf-codegen-plugin</artifactId>
- <version>${cxf.version}</version>
- <executions>
- <execution>
- <id>generate-sources</id>
- <phase>generate-sources</phase>
- <configuration>
- <defaultOptions>
- <bindingFiles>
- <bindingFile>${basedir}/src/main/resources/xsd/Binding.xjb</bindingFile>
- </bindingFiles>
- <noAddressBinding>true</noAddressBinding>
- </defaultOptions>
- <sourceRoot>${basedir}/target/generated-sources/cxf</sourceRoot>
- <wsdlOptions>
- <wsdlOption>
- <wsdl>${basedir}/src/main/resources/xsd/OrganizationService.wsdl</wsdl>
- <extraargs>
- <extraarg>-verbose</extraarg>
- <extraarg>-xjc-b,src/main/resources/episodes/oslo.episode</extraarg>
- </extraargs>
- </wsdlOption>
- </wsdlOptions>
- <extension>true</extension>
- </configuration>
- <goals>
- <goal>wsdl2java</goal>
- </goals>
- </execution>
- </executions>
- <dependencies></dependencies>
- </plugin>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <version>2.3.7</version>
- <extensions>true</extensions>
- <configuration>
- <instructions>
- <Export-Package>
- <!-- deleted too -->
- </Export-Package>
- <Import-Package>
- <!-- deleted again -->
- *
- </Import-Package>
- </instructions>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <!-- and again -->
- </dependencies>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement