Skip to content
pom.xml 1.75 KiB
Newer Older
Sergio Pérez's avatar
Sergio Pérez committed
<?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">
    <modelVersion>4.0.0</modelVersion>

    <artifactId>e-Knife</artifactId>

Carlos Galindo's avatar
Carlos Galindo committed
    <parent>
        <artifactId>e-knife-parent</artifactId>
        <groupId>es.upv.mist.slicing</groupId>
        <version>1.1.0</version>
    </parent>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>3.3.0</version>
                <configuration>
                    <archive>
                        <manifest>
                            <addClasspath>true</addClasspath>
                            <mainClass>eknife.EKnife</mainClass>
                        </manifest>
                    </archive>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                </configuration>
                <executions>
                    <execution>
                        <id>assemble-all</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
Sergio Pérez's avatar
Sergio Pérez committed

    <dependencies>
        <dependency>
Carlos Galindo's avatar
Carlos Galindo committed
            <groupId>es.upv.mist.slicing</groupId>
Sergio Pérez's avatar
Sergio Pérez committed
            <artifactId>EDG</artifactId>
Carlos Galindo's avatar
Carlos Galindo committed
            <version>1.1.0</version>
Sergio Pérez's avatar
Sergio Pérez committed
        </dependency>
    </dependencies>

Carlos Galindo's avatar
Carlos Galindo committed
</project>