<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>CreateTempFile</groupId> <artifactId>CreateTempFile</artifactId> <version>0.0.1-SNAPSHOT</version> <name>CreateTempFIle</name> <description>Test for Creating a temporary file</description> <build> <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>com.perforce.jbrown.ctf.CreateTempFile</mainClass> </manifest> </archive> </configuration> </plugin> </plugins> </build> <dependencies> </dependencies> </project>
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 19991 | Joel Brown |
Example to create a Temp File. P4Java does not throw an exception when a temp file for a sync cannot be created. |