Skip to main content
summaryrefslogtreecommitdiffstats
blob: 2c76fe85be71b1d94e635908da22bd7d16faba61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>

<plugin
   id="org.eclipse.compare.tests"
   name="%pluginName"
   provider-name="%providerName"
   version="3.0.0">

	<requires>
		<import plugin="org.junit"/>
		<import plugin="org.eclipse.compare"/>
	</requires>

	<runtime>
		<library name="comparetests.jar">
			<export name="*"/>
			<packages prefixes="org.eclipse.compare.tests"/>
		</library>
	</runtime>
  
</plugin>

Back to the top