Download this file

pve2-java-client-0.0.1-20140909.014448-1.pom    67 lines (63 with data), 2.1 kB

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>pve2-api-java-master</groupId>
	<artifactId>pve2-java-client</artifactId>
	<version>0.0.1-SNAPSHOT</version>

	<properties>
		<tomcat.dir>/home/theguru/WebServers/apache-tomcat-7.0.39</tomcat.dir>
		<local.repo1>${project.build.directory}/../dpes-mvn-libs</local.repo1>
		<local.repo>/home/theguru/git/preservation-manager/dpes-mvn-libs</local.repo>
	</properties>

	<distributionManagement>
    <repository>
        <id>internal.repo</id>
        <name>Temporary Staging Repository</name>
        <url>file://${local.repo}</url>
    </repository>
</distributionManagement>

	<dependencies>
		<dependency>
			<groupId>commons-codec</groupId>
			<artifactId>commons-codec</artifactId>
			<version>1.4</version>
		</dependency>
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpclient</artifactId>
			<version>4.1.3</version>
		</dependency>
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpmime</artifactId>
			<version>4.1.3</version>
		</dependency>
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpclient-cache</artifactId>
			<version>4.1.3</version>
		</dependency>
		<dependency>
			<groupId>commons-httpclient</groupId>
			<artifactId>commons-httpclient</artifactId>
			<version>3.1</version>
		</dependency>
		<dependency>
			<groupId>org.json</groupId>
			<artifactId>json</artifactId>
			<version>20140107</version>
		</dependency>
	</dependencies>
	<build>
<plugins>
    <plugin>
        <artifactId>maven-deploy-plugin</artifactId>
        <version>2.8.1</version>
        <configuration>
            <altDeploymentRepository>internal.repo::default::file://${local.repo}</altDeploymentRepository>
            <uniqueVersion>false</uniqueVersion>
        </configuration>
    </plugin>
</plugins>
</build>
	
</project>