Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@edipofederle
Created February 6, 2013 20:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edipofederle/4725314 to your computer and use it in GitHub Desktop.
Save edipofederle/4725314 to your computer and use it in GitHub Desktop.
pom file to uml2. ecore... etc
<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>XXXX</groupId>
<artifactId>XXXX</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>arch</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.birt.runtime</groupId>
<artifactId>org.eclipse.core.resources</artifactId>
<version>3.8.1.v20120802-154922</version>
</dependency>
<dependency>
<groupId>org.eclipse.birt.runtime</groupId>
<artifactId>org.eclipse.core.runtime</artifactId>
<version>3.8.0.v20120521-2346</version>
</dependency>
<dependency>
<groupId>org.eclipse.birt.runtime</groupId>
<artifactId>org.eclipse.emf.ecore</artifactId>
<version>2.8.0.v20120606-0717</version>
</dependency>
<dependency>
<groupId>org.eclipse.birt.runtime</groupId>
<artifactId>org.eclipse.emf.ecore.xmi</artifactId>
<version>2.8.0.v20120911-0500</version>
</dependency>
<dependency>
<groupId>org.eclipse.emf</groupId>
<artifactId>org.eclipse.emf.mapping.ecore2xml</artifactId>
<version>2.5.0.v20100521-1847</version>
</dependency>
<dependency>
<groupId>org.uml2.profile.l3</groupId>
<artifactId>uml2-profilel3</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>org.uml2.profile.l2</groupId>
<artifactId>uml2-profilel2</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>org.uml2.uml24</groupId>
<artifactId>uml2-uml24</artifactId>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>org.uml2.common </groupId>
<artifactId>uml2-common</artifactId>
<version>1.7.0</version>
</dependency>
<dependency>
<groupId>org.uml2.types</groupId>
<artifactId>uml2-types</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>org.eclipse.birt.runtime</groupId>
<artifactId>org.eclipse.emf.common</artifactId>
<version>2.8.0.v20120606-0717</version>
</dependency>
<dependency>
<groupId>org.uml2.resources4 </groupId>
<artifactId>uml2-resources</artifactId>
<version>4.0.0</version>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5.2</version>
</plugin>
</plugins>
</reporting>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment