|
| 1 | +<!-- |
| 2 | +This file is part of CRC64Java. |
| 3 | +
|
| 4 | +CRC64Java is free software: you can redistribute it and/or modify |
| 5 | +it under the terms of the GNU General Public License as published by |
| 6 | +the Free Software Foundation, either version 3 of the License, or |
| 7 | +(at your option) any later version. |
| 8 | +
|
| 9 | +CRC64Java is distributed in the hope that it will be useful, |
| 10 | +but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | +GNU General Public License for more details. |
| 13 | +
|
| 14 | +You should have received a copy of the GNU General Public License |
| 15 | +along with Foobar. If not, see <http://www.gnu.org/licenses />. |
| 16 | +
|
| 17 | +See crc64.h for a separate Copyright and license notice. |
| 18 | +--> |
| 19 | +<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/xsd/maven-4.0.0.xsd"> |
| 20 | + <modelVersion>4.0.0</modelVersion> |
| 21 | + |
| 22 | + <parent> |
| 23 | + <groupId>biz.karms.crc64java</groupId> |
| 24 | + <artifactId>crc64java-parent</artifactId> |
| 25 | + <version>1.0.8-SNAPSHOT</version> |
| 26 | + <relativePath>../</relativePath> |
| 27 | + </parent> |
| 28 | + |
| 29 | + <artifactId>crc64java-mac-x86_64</artifactId> |
| 30 | + <version>1.0.8-SNAPSHOT</version> |
| 31 | + |
| 32 | + <packaging>jar</packaging> |
| 33 | + |
| 34 | + <build> |
| 35 | + <plugins> |
| 36 | + <plugin> |
| 37 | + <groupId>org.apache.maven.plugins</groupId> |
| 38 | + <artifactId>maven-deploy-plugin</artifactId> |
| 39 | + <configuration> |
| 40 | + <skip>false</skip> |
| 41 | + </configuration> |
| 42 | + </plugin> |
| 43 | + <plugin> |
| 44 | + <groupId>org.codehaus.mojo</groupId> |
| 45 | + <artifactId>exec-maven-plugin</artifactId> |
| 46 | + <executions> |
| 47 | + <execution> |
| 48 | + <goals> |
| 49 | + <goal>exec</goal> |
| 50 | + </goals> |
| 51 | + <phase>generate-resources</phase> |
| 52 | + </execution> |
| 53 | + </executions> |
| 54 | + <configuration> |
| 55 | + <executable>gmake</executable> |
| 56 | + </configuration> |
| 57 | + </plugin> |
| 58 | + </plugins> |
| 59 | + </build> |
| 60 | +</project> |
0 commit comments