All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nance.prov.ProvToolbox-Tutorial1.2.2.0.source-code.standalone-pom.xml Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
<?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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.openprovenance.prov.tutorial</groupId>
    <artifactId>ProvToolbox-Tutorial1</artifactId>
    <version>${pom.version}</version>
    <name>ProvToolbox Tutorial 1</name>
    <description>ProvToolbox Tutorial 1</description>

    <developers>
        <developer>
            <id>lucmoreau</id>
            <name>Luc Moreau</name>
            <email>[email protected]</email>
            <roles>
                <role>Developer</role>
            </roles>
            <organization>University of Southampton</organization>
            <timezone>0</timezone>
        </developer>
        <developer>
            <id>lavm</id>
            <name>Luc Moreau</name>
            <email>[email protected]</email>
            <roles>
                <role>Developer</role>
            </roles>
            <organization>University of Southampton</organization>
            <timezone>0</timezone>
        </developer>
    </developers>

    <licenses>
        <license>
            <name>MIT License</name>
            <url>license.txt</url>
        </license>
    </licenses>

    <dependencies>
        <dependency>
            <groupId>org.openprovenance.prov</groupId>
            <artifactId>prov-model</artifactId>
            <version>${pom.version}</version>
        </dependency>
        <dependency>
            <groupId>org.openprovenance.prov</groupId>
            <artifactId>prov-interop</artifactId>
            <version>${pom.version}</version>
        </dependency>
        <dependency>
            <groupId>org.openprovenance.prov</groupId>
            <artifactId>prov-dot</artifactId>
            <version>${pom.version}</version>
        </dependency>
        <dependency>
            <groupId>org.openprovenance.prov</groupId>
            <artifactId>prov-n</artifactId>
            <version>${pom.version}</version>
        </dependency>
    </dependencies>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>${exec.plugin.version}</version>
                <executions>
                    <execution>
                        <phase>test</phase>
                        <goals>
                            <goal>java</goal>
                        </goals>
                        <configuration>
                            <mainClass>org.openprovenance.prov.tutorial.tutorial1.Little</mainClass>
                            <arguments>
                                <argument>target/little.svg</argument>
                            </arguments>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>



        <pluginManagement>
            <plugins>
                <plugin>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>${compiler.plugin.version}</version>
                    <configuration>
                        <source>1.9</source>
                        <target>1.9</target>
                    </configuration>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>
</project>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy