628 lines
21 KiB
XML
628 lines
21 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.bytedeco</groupId>
|
|
<artifactId>javacpp-presets</artifactId>
|
|
<version>1.3</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>JavaCPP Presets</name>
|
|
<description>The missing bridge between Java and native C++ libraries</description>
|
|
<url>http://bytedeco.org/javacpp-presets/</url>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>Apache License, Version 2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
<license>
|
|
<name>GNU General Public License (GPL) version 2, or any later version</name>
|
|
<url>http://www.gnu.org/licenses/</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
<license>
|
|
<name>GPLv2 with Classpath exception</name>
|
|
<url>http://www.gnu.org/software/classpath/license.html</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>Samuel Audet</name>
|
|
<email>samuel.audet@gmail.com</email>
|
|
</developer>
|
|
</developers>
|
|
|
|
<modules>
|
|
<module>opencv</module>
|
|
<module>ffmpeg</module>
|
|
<module>flycapture</module>
|
|
<module>libdc1394</module>
|
|
<module>libfreenect</module>
|
|
<module>librealsense</module>
|
|
<module>videoinput</module>
|
|
<module>artoolkitplus</module>
|
|
<module>chilitags</module>
|
|
<module>flandmark</module>
|
|
<module>hdf5</module>
|
|
<module>openblas</module>
|
|
<module>fftw</module>
|
|
<module>gsl</module>
|
|
<module>llvm</module>
|
|
<module>leptonica</module>
|
|
<module>tesseract</module>
|
|
<module>caffe</module>
|
|
<module>cuda</module>
|
|
<module>mxnet</module>
|
|
<module>tensorflow</module>
|
|
</modules>
|
|
|
|
<prerequisites>
|
|
<maven>3.0</maven>
|
|
</prerequisites>
|
|
|
|
<scm>
|
|
<url>https://github.com/bytedeco/javacpp-presets</url>
|
|
<connection>scm:git:git://github.com/bytedeco/javacpp-presets.git</connection>
|
|
<developerConnection>scm:git:ssh://git@github.com/bytedeco/javacpp-presets.git</developerConnection>
|
|
</scm>
|
|
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>sonatype-nexus-snapshots</id>
|
|
<name>Sonatype Nexus Snapshots</name>
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
</snapshotRepository>
|
|
<repository>
|
|
<id>sonatype-nexus-staging</id>
|
|
<name>Sonatype Nexus Staging</name>
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<javacpp.cppbuild.skip>false</javacpp.cppbuild.skip> <!-- To skip execution of cppbuild.sh: -Djavacpp.cppbuild.skip=true -->
|
|
<javacpp.parser.skip>false</javacpp.parser.skip> <!-- To skip header file parsing phase: -Djavacpp.parser.skip=true -->
|
|
<javacpp.compiler.skip>false</javacpp.compiler.skip> <!-- To skip native compilation phase: -Djavacpp.compiler.skip=true -->
|
|
<javacpp.moduleId>${project.artifactId}</javacpp.moduleId>
|
|
<javacpp.platform.android-arm>android-arm</javacpp.platform.android-arm>
|
|
<javacpp.platform.android-x86>android-x86</javacpp.platform.android-x86>
|
|
<javacpp.platform.linux-x86>linux-x86</javacpp.platform.linux-x86>
|
|
<javacpp.platform.linux-x86_64>linux-x86_64</javacpp.platform.linux-x86_64>
|
|
<javacpp.platform.linux-armhf>linux-armhf</javacpp.platform.linux-armhf>
|
|
<javacpp.platform.linux-ppc64le>linux-ppc64le</javacpp.platform.linux-ppc64le>
|
|
<javacpp.platform.macosx-x86_64>macosx-x86_64</javacpp.platform.macosx-x86_64>
|
|
<javacpp.platform.windows-x86>windows-x86</javacpp.platform.windows-x86>
|
|
<javacpp.platform.windows-x86_64>windows-x86_64</javacpp.platform.windows-x86_64>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.bytedeco</groupId>
|
|
<artifactId>javacpp</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>2.7</version>
|
|
<executions>
|
|
<execution>
|
|
<id>javacpp.parser</id>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>resources</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.3</version>
|
|
<configuration>
|
|
<source>1.7</source>
|
|
<target>1.7</target>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>default-compile</id>
|
|
<configuration>
|
|
<includes>
|
|
<include>org/bytedeco/javacpp/*.java</include>
|
|
</includes>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>javacpp.parser</id>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>compile</goal>
|
|
</goals>
|
|
<configuration>
|
|
<skipMain>${javacpp.parser.skip}</skipMain>
|
|
<includes>
|
|
<include>org/bytedeco/javacpp/presets/*.java</include>
|
|
</includes>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.bytedeco</groupId>
|
|
<artifactId>javacpp</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
<configuration>
|
|
<properties>${javacpp.platform}</properties>
|
|
<propertyKeysAndValues>
|
|
<property>
|
|
<name>platform.root</name>
|
|
<value>${javacpp.platform.root}</value>
|
|
</property>
|
|
<property>
|
|
<name>platform.compiler</name>
|
|
<value>${javacpp.platform.compiler}</value>
|
|
</property>
|
|
</propertyKeysAndValues>
|
|
<classPath>${project.build.outputDirectory}</classPath>
|
|
<includePath>${basedir}/cppbuild/${javacpp.platform}/include/</includePath>
|
|
<linkPath>${basedir}/cppbuild/${javacpp.platform}/lib/</linkPath>
|
|
<preloadPath>${basedir}/cppbuild/${javacpp.platform}/bin/</preloadPath>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>javacpp.parser</id>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>build</goal>
|
|
</goals>
|
|
<configuration>
|
|
<skip>${javacpp.parser.skip}</skip>
|
|
<outputDirectory>${project.build.sourceDirectory}</outputDirectory>
|
|
<classOrPackageName>org.bytedeco.javacpp.presets.*</classOrPackageName>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>javacpp.compiler</id>
|
|
<phase>process-classes</phase>
|
|
<goals>
|
|
<goal>build</goal>
|
|
</goals>
|
|
<configuration>
|
|
<skip>${javacpp.compiler.skip}</skip>
|
|
<classOrPackageName>org.bytedeco.javacpp.*</classOrPackageName>
|
|
<copyLibs>true</copyLibs>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.0.2</version>
|
|
<executions>
|
|
<execution>
|
|
<id>default-jar</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
<configuration>
|
|
<archive>
|
|
<!-- <manifest> -->
|
|
<!-- <addClasspath>true</addClasspath> -->
|
|
<!-- </manifest> -->
|
|
<manifestEntries>
|
|
<!-- <addClasspath/> is broken: http://jira.codehaus.org/browse/MJAR-61 -->
|
|
<Class-Path>. javacpp.jar</Class-Path>
|
|
<Name>org/bytedeco/javacpp/presets/</Name>
|
|
<Implementation-Title>${project.name}</Implementation-Title>
|
|
<Implementation-Vendor>Bytedeco</Implementation-Vendor>
|
|
<Implementation-Version>${project.version}</Implementation-Version>
|
|
<Specification-Title>${project.name}</Specification-Title>
|
|
<Specification-Vendor>Bytedeco</Specification-Vendor>
|
|
<Specification-Version>${project.version}</Specification-Version>
|
|
</manifestEntries>
|
|
</archive>
|
|
<includes>
|
|
<include>org/bytedeco/javacpp/*</include>
|
|
<include>org/bytedeco/javacpp/helper/*</include>
|
|
<include>org/bytedeco/javacpp/presets/*</include>
|
|
</includes>
|
|
<excludes>
|
|
<exclude>org/bytedeco/javacpp/*.h</exclude>
|
|
<exclude>org/bytedeco/javacpp/linux-*/</exclude>
|
|
<exclude>org/bytedeco/javacpp/macosx-*/</exclude>
|
|
<exclude>org/bytedeco/javacpp/windows-*/</exclude>
|
|
<exclude>org/bytedeco/javacpp/${javacpp.platform}/</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>${javacpp.platform}</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
<configuration>
|
|
<classifier>${javacpp.platform}</classifier>
|
|
<skipIfEmpty>true</skipIfEmpty>
|
|
<includes>
|
|
<include>${javacpp.platform.library.path}/</include>
|
|
<include>org/bytedeco/javacpp/${javacpp.platform}/</include>
|
|
</includes>
|
|
<excludes>
|
|
<exclude>**/*.exp</exclude>
|
|
<exclude>**/*.lib</exclude>
|
|
<exclude>**/*.obj</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
<version>2.5.2</version>
|
|
<configuration>
|
|
<createChecksum>true</createChecksum>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>3.0.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-source</id>
|
|
<goals>
|
|
<goal>jar-no-fork</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.10.4</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-javadocs</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
<configuration>
|
|
<links>
|
|
<link>http://bytedeco.org/javacpp/apidocs/</link>
|
|
</links>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>1.5.0</version>
|
|
<executions>
|
|
<execution>
|
|
<id>javacpp.cppbuild.install</id>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<configuration>
|
|
<arguments>
|
|
<argument>${project.basedir}/../cppbuild.sh</argument>
|
|
<argument>install</argument>
|
|
<argument>${javacpp.moduleId}</argument>
|
|
<argument>-platform</argument>
|
|
<argument>${javacpp.platform}</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>javacpp.cppbuild.clean</id>
|
|
<phase>clean</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<configuration>
|
|
<arguments>
|
|
<argument>${project.basedir}/../cppbuild.sh</argument>
|
|
<argument>clean</argument>
|
|
<argument>${javacpp.moduleId}</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<skip>${javacpp.cppbuild.skip}</skip>
|
|
<workingDirectory>${project.basedir}/..</workingDirectory>
|
|
<executable>bash</executable>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<version>2.8.2</version>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
<version>1.6.6</version>
|
|
<executions>
|
|
<execution>
|
|
<id>default-deploy</id>
|
|
<phase>deploy</phase>
|
|
<goals>
|
|
<goal>deploy</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<serverId>sonatype-nexus-staging</serverId>
|
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
|
<skipStagingRepositoryClose>true</skipStagingRepositoryClose>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>doclint-java8-disable</id>
|
|
<activation>
|
|
<jdk>[1.8,)</jdk>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<configuration>
|
|
<additionalparam>-Xdoclint:none</additionalparam>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
|
|
<profile>
|
|
<id>assembly</id>
|
|
<modules>
|
|
<module>platform</module>
|
|
</modules>
|
|
</profile>
|
|
|
|
<profile>
|
|
<id>sign-artifacts</id>
|
|
<activation>
|
|
<property>
|
|
<name>performRelease</name>
|
|
<value>true</value>
|
|
</property>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
<version>1.6</version>
|
|
<executions>
|
|
<execution>
|
|
<id>sign-artifacts</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>sign</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<useAgent>false</useAgent>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
|
|
<profile>
|
|
<id>javacpp-platform-default</id>
|
|
<activation>
|
|
<property>
|
|
<name>!javacpp.platform</name>
|
|
</property>
|
|
</activation>
|
|
<properties>
|
|
<javacpp.platform>${os.name}-${os.arch}</javacpp.platform>
|
|
</properties>
|
|
</profile>
|
|
|
|
<profile>
|
|
<id>javacpp-platform-custom</id>
|
|
<activation>
|
|
<property>
|
|
<name>javacpp.platform</name>
|
|
</property>
|
|
</activation>
|
|
<properties>
|
|
<javacpp.platform.android-arm>${javacpp.platform}</javacpp.platform.android-arm>
|
|
<javacpp.platform.android-x86>${javacpp.platform}</javacpp.platform.android-x86>
|
|
<javacpp.platform.linux-x86>${javacpp.platform}</javacpp.platform.linux-x86>
|
|
<javacpp.platform.linux-x86_64>${javacpp.platform}</javacpp.platform.linux-x86_64>
|
|
<javacpp.platform.linux-armhf>${javacpp.platform}</javacpp.platform.linux-armhf>
|
|
<javacpp.platform.linux-ppc64le>${javacpp.platform}</javacpp.platform.linux-ppc64le>
|
|
<javacpp.platform.macosx-x86_64>${javacpp.platform}</javacpp.platform.macosx-x86_64>
|
|
<javacpp.platform.windows-x86>${javacpp.platform}</javacpp.platform.windows-x86>
|
|
<javacpp.platform.windows-x86_64>${javacpp.platform}</javacpp.platform.windows-x86_64>
|
|
</properties>
|
|
</profile>
|
|
|
|
<profile>
|
|
<id>javacpp-platform-host</id>
|
|
<activation>
|
|
<property>
|
|
<name>javacpp.platform.host</name>
|
|
</property>
|
|
</activation>
|
|
<properties>
|
|
<javacpp.platform>${os.name}-${os.arch}</javacpp.platform>
|
|
<javacpp.platform.android-arm>${os.name}-${os.arch}</javacpp.platform.android-arm>
|
|
<javacpp.platform.android-x86>${os.name}-${os.arch}</javacpp.platform.android-x86>
|
|
<javacpp.platform.linux-x86>${os.name}-${os.arch}</javacpp.platform.linux-x86>
|
|
<javacpp.platform.linux-x86_64>${os.name}-${os.arch}</javacpp.platform.linux-x86_64>
|
|
<javacpp.platform.linux-armhf>${os.name}-${os.arch}</javacpp.platform.linux-armhf>
|
|
<javacpp.platform.linux-ppc64le>${os.name}-${os.arch}</javacpp.platform.linux-ppc64le>
|
|
<javacpp.platform.macosx-x86_64>${os.name}-${os.arch}</javacpp.platform.macosx-x86_64>
|
|
<javacpp.platform.windows-x86>${os.name}-${os.arch}</javacpp.platform.windows-x86>
|
|
<javacpp.platform.windows-x86_64>${os.name}-${os.arch}</javacpp.platform.windows-x86_64>
|
|
</properties>
|
|
</profile>
|
|
|
|
<profile>
|
|
<id>javacpp-platform-none</id>
|
|
<activation>
|
|
<property>
|
|
<name>javacpp.platform.none</name>
|
|
</property>
|
|
</activation>
|
|
<properties>
|
|
<javacpp.platform></javacpp.platform>
|
|
<javacpp.platform.android-arm></javacpp.platform.android-arm>
|
|
<javacpp.platform.android-x86></javacpp.platform.android-x86>
|
|
<javacpp.platform.linux-x86></javacpp.platform.linux-x86>
|
|
<javacpp.platform.linux-x86_64></javacpp.platform.linux-x86_64>
|
|
<javacpp.platform.linux-armhf></javacpp.platform.linux-armhf>
|
|
<javacpp.platform.linux-ppc64le></javacpp.platform.linux-ppc64le>
|
|
<javacpp.platform.macosx-x86_64></javacpp.platform.macosx-x86_64>
|
|
<javacpp.platform.windows-x86></javacpp.platform.windows-x86>
|
|
<javacpp.platform.windows-x86_64></javacpp.platform.windows-x86_64>
|
|
</properties>
|
|
</profile>
|
|
|
|
<!-- Provide convenient profiles to set commonly used paths for Android -->
|
|
<profile>
|
|
<id>android-arm-default</id>
|
|
<activation>
|
|
<property>
|
|
<name>javacpp.platform</name>
|
|
<value>android-arm</value>
|
|
</property>
|
|
</activation>
|
|
<properties>
|
|
<javacpp.platform>android-arm</javacpp.platform>
|
|
<javacpp.platform.root>${user.home}/Android/android-ndk/</javacpp.platform.root>
|
|
<javacpp.platform.compiler>toolchains/arm-linux-androideabi-4.9/prebuilt/${os.name}-${os.arch}/bin/arm-linux-androideabi-g++</javacpp.platform.compiler>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>android-x86-default</id>
|
|
<activation>
|
|
<property>
|
|
<name>javacpp.platform</name>
|
|
<value>android-x86</value>
|
|
</property>
|
|
</activation>
|
|
<properties>
|
|
<javacpp.platform>android-x86</javacpp.platform>
|
|
<javacpp.platform.root>${user.home}/Android/android-ndk/</javacpp.platform.root>
|
|
<javacpp.platform.compiler>toolchains/x86-4.9/prebuilt/${os.name}-${os.arch}/bin/i686-linux-android-g++</javacpp.platform.compiler>
|
|
</properties>
|
|
</profile>
|
|
|
|
<!-- If someone knows a better way to do this, please do let me know! -->
|
|
<profile>
|
|
<id>linux</id>
|
|
<activation>
|
|
<os><name>linux</name></os>
|
|
</activation>
|
|
<properties>
|
|
<os.name>linux</os.name>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>macosx</id>
|
|
<activation>
|
|
<os><name>mac os x</name></os>
|
|
</activation>
|
|
<properties>
|
|
<os.name>macosx</os.name>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>windows</id>
|
|
<activation>
|
|
<os><family>windows</family></os>
|
|
</activation>
|
|
<properties>
|
|
<os.name>windows</os.name>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>i386</id>
|
|
<activation>
|
|
<os><arch>i386</arch></os>
|
|
</activation>
|
|
<properties>
|
|
<os.arch>x86</os.arch>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>i486</id>
|
|
<activation>
|
|
<os><arch>i486</arch></os>
|
|
</activation>
|
|
<properties>
|
|
<os.arch>x86</os.arch>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>i586</id>
|
|
<activation>
|
|
<os><arch>i586</arch></os>
|
|
</activation>
|
|
<properties>
|
|
<os.arch>x86</os.arch>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>i686</id>
|
|
<activation>
|
|
<os><arch>i686</arch></os>
|
|
</activation>
|
|
<properties>
|
|
<os.arch>x86</os.arch>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>amd64</id>
|
|
<activation>
|
|
<os><arch>amd64</arch></os>
|
|
</activation>
|
|
<properties>
|
|
<os.arch>x86_64</os.arch>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>x86-64</id>
|
|
<activation>
|
|
<os><arch>x86-64</arch></os>
|
|
</activation>
|
|
<properties>
|
|
<os.arch>x86_64</os.arch>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
</project>
|