Categories:
Android (1)
Audio (7)
C/C++ (2)
Compression (7)
Database (6)
Document (14)
Email (3)
General (50)
Graphics (17)
Image (8)
Java (1)
Picture (1)
Presentation (7)
Programming (17)
Spreadsheet (11)
Video (8)
Web (13)
Windows (63)
XML (4)
Other Resources:
.POM - File Extension for Project Object Model Files
What is POM? POM, short name for Project Object Model, is used as the file extension for Project Object Model files used by Apache Maven projects. .POM files are XML files that can be opened by any XML editors. See the sample .POM file included below.
✍: FYIcenter.com
File Extension: .POM
MIME Type: text/xml
File Content: Project Object Model
.POM files are Project Object Model files used by Apache Maven projects. Here is a sample .POM Project Object Model file:
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.apache.ant</groupId>
<artifactId>ant-parent</artifactId>
<relativePath>../pom.xml</relativePath>
<version>1.8.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.ant</groupId>
<artifactId>ant-launcher</artifactId>
<version>1.8.3</version>
<name>Apache Ant Launcher</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.4</source>
<target>1.4</target>
<includes>
<include>org/apache/tools/ant/launch/*.java</include>
</includes>
</configuration>
</plugin>
</plugins>
<sourceDirectory>../../../../src/main</sourceDirectory>
<testSourceDirectory>../../../../src/testcases</testSourceDirectory>
<outputDirectory>../../../../target/ant-launcher/classes</outputDirectory>
<testOutputDirectory>../../../../target/ant-launcher/testcases
</testOutputDirectory>
<directory>../../../../target/ant-launcher</directory>
</build>
</project>
.POM Project Object Model file sample: Click sample.pom to download.
Since .POM files are in text format, you can use Notepad or any text editor to create or modify them. No special software is needed.
For for information on how to use .POM Project Object Model files, see links below:
2012-07-10, 7795👍, 0💬
Popular Posts:
What is WMF or EMF? WMF stands for Windows Metafile. EMF stands for Enhanced Windows Metafile WMF or...
File extension CLASS is used for Java compiled class files. A CLASS sample file is provided. Free JV...
What is MHT or MHTML? MHT or MHTML, short name for MIME HTML, is used as the file extension for MIME...
File extension EXE is used for executable files ready to be executed on computer systems. An EXE sam...
What is TIF or TIFF? TIFF, short name for Tagged Image File Format, is used as the file extension fo...