github.com/jfrog/frogbot@v1.1.1-0.20231221090046-821a26f50338/testdata/projects/maven/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>org.codehaus.plexus</groupId> 60 <artifactId>plexus-utils</artifactId> 61 <version>1.5.1</version> 62 </dependency> 63 <dependency> 64 <groupId>commons-io</groupId> 65 <artifactId>commons-io</artifactId> 66 <version>1.4</version> 67 </dependency> 68 <dependency> 69 <groupId>org.springframework</groupId> 70 <artifactId>spring-aop</artifactId> 71 <version>2.5.6</version> 72 </dependency> 73 </dependencies> 74 75 </project>