| <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> |
| |
| <parent> |
| <groupId>org.eclipse.tigerstripe</groupId> |
| <artifactId>org.eclipse.tigerstripe.plugins.parent</artifactId> |
| <version>0.10.0-SNAPSHOT</version> |
| <relativePath>../pom.xml</relativePath> |
| </parent> |
| |
| <artifactId>org.eclipse.tigerstripe.workbench.base</artifactId> |
| <packaging>eclipse-plugin</packaging> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-dependency-plugin</artifactId> |
| <version>3.1.1</version> |
| <executions> |
| <execution> |
| <id>copy-core-tigesrtripe-jars</id> |
| <phase>generate-resources</phase> |
| <goals> |
| <goal>copy</goal> |
| </goals> |
| <configuration> |
| <artifactItems> |
| <artifactItem> |
| <groupId>org.eclipse.tigerstripe</groupId> |
| <artifactId>tigerstripe-api</artifactId> |
| <version>${project.version}</version> |
| </artifactItem> |
| <artifactItem> |
| <groupId>org.eclipse.tigerstripe</groupId> |
| <artifactId>tigerstripe-core</artifactId> |
| <version>${project.version}</version> |
| </artifactItem> |
| </artifactItems> |
| <outputDirectory>${project.basedir}/lib</outputDirectory> |
| <overwriteIfNewer>true</overwriteIfNewer> |
| <stripVersion>true</stripVersion> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |