Categories:
Android (1)
Audio (11)
C/C++ (3)
Compression (10)
Database (6)
Document (16)
Email (3)
General (53)
Graphics (17)
Image (12)
Java (7)
Music (2)
Picture (5)
Presentation (7)
Programming (24)
Spreadsheet (11)
Video (8)
Web (15)
Windows (69)
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, 5210👍, 0💬
Popular Posts:
What is PFB? PFB, short name for Printer Font Binary, is used as the file extension for Printer Font...
What is EML? EML, short name for Email, is used as the file extension for Email Message files. .EML ...
What is TIF or TIFF? TIFF, short name for Tagged Image File Format, is used as the file extension fo...
What is DOT? DOT, short name for Document Template, is used as the file extension for files in Micro...
What is PRN? PRN, short name for Printable, is used as the file extension for files padded with spac...