mirror of https://github.com/apache/cloudstack.git
Fix pom problems causing compilation failures. No master pom was set and this module uses maven standard directory locations
This commit is contained in:
parent
c2078cd60c
commit
34b6a395ce
|
|
@ -21,16 +21,39 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>rdpclient</groupId>
|
||||
<artifactId>cloudstack-service-console-proxy-rdpclient</artifactId>
|
||||
<version>4.3.0-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>Apache CloudStack Console Proxy - RDP Client</name>
|
||||
<url>http://maven.apache.org</url>
|
||||
|
||||
<parent>
|
||||
<groupId>org.apache.cloudstack</groupId>
|
||||
<artifactId>cloudstack-services</artifactId>
|
||||
<version>4.3.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<!-- not parenting to the maven-default pom, as we want this in services -->
|
||||
<build>
|
||||
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
|
||||
<scriptSourceDirectory>${basedir}/src/main/scripts</scriptSourceDirectory>
|
||||
<testSourceDirectory>${basedir}/src/test/java</testSourceDirectory>
|
||||
<outputDirectory>${basedir}/target/classes</outputDirectory>
|
||||
<testOutputDirectory>${basedir}/target/test-classes</testOutputDirectory>
|
||||
<resources>
|
||||
<resource>
|
||||
<directory>${basedir}/src/main/resources</directory>
|
||||
</resource>
|
||||
</resources>
|
||||
<testResources>
|
||||
<testResource>
|
||||
<directory>${basedir}/src/test/resources</directory>
|
||||
</testResource>
|
||||
</testResources>
|
||||
</build>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
|
|
|
|||
Loading…
Reference in New Issue