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