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, 7250👍, 0💬
Popular Posts:
What is XPS or OXPS? XPS stands for for XML Paper Specification. OXPS stands for for Open XML Paper ...
What is MSG? MSG, short name for Message, is used as the file extension for Outlook Message Item fil...
What is CS? CS, short name for C Sharp, is used as the file extension for C# (C Sharp) files. .CS fi...
What is MDB? MDB, short name for Microsoft Database, is used as the file extension for Microsoft Acc...
What is XLSB? XLSB, short name for Excel Spreadsheet Binary, is used as the file extension for sprea...