github.com/emc-advanced-dev/unik@v0.0.0-20190717152701-a58d3e8e33b7/containers/utils/vsphere-client/pom.xml (about)

     1  <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     2    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     3    <modelVersion>4.0.0</modelVersion>
     4  
     5    <groupId>com.emc.unik</groupId>
     6    <artifactId>vsphere-client</artifactId>
     7    <version>1.0-SNAPSHOT</version>
     8    <packaging>jar</packaging>
     9  
    10    <name>vsphere-client</name>
    11    <url>http://maven.apache.org</url>
    12  
    13    <properties>
    14      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    15    </properties>
    16  
    17    <dependencies>
    18      <dependency>
    19        <groupId>com.vmware</groupId>
    20        <artifactId>vijava</artifactId>
    21        <version>5.1</version>
    22      </dependency>
    23  
    24      <dependency>
    25        <groupId>junit</groupId>
    26        <artifactId>junit</artifactId>
    27        <version>3.8.1</version>
    28        <scope>test</scope>
    29      </dependency>
    30    </dependencies>
    31  
    32    <build>
    33      <plugins>
    34        <plugin>
    35          <groupId>org.apache.maven.plugins</groupId>
    36          <artifactId>maven-compiler-plugin</artifactId>
    37          <configuration>
    38            <source>1.7</source>
    39            <target>1.7</target>
    40          </configuration>
    41        </plugin>
    42        <plugin>
    43          <groupId>org.apache.maven.plugins</groupId>
    44          <artifactId>maven-jar-plugin</artifactId>
    45          <version>2.2</version>
    46          <!-- nothing here -->
    47        </plugin>
    48        <plugin>
    49          <groupId>org.apache.maven.plugins</groupId>
    50          <artifactId>maven-assembly-plugin</artifactId>
    51          <version>2.2-beta-4</version>
    52          <configuration>
    53            <descriptorRefs>
    54              <descriptorRef>jar-with-dependencies</descriptorRef>
    55            </descriptorRefs>
    56            <archive>
    57              <manifest>
    58                <mainClass>com.emc.unik.VmAttachDisk</mainClass>
    59              </manifest>
    60            </archive>
    61          </configuration>
    62          <executions>
    63            <execution>
    64              <phase>package</phase>
    65              <goals>
    66                <goal>single</goal>
    67              </goals>
    68            </execution>
    69          </executions>
    70        </plugin>
    71      </plugins>
    72    </build>
    73  
    74  </project>