|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | + |
| 3 | +<!-- |
| 4 | +Licensed to the Apache Software Foundation (ASF) under one |
| 5 | +or more contributor license agreements. See the NOTICE file |
| 6 | +distributed with this work for additional information |
| 7 | +regarding copyright ownership. The ASF licenses this file |
| 8 | +to you under the Apache License, Version 2.0 (the |
| 9 | +"License"); you may not use this file except in compliance |
| 10 | +with the License. You may obtain a copy of the License at |
| 11 | +
|
| 12 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | +
|
| 14 | +Unless required by applicable law or agreed to in writing, |
| 15 | +software distributed under the License is distributed on an |
| 16 | +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 17 | +KIND, either express or implied. See the License for the |
| 18 | +specific language governing permissions and limitations |
| 19 | +under the License. |
| 20 | +--> |
| 21 | + |
| 22 | +<!-- START SNIPPET: superpom --> |
| 23 | +<project> |
| 24 | + <modelVersion>4.0.0</modelVersion> |
| 25 | + |
| 26 | + <properties> |
| 27 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 28 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 29 | + <!-- Fixed date for reproducible build --> |
| 30 | + <project.build.outputTimestamp>1980-02-01T00:00:00Z</project.build.outputTimestamp> |
| 31 | + </properties> |
| 32 | + |
| 33 | + <build> |
| 34 | + <directory>${project.basedir}/target</directory> |
| 35 | + <outputDirectory>${project.build.directory}/classes</outputDirectory> |
| 36 | + <finalName>${project.artifactId}-${project.version}</finalName> |
| 37 | + <testOutputDirectory>${project.build.directory}/test-classes</testOutputDirectory> |
| 38 | + <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory> |
| 39 | + <scriptSourceDirectory>${project.basedir}/src/main/scripts</scriptSourceDirectory> |
| 40 | + <testSourceDirectory>${project.basedir}/src/test/java</testSourceDirectory> |
| 41 | + <resources> |
| 42 | + <resource> |
| 43 | + <directory>${project.basedir}/src/main/resources</directory> |
| 44 | + </resource> |
| 45 | + <resource> |
| 46 | + <directory>${project.basedir}/src/main/resources-filtered</directory> |
| 47 | + <filtering>true</filtering> |
| 48 | + </resource> |
| 49 | + </resources> |
| 50 | + <testResources> |
| 51 | + <testResource> |
| 52 | + <directory>${project.basedir}/src/test/resources</directory> |
| 53 | + </testResource> |
| 54 | + <testResource> |
| 55 | + <directory>${project.basedir}/src/test/resources-filtered</directory> |
| 56 | + <filtering>true</filtering> |
| 57 | + </testResource> |
| 58 | + </testResources> |
| 59 | + </build> |
| 60 | + |
| 61 | + <reporting> |
| 62 | + <outputDirectory>${project.build.directory}/site</outputDirectory> |
| 63 | + </reporting> |
| 64 | + |
| 65 | +</project> |
| 66 | +<!-- END SNIPPET: superpom --> |
0 commit comments