mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
55 lines
1.6 KiB
XML
55 lines
1.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>edu.wpi.first.wpilib.templates</groupId>
|
|
<artifactId>include</artifactId>
|
|
<version>0.1.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.resources.sourceEncoding>UTF-8</project.resources.sourceEncoding>
|
|
<!-- local-repository>C:/Users/wpilibj-buildmaster/maven-repository</local-repository-->
|
|
</properties>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>native-maven-plugin</artifactId>
|
|
<version>1.0-alpha-7</version>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<!-- Don't build, just collect headers -->
|
|
<compilerExecutable>echo</compilerExecutable>
|
|
<linkerExecutable>echo</linkerExecutable>*
|
|
|
|
<sources>
|
|
<source>
|
|
<directory>src/main/include</directory>
|
|
<!-- use this to have maven deploying header files with a .inczip type -->
|
|
<!-- typically used to for library artifacts header files -->
|
|
<deployable>true</deployable>
|
|
</source>
|
|
</sources>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>jenkins</id>
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>myrepository</id>
|
|
<url>file:${local-repository}</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|