|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <groupId>org.codehaus.mojo.license.test</groupId> |
| 7 | + <artifactId>test-ISSUE-145-2</artifactId> |
| 8 | + <version>@pom.version@</version> |
| 9 | + <name>License Test :: ISSUE-145-2</name> |
| 10 | + <packaging>pom</packaging> |
| 11 | + |
| 12 | + <licenses> |
| 13 | + <license> |
| 14 | + <name>The GNU Lesser General Public License, Version 3.0</name> |
| 15 | + <url>http://www.gnu.org/licenses/lgpl-3.0.txt</url> |
| 16 | + <distribution>repo</distribution> |
| 17 | + </license> |
| 18 | + </licenses> |
| 19 | + |
| 20 | + <properties> |
| 21 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 22 | + <license.verbose>true</license.verbose> |
| 23 | + <license.sortByGroupIdAndArtifactId>true</license.sortByGroupIdAndArtifactId> |
| 24 | + <licensesOutputFile>${project.build.directory}/licenses.xml</licensesOutputFile> |
| 25 | + </properties> |
| 26 | + |
| 27 | + <modules> |
| 28 | + <module>submodule1</module> |
| 29 | + <module>submodule2</module> |
| 30 | + <module>submodule3</module> |
| 31 | + <module>submodule4</module> |
| 32 | + </modules> |
| 33 | + |
| 34 | + <build> |
| 35 | + <plugins> |
| 36 | + <plugin> |
| 37 | + <groupId>org.codehaus.mojo</groupId> |
| 38 | + <artifactId>license-maven-plugin</artifactId> |
| 39 | + </plugin> |
| 40 | + <plugin> |
| 41 | + <groupId>org.apache.maven.plugins</groupId> |
| 42 | + <artifactId>maven-compiler-plugin</artifactId> |
| 43 | + <version>3.8.0</version> |
| 44 | + </plugin> |
| 45 | + </plugins> |
| 46 | + |
| 47 | + <pluginManagement> |
| 48 | + <plugins> |
| 49 | + <plugin> |
| 50 | + <groupId>org.codehaus.mojo</groupId> |
| 51 | + <artifactId>license-maven-plugin</artifactId> |
| 52 | + <version>@pom.version@</version> |
| 53 | + <executions> |
| 54 | + <execution> |
| 55 | + <id>aggregate-add-third-party</id> |
| 56 | + <goals> |
| 57 | + <goal>aggregate-add-third-party</goal> |
| 58 | + </goals> |
| 59 | + </execution> |
| 60 | + </executions> |
| 61 | + </plugin> |
| 62 | + </plugins> |
| 63 | + </pluginManagement> |
| 64 | + </build> |
| 65 | + |
| 66 | +</project> |
0 commit comments