You are viewing a plain text version of this content. The canonical link for it is here.
Posted to npanday-commits@incubator.apache.org by br...@apache.org on 2013/08/16 13:14:08 UTC

svn commit: r1514694 - /incubator/npanday/trunk/dotnet/assemblies/NPanday.Plugin.Loader/pom.xml

Author: brett
Date: Fri Aug 16 13:14:08 2013
New Revision: 1514694

URL: http://svn.apache.org/r1514694
Log:
Load plugins as x86

This ensures that the correct registry will be used for the
NPanday.Plugin.Settings lookup on 64-bit installations. If it is loaded as
64-bit, then the registry lookup will not locate the 32-bit .NET Framework
registry entries.

Modified:
    incubator/npanday/trunk/dotnet/assemblies/NPanday.Plugin.Loader/pom.xml

Modified: incubator/npanday/trunk/dotnet/assemblies/NPanday.Plugin.Loader/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/dotnet/assemblies/NPanday.Plugin.Loader/pom.xml?rev=1514694&r1=1514693&r2=1514694&view=diff
==============================================================================
--- incubator/npanday/trunk/dotnet/assemblies/NPanday.Plugin.Loader/pom.xml (original)
+++ incubator/npanday/trunk/dotnet/assemblies/NPanday.Plugin.Loader/pom.xml Fri Aug 16 13:14:08 2013
@@ -36,5 +36,16 @@ under the License.
       <version>1.5.0-incubating-SNAPSHOT</version>
       <type>dotnet-library</type>  
     </dependency> 
-  </dependencies> 
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.npanday.plugins</groupId>
+        <artifactId>maven-compile-plugin</artifactId>
+        <configuration>
+          <platform>x86</platform>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>