Skip to main content
summaryrefslogtreecommitdiffstats
blob: 45293612220c8b1aec0d65a2fed441a11d8aad23 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.eclipse.objectteams</groupId>
  <artifactId>objectteams-otdre</artifactId>
  <version>2.6.2</version>
  <description>The Object Teams Dynamic Runtime Environment (OTDRE)</description>

  <licenses>
	<license>
		<name>Eclipse Public License Version 1.0</name>
		<comments>
			This file is part of "Object Teams Development Tooling"-Software

			Copyright 2016, 2018 GK Software AG and others.
			All rights reserved. This program and the accompanying materials
			are made available under the terms of the Eclipse Public License v1.0
			which accompanies this distribution, and is available at
			http://www.eclipse.org/legal/epl-v10.html

			Please visit http://www.eclipse.org/objectteams for updates and contact.

			Contributors:
				Olaf Otto - Initial concept
				Stephan Herrmann - Initial API and implementation
		</comments>
	</license>
  </licenses>

  <dependencies>
	<dependency>
		<groupId>org.ow2.asm</groupId>
		<artifactId>asm</artifactId>
		<version>6.0</version>
		<scope>provided</scope>
	</dependency>
	<dependency>
		<groupId>org.ow2.asm</groupId>
		<artifactId>asm-commons</artifactId>
		<version>6.0</version>
		<scope>provided</scope>
	</dependency>
	<dependency>
		<groupId>org.ow2.asm</groupId>
		<artifactId>asm-tree</artifactId>
		<version>6.0</version>
		<scope>provided</scope>
	</dependency>
  </dependencies>
</project>

Back to the top