[1759] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
---|
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
---|
| 3 | <parent>
|
---|
| 4 | <groupId>de.ugoe.cs.autoquest</groupId>
|
---|
| 5 | <artifactId>autoquest</artifactId>
|
---|
| 6 | <version>0.1.1-SNAPSHOT</version>
|
---|
| 7 | <relativePath>../autoquest/pom.xml</relativePath>
|
---|
| 8 | </parent>
|
---|
| 9 | <modelVersion>4.0.0</modelVersion>
|
---|
| 10 | <artifactId>autoquest-plugin-uml</artifactId>
|
---|
| 11 | <name>autoquest-plugin-uml</name>
|
---|
| 12 | <licenses>
|
---|
| 13 | <license>
|
---|
| 14 | <name>The Apache Software License, Version 2.0</name>
|
---|
| 15 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
---|
| 16 | </license>
|
---|
| 17 | </licenses>
|
---|
| 18 | <scm>
|
---|
| 19 | <url>${autoquest-scm-trunk-dir}/${project.artifactId}</url>
|
---|
| 20 | <connection>scm:svn:${autoquest-scm-trunk-dir}/${project.artifactId}</connection>
|
---|
| 21 | </scm>
|
---|
| 22 | <dependencies>
|
---|
| 23 | <dependency>
|
---|
| 24 | <groupId>de.ugoe.cs</groupId>
|
---|
| 25 | <artifactId>java-utils</artifactId>
|
---|
| 26 | <version>0.1.1-SNAPSHOT</version>
|
---|
| 27 | </dependency>
|
---|
| 28 | <dependency>
|
---|
| 29 | <groupId>de.ugoe.cs.autoquest</groupId>
|
---|
| 30 | <artifactId>autoquest-plugin-core</artifactId>
|
---|
| 31 | <version>${project.parent.version}</version>
|
---|
| 32 | </dependency>
|
---|
| 33 | <dependency>
|
---|
| 34 | <groupId>commons-codec</groupId>
|
---|
| 35 | <artifactId>commons-codec</artifactId>
|
---|
| 36 | <version>1.6</version>
|
---|
| 37 | </dependency>
|
---|
| 38 | <dependency>
|
---|
| 39 | <groupId>de.ugoe.cs.autoquest</groupId>
|
---|
| 40 | <artifactId>autoquest-core-events</artifactId>
|
---|
| 41 | <version>${project.parent.version}</version>
|
---|
| 42 | </dependency>
|
---|
| 43 | <dependency>
|
---|
| 44 | <groupId>de.ugoe.cs.autoquest</groupId>
|
---|
| 45 | <artifactId>autoquest-core-usageprofiles</artifactId>
|
---|
| 46 | <version>${project.parent.version}</version>
|
---|
| 47 | </dependency>
|
---|
| 48 | <dependency>
|
---|
| 49 | <groupId>de.ugoe.cs.autoquest</groupId>
|
---|
| 50 | <artifactId>autoquest-misc</artifactId>
|
---|
| 51 | <version>${project.parent.version}</version>
|
---|
| 52 | </dependency>
|
---|
| 53 | <dependency>
|
---|
| 54 | <groupId>de.ugoe.cs.autoquest</groupId>
|
---|
| 55 | <artifactId>autoquest-plugin-http</artifactId>
|
---|
| 56 | <version>${project.parent.version}</version>
|
---|
| 57 | </dependency>
|
---|
| 58 |
|
---|
| 59 | <dependency>
|
---|
[1602] | 60 | <groupId>org.eclipse.emf</groupId>
|
---|
| 61 | <artifactId>org.eclipse.emf.common</artifactId>
|
---|
| 62 | <version>2.9.2</version>
|
---|
| 63 | </dependency>
|
---|
| 64 | <dependency>
|
---|
| 65 | <groupId>org.eclipse.emf</groupId>
|
---|
| 66 | <artifactId>org.eclipse.emf.ecore</artifactId>
|
---|
| 67 | <version>2.9.2</version>
|
---|
| 68 | </dependency>
|
---|
| 69 | <dependency>
|
---|
| 70 | <groupId>org.eclipse.emf</groupId>
|
---|
| 71 | <artifactId>org.eclipse.emf.ecore.xmi</artifactId>
|
---|
| 72 | <version>2.9.1</version>
|
---|
| 73 | </dependency>
|
---|
| 74 | <dependency>
|
---|
| 75 | <groupId>org.eclipse.emf</groupId>
|
---|
| 76 | <artifactId>org.eclipse.emf.mapping.ecore2xml</artifactId>
|
---|
| 77 | <version>2.7.0</version>
|
---|
| 78 | </dependency>
|
---|
| 79 |
|
---|
| 80 | <dependency>
|
---|
| 81 | <groupId>org.eclipse.uml2</groupId>
|
---|
| 82 | <artifactId>org.eclipse.uml2.common</artifactId>
|
---|
| 83 | <version>1.8.2</version>
|
---|
| 84 | </dependency>
|
---|
| 85 | <dependency>
|
---|
| 86 | <groupId>org.eclipse.uml2</groupId>
|
---|
| 87 | <artifactId>org.eclipse.uml2.types</artifactId>
|
---|
| 88 | <version>1.1.0</version>
|
---|
| 89 | </dependency>
|
---|
| 90 | <dependency>
|
---|
| 91 | <groupId>org.eclipse.uml2</groupId>
|
---|
| 92 | <artifactId>org.eclipse.uml2.uml</artifactId>
|
---|
| 93 | <version>4.1.2</version>
|
---|
| 94 | </dependency>
|
---|
| 95 | <dependency>
|
---|
| 96 | <groupId>org.eclipse.uml2</groupId>
|
---|
| 97 | <artifactId>org.eclipse.uml2.uml.profile.l2</artifactId>
|
---|
| 98 | <version>1.1.0</version>
|
---|
| 99 | </dependency>
|
---|
| 100 | <dependency>
|
---|
| 101 | <groupId>org.eclipse.uml2</groupId>
|
---|
| 102 | <artifactId>org.eclipse.uml2.uml.profile.l3</artifactId>
|
---|
| 103 | <version>1.1.0</version>
|
---|
| 104 | </dependency>
|
---|
| 105 | <dependency>
|
---|
| 106 | <groupId>org.eclipse.uml2</groupId>
|
---|
| 107 | <artifactId>org.eclipse.uml2.uml.resources</artifactId>
|
---|
| 108 | <version>4.1.0</version>
|
---|
| 109 | </dependency>
|
---|
[1759] | 110 |
|
---|
| 111 | <dependency>
|
---|
| 112 | <groupId>de.fraunhofer.fokus.testing</groupId>
|
---|
| 113 | <artifactId>de.fraunhofer.fokus.testing.modelutils</artifactId>
|
---|
| 114 | <version>1.0.1</version>
|
---|
| 115 | </dependency>
|
---|
| 116 | </dependencies>
|
---|
| 117 | <build>
|
---|
| 118 | <plugins>
|
---|
| 119 | <plugin>
|
---|
| 120 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 121 | <artifactId>maven-jar-plugin</artifactId>
|
---|
| 122 | <configuration>
|
---|
| 123 | <archive>
|
---|
| 124 | <manifest>
|
---|
| 125 | <addClasspath>true</addClasspath>
|
---|
| 126 | </manifest>
|
---|
| 127 | </archive>
|
---|
| 128 | </configuration>
|
---|
| 129 | </plugin>
|
---|
| 130 | </plugins>
|
---|
| 131 | </build>
|
---|
[1602] | 132 | </project> |
---|