andi12 / msbuild-maven-plugin

Maven 3 plugin for building Visual Studio solutions and projects with msbuild
Apache License 2.0
5 stars 3 forks source link

msbuild-maven-plugin

Maven 3 plugin for building Visual Studio solutions and projects with msbuild.

Requirements:

In addition to building using msbuild the plugin also supports:

Usage

For detailed usage instruction see the project Wiki at: https://github.com/andi12/msbuild-maven-plugin/wiki

The plugin is available from Maven Central see http://search.maven.org/#search|ga|1|a%3A%22msbuild-maven-plugin%22

This simple example shows basic setup to build from a solution file. Place the following in the <build> <plugins> section of you POM and use our 'exe' packaging.

    <plugin>
        <groupId>uk.org.raje.maven.plugins</groupId>
        <artifactId>msbuild-maven-plugin</artifactId>
        <version>1.2.1</version>
        <extensions>true</extensions>
        <configuration>
            <projectFile>hello-world.vcxproj</projectFile>
            <platforms>
                <platform>
                    <name>Win32</name>
                    <configurations>
                        <configuration>
                            <name>Release</name>
                        </configuration>
                        <configuration>
                            <name>Debug</name>
                        </configuration>
                    </configurations>
                </platform>
            </platforms>
        </configuration>
    </plugin>

Changelog

This section provides a summary of significant changes in each release. For all details see the commitlog.

1.3.1 (1-Oct-2019)

1.3.0 (29-Sep-2019)

1.2.1 (5-Nov-2013)

1.2 (1-Nov-2013)

1.1 (10-Oct-2013)