github.com/ouraigua/jenkins-library@v0.0.0-20231028010029-fbeaf2f3aa9b/integration/testdata/TestMtaIntegration/maven-spring/integration-tests/pom.xml (about) 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 <parent> 7 <groupId>mygroup</groupId> 8 <artifactId>mymvn</artifactId> 9 <version>1.0-SNAPSHOT</version> 10 </parent> 11 12 <groupId>mygroup</groupId> 13 <artifactId>mymvn-integration-tests</artifactId> 14 <version>1.0-SNAPSHOT</version> 15 16 <dependencies> 17 <dependency> 18 <groupId>mygroup</groupId> 19 <artifactId>mymvn-app</artifactId> 20 <version>1.0-SNAPSHOT</version> 21 <exclusions> 22 <exclusion> 23 <groupId>ch.qos.logback</groupId> 24 <artifactId>logback-classic</artifactId> 25 </exclusion> 26 </exclusions> 27 </dependency> 28 </dependencies> 29 30 </project>