blob: 3e29fc823771dbc1e87be5870100bcdf27171db4 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project 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">
<parent>
<groupId>npanday</groupId>
<artifactId>npanday-project</artifactId>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>npanday</groupId>
<version>1.0.0</version>
<artifactId>npanday-repository-builder</artifactId>
<packaging>pom</packaging>
<name>NPanday Repository Builder</name>
<dependencies>
<!--
NPANDAY PLUGINS
-->
<dependency>
<groupId>npanday.plugin</groupId>
<artifactId>maven-compile-plugin</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>npanday.plugin</groupId>
<artifactId>maven-aspx-plugin</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>npanday.plugin</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>npanday.plugin</groupId>
<artifactId>maven-fxcop-plugin</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>npanday.plugin</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>npanday.plugin</groupId>
<artifactId>maven-link-plugin</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>npanday.plugin</groupId>
<artifactId>maven-mojo-generator-plugin</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>npanday.plugin</groupId>
<artifactId>maven-repository-plugin</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>npanday.plugin</groupId>
<artifactId>maven-resgen-plugin</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>npanday.plugin</groupId>
<artifactId>maven-resolver-plugin</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>npanday.plugin</groupId>
<artifactId>maven-test-plugin</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>npanday.plugin</groupId>
<artifactId>maven-vsinstaller-plugin</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>npanday.plugin</groupId>
<artifactId>maven-webapp-plugin</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>npanday.plugin</groupId>
<artifactId>maven-wsdl-plugin</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>npanday.plugin</groupId>
<artifactId>maven-xsd-plugin</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>npanday.plugin</groupId>
<artifactId>maven-xsp-plugin</artifactId>
<version>1.0.0</version>
</dependency>
<!--
NPANDAY NETPLUGINS
-->
<dependency>
<groupId>npanday.plugin</groupId>
<artifactId>NPanday.Plugin.Addin.JavaBinding</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>npanday.plugin</groupId>
<artifactId>NPanday.Plugin.Devenv.JavaBinding</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>npanday.plugin</groupId>
<artifactId>NPanday.Plugin.Settings.JavaBinding</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>npanday.plugin</groupId>
<artifactId>NPanday.Plugin.SysRef.JavaBinding</artifactId>
<version>1.0.0</version>
</dependency>
<!--
NPANDAY ARCHETYPES
-->
<dependency>
<groupId>npanday</groupId>
<artifactId>maven-archetype-dotnet-simple</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>npanday</groupId>
<artifactId>maven-archetype-netexecutable</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>npanday</groupId>
<artifactId>maven-archetype-vb-simple</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.0</version>
<executions>
<execution>
<id>dotnet</id>
<phase>process-resources</phase>
<configuration>
<outputDirectory>${project.build.directory}/dotnet</outputDirectory>
<artifactItems>
<artifactItem>
<groupId>npanday</groupId>
<artifactId>dotnet-repository-builder</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
<classifier>bin</classifier>
</artifactItem>
</artifactItems>
</configuration>
<goals>
<goal>unpack</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.1</version>
<configuration>
<descriptor>src/main/assembly/repo.xml</descriptor>
<finalName>repository</finalName>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>