github.com/jfrog/jfrog-cli-core/v2@v2.51.0/tests/testdata/maven-example-with-wrapper/multi1/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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 3 <modelVersion>4.0.0</modelVersion> 4 <parent> 5 <groupId>org.jfrog.test</groupId> 6 <artifactId>multi</artifactId> 7 <version>3.7-SNAPSHOT</version> 8 </parent> 9 10 <artifactId>multi1</artifactId> 11 <packaging>jar</packaging> 12 <name>Multi 1</name> 13 14 <licenses> 15 <license> 16 <name>apache</name> 17 <comments>none</comments> 18 </license> 19 </licenses> 20 21 <build> 22 <plugins> 23 <plugin> 24 <groupId>org.apache.maven.plugins</groupId> 25 <artifactId>maven-source-plugin</artifactId> 26 <executions> 27 <execution> 28 <id>attach-sources</id> 29 <goals> 30 <goal>jar</goal> 31 </goals> 32 </execution> 33 </executions> 34 </plugin> 35 <!-- deploy test jar --> 36 <plugin> 37 <groupId>org.apache.maven.plugins</groupId> 38 <artifactId>maven-jar-plugin</artifactId> 39 <executions> 40 <execution> 41 <goals> 42 <goal>test-jar</goal> 43 </goals> 44 </execution> 45 </executions> 46 </plugin> 47 </plugins> 48 </build> 49 50 <dependencies> 51 <dependency> 52 <groupId>org.apache.commons</groupId> 53 <artifactId>commons-email</artifactId> 54 <version>1.1</version> 55 <scope>compile</scope> 56 </dependency> 57 <dependency> 58 <groupId>org.codehaus.plexus</groupId> 59 <artifactId>plexus-utils</artifactId> 60 <version>1.5.1</version> 61 </dependency> 62 <dependency> 63 <groupId>javax.servlet.jsp</groupId> 64 <artifactId>jsp-api</artifactId> 65 <version>2.1</version> 66 <scope>compile</scope> 67 </dependency> 68 <dependency> 69 <groupId>commons-io</groupId> 70 <artifactId>commons-io</artifactId> 71 <version>1.4</version> 72 </dependency> 73 <dependency> 74 <groupId>org.springframework</groupId> 75 <artifactId>spring-aop</artifactId> 76 <version>2.5.6</version> 77 </dependency> 78 79 <!-- dependency with classifier --> 80 <dependency> 81 <groupId>org.testng</groupId> 82 <artifactId>testng</artifactId> 83 <classifier>jdk15</classifier> 84 <version>5.9</version> 85 <scope>test</scope> 86 </dependency> 87 </dependencies> 88 89 </project>