|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + Licensed to the Apache Software Foundation (ASF) under one |
| 4 | + or more contributor license agreements. See the NOTICE file |
| 5 | + distributed with this work for additional information |
| 6 | + regarding copyright ownership. The ASF licenses this file |
| 7 | + to you under the Apache License, Version 2.0 (the |
| 8 | + "License"); you may not use this file except in compliance |
| 9 | + with the License. You may obtain a copy of the License at |
| 10 | +
|
| 11 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | +
|
| 13 | + Unless required by applicable law or agreed to in writing, |
| 14 | + software distributed under the License is distributed on an |
| 15 | + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | + KIND, either express or implied. See the License for the |
| 17 | + specific language governing permissions and limitations |
| 18 | + under the License. |
| 19 | +--> |
| 20 | +<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"> |
| 21 | + <modelVersion>4.0.0</modelVersion> |
| 22 | + <groupId>org.apache.maven.plugins</groupId> |
| 23 | + <artifactId>MCOMPILER-525-no-recreation</artifactId> |
| 24 | + <name>MCOMPILER-525-no-recreation</name> |
| 25 | + <packaging>jar</packaging> |
| 26 | + <version>1.0-SNAPSHOT</version> |
| 27 | + |
| 28 | + <build> |
| 29 | + <plugins> |
| 30 | + <plugin> |
| 31 | + <groupId>org.apache.maven.plugins</groupId> |
| 32 | + <artifactId>maven-compiler-plugin</artifactId> |
| 33 | + <version>@project.version@</version> |
| 34 | + </plugin> |
| 35 | + <plugin> |
| 36 | + <groupId>org.apache.maven.plugins</groupId> |
| 37 | + <artifactId>maven-jar-plugin</artifactId> |
| 38 | + <version>3.3.0</version> |
| 39 | + </plugin> |
| 40 | + <plugin> |
| 41 | + <groupId>org.apache.maven.plugins</groupId> |
| 42 | + <artifactId>maven-antrun-plugin</artifactId> |
| 43 | + <version>3.1.0</version> |
| 44 | + <executions> |
| 45 | + <execution> |
| 46 | + <id>touch</id> |
| 47 | + <phase>integration-test</phase> |
| 48 | + <goals> |
| 49 | + <goal>run</goal> |
| 50 | + </goals> |
| 51 | + <configuration> |
| 52 | + <target> |
| 53 | + <!-- Save the JAR and especially its timestamp for evaluation by the post-build hook script --> |
| 54 | + <copy file="target/MCOMPILER-525-no-recreation-1.0-SNAPSHOT.jar" |
| 55 | + tofile="target/reference.jar" |
| 56 | + preservelastmodified="true" overwrite="true"/> |
| 57 | + </target> |
| 58 | + </configuration> |
| 59 | + </execution> |
| 60 | + </executions> |
| 61 | + </plugin> |
| 62 | + </plugins> |
| 63 | + </build> |
| 64 | +</project> |
0 commit comments