zosrothko / nar-maven-plugin

Native ARchive plugin for Maven

Home Page:https://maven-nar.github.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The NAR plugin for Maven allows you to compile native code (C++, C and Fortran) on a number of different architectures (Linux, Windows, MacOSX, Solaris, FreeBSD, ...) and with a number of different compilers/linkers (g++, Microsoft Visual C++, CC, ...) The output produced is wrapped up in Native ARchive files (.nar) some of which are machine independent (-noarch), while others are machine specific and thus depend on a combination of machine architecture(A), operating-system(O) and linker(L) identified as AOL. These nar files can be installed in the local Maven repository and deployed to a standard Maven (web) server, using the standard maven-install-plugin and maven-deploy-plugin.

Usage

In your POM:

<build>
	<plugins>
		<plugin>
			<groupId>com.github.maven-nar</groupId>
			<artifactId>nar-maven-plugin</artifactId>
			<version>3.5.1</version>
			<extensions>true</extensions>
			<configuration>
				...
			</configuration>
		</plugin>
	</plugins>
</build>

Of course, it is recommended that you use the latest version.

What you put in the <configuration> section will depend on your build; for ideas, see:

Documentation

Community

What about maven-nar-plugin?

This is the official maven-nar-plugin project, renamed to nar-maven-plugin as per Apache Maven's requirements.

Alternatives and Complements

About

Native ARchive plugin for Maven

https://maven-nar.github.io/

License:Apache License 2.0


Languages

Language:Java 94.5%Language:C 3.2%Language:C++ 1.7%Language:Shell 0.3%Language:HTML 0.2%Language:Objective-C 0.1%Language:M4 0.0%Language:Makefile 0.0%Language:Fortran 0.0%Language:CSS 0.0%Language:Batchfile 0.0%