| <?xml version="1.0" encoding="UTF-8"?> |
| |
| <!--Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you 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.apache.airavata</groupId> |
| <artifactId>airavata-jsdl-generator</artifactId> |
| <name>Airavata JSDL Generator</name> |
| <description>Standalone bean library to generate jsdl.</description> |
| <version>0.1-SNAPSHOT</version> |
| <packaging>jar</packaging> |
| <url>http://airavata.apache.org/</url> |
| |
| <properties> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| <org.slf4j.version>1.7.2</org.slf4j.version> |
| <axiom.version>1.2.8</axiom.version> |
| <surefire.version>2.12</surefire.version> |
| <junit.version>4.7</junit.version> |
| <xmlbeans.version>2.5.0</xmlbeans.version> |
| <xpp3.version>1.1.3_7</xpp3.version> |
| <skipTests>false</skipTests> |
| </properties> |
| |
| <dependencies> |
| |
| <dependency> |
| <groupId>org.apache.xmlbeans</groupId> |
| <artifactId>xmlbeans</artifactId> |
| <version>${xmlbeans.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>wsdl4j</groupId> |
| <artifactId>wsdl4j</artifactId> |
| <version>1.6.2</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>xpp3</groupId> |
| <artifactId>xpp3</artifactId> |
| <version>1.1.4c</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>${org.slf4j.version}</version> |
| </dependency> |
| |
| <!-- Testing --> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>${junit.version}</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>jcl-over-slf4j</artifactId> |
| <version>${org.slf4j.version}</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| <version>${org.slf4j.version}</version> |
| <scope>test</scope> |
| </dependency> |
| |
| |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>build-helper-maven-plugin</artifactId> |
| <version>1.7</version> |
| <executions> |
| <execution> |
| <id>add-source</id> |
| <phase>generate-sources</phase> |
| <goals> |
| <goal>add-source</goal> |
| </goals> |
| <configuration> |
| <sources> |
| <source>${basedir}/target/generated-sources/xmlbeans</source> |
| </sources> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>xmlbeans-maven-plugin</artifactId> |
| <version>2.3.3</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>xmlbeans</goal> |
| </goals> |
| </execution> |
| </executions> |
| <inherited>true</inherited> |
| <configuration> |
| <schemaDirectory>src/main/resources</schemaDirectory> |
| <xmlConfigs> |
| <xmlConfig implementation="java.io.File">src/main/resources/jsdl-schemas.xsdconfig</xmlConfig> |
| </xmlConfigs> |
| <outputJar>target/generated/${project.artifactId}-${project.version}.jar</outputJar> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| </project> |