| <?xml version="1.0" encoding="UTF-8"?> | |
| <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"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>openwhisk.example.maven</groupId> | |
| <artifactId>maven-java</artifactId> | |
| <name>OpenWhisk::Examples::Maven with External Deps</name> | |
| <version>1.0-SNAPSHOT</version> | |
| <url>https://openwhisk.apache.org/</url> | |
| <build> | |
| <finalName>maven-java</finalName> | |
| <plugins> | |
| <plugin> | |
| <artifactId>maven-shade-plugin</artifactId> | |
| <version>3.1.0</version> | |
| <executions> | |
| <execution> | |
| <phase>package</phase> | |
| <goals> | |
| <goal>shade</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| <properties> | |
| <maven.compiler.source>1.8</maven.compiler.source> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| <maven.compiler.target>1.8</maven.compiler.target> | |
| </properties> | |
| </project> | |