blob: 127e9982df2f86416fe58cd899c01fb6ad77dcb0 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://maven.apache.org/POM/4.0.0">
<parent>
<artifactId>WpfApplicationExample-parent</artifactId>
<groupId>G2ix.WpfApplicationExample</groupId>
<version>1.0-SNAPSHOT</version>
<relativePath>..\pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>WpfApplicationExample</artifactId>
<packaging>dotnet-executable</packaging>
<name>G2ix.WpfApplicationExample : WpfApplicationExample</name>
<build>
<sourceDirectory>./</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.npanday.plugins</groupId>
<artifactId>maven-compile-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<frameworkVersion>3.5</frameworkVersion>
<includeSources>
<includeSource>App.xaml.cs</includeSource>
<includeSource>Window1.xaml.cs</includeSource>
<includeSource>Properties\AssemblyInfo.cs</includeSource>
<includeSource>Properties\Resources.Designer.cs</includeSource>
<includeSource>Properties\Settings.Designer.cs</includeSource>
</includeSources>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.npanday.plugins</groupId>
<artifactId>NPanday.Plugin.Msbuild.JavaBinding</artifactId>
<executions>
<execution>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.npanday.plugins</groupId>
<extensions>true</extensions>
<configuration>
<embeddedResources>
<embeddedResource>
<sourceFile>Properties\Resources.resx</sourceFile>
<name>WpfApplicationExample.Properties.Resources</name>
</embeddedResource>
</embeddedResources>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>WindowsBase</groupId>
<artifactId>WindowsBase</artifactId>
<version>3.0.0.0</version>
<type>gac_msil</type>
<classifier>31bf3856ad364e35</classifier>
<scope>system</scope>
<systemPath>C:\WINDOWS\assembly\GAC_MSIL\WindowsBase\3.0.0.0__31bf3856ad364e35\WindowsBase.dll</systemPath>
</dependency>
<dependency>
<groupId>PresentationCore</groupId>
<artifactId>PresentationCore</artifactId>
<version>3.0.0.0</version>
<type>gac_32</type>
<classifier>31bf3856ad364e35</classifier>
<scope>system</scope>
<systemPath>C:\WINDOWS\assembly\GAC_32\PresentationCore\3.0.0.0__31bf3856ad364e35\PresentationCore.dll</systemPath>
</dependency>
<dependency>
<groupId>PresentationFramework</groupId>
<artifactId>PresentationFramework</artifactId>
<version>3.0.0.0</version>
<type>gac_msil</type>
<classifier>31bf3856ad364e35</classifier>
<scope>system</scope>
<systemPath>C:\WINDOWS\assembly\GAC_MSIL\PresentationFramework\3.0.0.0__31bf3856ad364e35\PresentationFramework.dll</systemPath>
</dependency>
</dependencies>
</project>