|
| 1 | +<!-- |
| 2 | +
|
| 3 | + Copyright the State of the Netherlands |
| 4 | +
|
| 5 | + This program is free software: you can redistribute it and/or modify |
| 6 | + it under the terms of the GNU Affero General Public License as published by |
| 7 | + the Free Software Foundation, either version 3 of the License, or |
| 8 | + (at your option) any later version. |
| 9 | +
|
| 10 | + This program is distributed in the hope that it will be useful, |
| 11 | + but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | + GNU Affero General Public License for more details. |
| 14 | +
|
| 15 | + You should have received a copy of the GNU Affero General Public License |
| 16 | + along with this program. If not, see http://www.gnu.org/licenses/. |
| 17 | +
|
| 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 | + <groupId>nl.aerius</groupId> |
| 23 | + <artifactId>github-actions-test</artifactId> |
| 24 | + <version>1.0.0-SNAPSHOT</version> |
| 25 | + |
| 26 | + <name>github-actions-test</name> |
| 27 | + |
| 28 | + <distributionManagement> |
| 29 | + <repository> |
| 30 | + <id>aerius-nexus</id> |
| 31 | + <url>https://nexus.aerius.nl/repository/maven-releases/</url> |
| 32 | + </repository> |
| 33 | + <snapshotRepository> |
| 34 | + <id>aerius-nexus</id> |
| 35 | + <url>https://nexus.aerius.nl/repository/maven-snapshots/</url> |
| 36 | + </snapshotRepository> |
| 37 | + </distributionManagement> |
| 38 | + |
| 39 | + <repositories> |
| 40 | + <repository> |
| 41 | + <id>aerius-nexus-public</id> |
| 42 | + <name>AERIUS Nexus repository</name> |
| 43 | + <url>https://nexus.aerius.nl/repository/maven-public/</url> |
| 44 | + </repository> |
| 45 | + </repositories> |
| 46 | + <pluginRepositories> |
| 47 | + <pluginRepository> |
| 48 | + <id>aerius-nexus-public</id> |
| 49 | + <name>AERIUS Nexus Repository</name> |
| 50 | + <url>https://nexus.aerius.nl/repository/maven-public/</url> |
| 51 | + </pluginRepository> |
| 52 | + </pluginRepositories> |
| 53 | + |
| 54 | + <build> |
| 55 | + <pluginManagement> |
| 56 | + <plugins> |
| 57 | + <plugin> |
| 58 | + <groupId>org.apache.maven.plugins</groupId> |
| 59 | + <artifactId>maven-jar-plugin</artifactId> |
| 60 | + <version>3.5.0</version> |
| 61 | + <configuration> |
| 62 | + <archive> |
| 63 | + <manifest> |
| 64 | + <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
| 65 | + </manifest> |
| 66 | + </archive> |
| 67 | + </configuration> |
| 68 | + </plugin> |
| 69 | + </plugins> |
| 70 | + </pluginManagement> |
| 71 | + </build> |
| 72 | +</project> |
0 commit comments