github.com/verrazzano/verrazzano@v1.7.1/tests/testdata/test-applications/weblogic/hello-weblogic/pom.xml (about) 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!-- Copyright (c) 2022, Oracle and/or its affiliates. --> 3 <!-- Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. --> 4 <project xmlns="http://maven.apache.org/POM/4.0.0" 5 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 6 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 7 <modelVersion>4.0.0</modelVersion> 8 9 <groupId>io.verrazzano.weblogic.samples</groupId> 10 <artifactId>hello</artifactId> 11 <version>0.1-SNAPSHOT</version> 12 <packaging>war</packaging> 13 <name>hello</name> 14 15 <properties> 16 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 17 </properties> 18 19 <dependencies> 20 <dependency> 21 <groupId>javax.ws.rs</groupId> 22 <artifactId>javax.ws.rs-api</artifactId> 23 <version>2.1.1</version> 24 <scope>provided</scope> 25 </dependency> 26 </dependencies> 27 28 <build> 29 <finalName>hello</finalName> 30 <plugins> 31 <plugin> 32 <groupId>org.apache.maven.plugins</groupId> 33 <artifactId>maven-compiler-plugin</artifactId> 34 <version>3.8.1</version> 35 <configuration> 36 <source>1.8</source> 37 <target>1.8</target> 38 </configuration> 39 </plugin> 40 41 <plugin> 42 <groupId>org.apache.maven.plugins</groupId> 43 <artifactId>maven-war-plugin</artifactId> 44 <version>3.3.0</version> 45 <configuration> 46 <failOnMissingWebXml>false</failOnMissingWebXml> 47 </configuration> 48 </plugin> 49 </plugins> 50 </build> 51 52 </project>