github.com/jfrog/jfrog-cli-core/v2@v2.52.0/tests/testdata/maven-example-with-many-types/pom.xml (about)

     1  <project xmlns="http://maven.apache.org/POM/4.0.0"
     2           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      <groupId>org.jfrog</groupId>
     7      <artifactId>cli-test</artifactId>
     8      <version>1.0</version>
     9      <packaging>jar</packaging>
    10  
    11      <name>cli-test</name>
    12      <url>http://maven.apache.org</url>
    13  
    14      <properties>
    15          <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    16          <java.version>1.8</java.version>
    17      </properties>
    18  
    19      <build>
    20          <plugins>
    21              <plugin>
    22                  <groupId>org.apache.maven.plugins</groupId>
    23                  <artifactId>maven-compiler-plugin</artifactId>
    24                  <version>3.1</version>
    25                  <configuration>
    26                      <source>${java.version}</source>
    27                      <target>${java.version}</target>
    28                  </configuration>
    29              </plugin>
    30          </plugins>
    31      </build>
    32  
    33      <dependencies>
    34          <dependency>
    35              <groupId>junit</groupId>
    36              <artifactId>junit</artifactId>
    37              <version>4.11</version>
    38              <scope>test</scope>
    39          </dependency>
    40          <dependency>
    41              <groupId>commons-io</groupId>
    42              <artifactId>commons-io</artifactId>
    43              <version>1.2</version>
    44              <scope>test</scope>
    45          </dependency>
    46          <dependency>
    47              <groupId>org.webjars</groupId>
    48              <artifactId>lodash</artifactId>
    49              <version>4.17.21</version>
    50              <type>pom</type>
    51          </dependency>
    52      </dependencies>
    53  </project>