| <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"> | |
| <parent> | |
| <artifactId>org.eclipse.uomo.bundles</artifactId> | |
| <groupId>org.eclipse.uomo</groupId> | |
| <version>1.0.0-SNAPSHOT</version> | |
| </parent> | |
| <modelVersion>4.0.0</modelVersion> | |
| <artifactId>org.eclipse.uomo.xml</artifactId> | |
| <name>UOMo XML</name> | |
| <packaging>eclipse-plugin</packaging> | |
| <!-- ======================================================= --> | |
| <!-- Build Settings --> | |
| <!-- ======================================================= --> | |
| <build> | |
| <plugins> | |
| <!-- ======================================================= --> | |
| <!-- Compilation --> | |
| <!-- ======================================================= --> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <version>2.3.2</version> | |
| <configuration> | |
| <source>${project.build.javaVersion}</source> | |
| <target>${project.build.javaVersion}</target> | |
| <encoding>${project.build.sourceEncoding}</encoding> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| <dependencies> | |
| <dependency> | |
| <groupId>commons-lang</groupId> | |
| <artifactId>commons-lang</artifactId> | |
| <version>2.6</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>xerces</groupId> | |
| <artifactId>xercesImpl</artifactId> | |
| <version>2.12.1</version> | |
| </dependency> | |
| <dependency> | |
| <artifactId>xpp3_min</artifactId> | |
| <groupId>xpp3</groupId> | |
| <version>1.1.3.4.O</version> | |
| </dependency> | |
| </dependencies> | |
| </project> |