github.com/jfrog/jfrog-cli-go@v1.22.1-0.20200318093948-4826ef344ffd/testsdata/mavenproject/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      </dependencies>
    41  </project>