Skip to content

Latest commit

 

History

History
24 lines (23 loc) · 875 Bytes

README.md

File metadata and controls

24 lines (23 loc) · 875 Bytes

Taverna XSDs

Contains XML .xsd files with non Apache like licences required by other repos with licence restrictions.
Uses Maven Remote Resources plugin.

To build use maven install. To include in your project add the following to the plugin section of your pom file.

			      <plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-remote-resources-plugin</artifactId>
					<version>1.5</version>
					<configuration>
						<resourceBundles>
							<resourceBundle>uk.org.taverna:shared-resources:1</resourceBundle>
						</resourceBundles>
					</configuration>
					<executions>
						<execution>
							<goals>
								<goal>process</goal>
							</goals>
						</execution>
					</executions>
				</plugin>